Android第五天

  • 简单了解Button,并为之简单配置一些自定义属性(形状,不同状态下的颜色)
  • 关键帧动画
  • 补间动画
    一.Button的使用
    1.在xml中添加一个Button
    宽高为包裹内容,内容为登录,字体颜色为红色,字体大小为25sp。
 <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="登录"
        android:textColor="@color/colorAccent"
        android:textSize="25sp"/>

2.给这个Button添加一个点击事件
最简单的一种
在xml中直接添加onClick属性,并设置名称为login

 <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="登录"
        android:textColor="@color/colorAccent"
        android:textSize="25sp"
        android:onClick="login"/>

在对应MainActivity添加对应login方法
public void login(View view) {
System.out.println("点击了");
}
按钮的点击事件 通常接收一个参数:View
当按钮被点击,系统接收这个事件并把这个事件回调给监听者
把当前被点击的按钮作为参数传递过去,使用的时候 必须转化为对应的类型
第二种方式,通过代码实现
先给该Button添加一个ID,在MainActivity找到对应的ID来找到这个Button。

android:id="@+id/bt_login"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:text="Edit"
       android:textColor="#ff0000"
       android:textSize="25sp"
 protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

       Button  btn = findViewById(R.id.bt_login);

给按钮添加点击事件
btn.setOnClickListener(this);
该MainActivity来监听,传参数this,并在MainActivity中实现OnClickListener这个接口。

 public void onClick(View view)
    {
        System.out.println("点击了");
    }

精简一下代码,不用参数this,直接创建匿名对象

        btn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                System.out.println("点击了");
            }
        });

或者用Lamda表达式
btn.setOnClickListener(view -> System.out.println("点击了"));

二.配置自定义属性,形状,颜色等
1.配置颜色
当我们在xml中添加了一个Button,不按时字体默认为黑色,当按下时显示另一种颜色。
首先在左边选中drawable,单击右键新建一个Drawable resource file,名称为text_color。
创建好后在其中的selector中添加一个item,选择state_pressed选项,设置颜色为红色

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!--    按下状态的颜色 pressed-->
    <item android:color="#ff0000"
        android:state_pressed="true"/>
</selector>

默认状态下为黑色

<selector xmlns:android="http://schemas.android.com/apk/res/android">

<!--    按下状态的颜色 pressed-->
    <item android:color="#ff0000"
        android:state_pressed="true"/>
<!--   默认状态-->
<item android:color="#000000" />
</selector>

配置是有先后顺序的
默认的状态必须放在后面
如果放在前面,优先匹配
一旦匹配上了 后面的设置就无效

还可以设置其无法点击状态时的颜色

 <selector xmlns:android="http://schemas.android.com/apk/res/android">
<!--    按下状态的颜色 pressed-->
    <item android:color="#ff0000"
        android:state_pressed="true"/>

<!--    无效 无法点击的颜色  enable-->
    <item android:color="#00ff00"
        android:state_enabled="false"/>
<!--   默认状态-->
<item android:color="#000000" />
</selector>

在xml中使用
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="分享"
android:textColor="@drawable/text_color"
/>
配置控件的颜色用android:color
也可以设置为一张图片,把这张图片放在drawable中,用android:drawable配置
2.配置控件的形状
同样的,在左边选中drawable,单击右键新建一个Drawable resource file,名称为rectangle。
创建完毕,将selector改为shape,shape中有四个选项:
oval(椭圆形),rectangle(长方形),line(线型),ring(环形)
选择rectangle,其中有一些属性:
corners: 圆角的大小
solid: 填充颜色
stoke: 边框颜色 宽度
gradient: 渐变色 UI-拟物化
padding: 内间距
现在将长方形的边框颜色设为红色,宽度设为1dp

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
   <stroke android:color="@color/colorAccent"
       android:width="1dp"
       />
</shape>

在xml中使用

 <Button
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="@drawable/rectangle"
        />

还可以用rectangle中的corners属性改变圆角,使得长方形变成一个圆

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
   <stroke android:color="@color/colorAccent"
       android:width="1dp"
       />
    <corners android:radius="50dp"/>
</shape>

这样在使用的时候就是一个圆形了
shape和selector嵌套

<selector xmlns:android="http://schemas.android.com/apk/res/android">

<!--    无效状态  深灰色  矩形-->
    <item android:state_enabled="false">
        <shape android:shape="rectangle">
            <solid android:color="#2E3031"/>
        </shape>
    </item>

<!--    默认状态 蓝色 圆角 矩形-->
    <item>
        <shape android:shape="rectangle">
            <corners android:radius="10dp"/>
            <solid android:color="#3889ED"/>
        </shape>
    </item>

</selector>

一个item对应一个状态

三.实现火焰燃烧的一个关键帧动画
关键帧动画 FrameAnimation
使用多张图片快速切换 形成一种动画
1.xml实现
首先将实现动画的图片资源拷到drawable下,然后选中drawable,单击右键新建一个Drawable resource file,名称为fire_anim。
创建好后,将selector改为animation-list,其中
一个item对应一帧:一张图片
drawable:配置动画的图片
duration:配置这张图片在整个动画中播放的时间 单位毫秒

<animation-list xmlns:andrid="http://schemas.android.com/apk/res/android"
    andrid:oneshot="false">
    <item andrid:drawable="@drawable/campfire01"
        andrid:duration="200"/>
    <item andrid:drawable="@drawable/campfire02"
        andrid:duration="200"/>
    <item andrid:drawable="@drawable/campfire03"
        andrid:duration="200"/>
    <item andrid:drawable="@drawable/campfire04"
        andrid:duration="200"/>
    <item andrid:drawable="@drawable/campfire05"
        andrid:duration="200"/>
    <item andrid:drawable="@drawable/campfire06"
        andrid:duration="200"/>
    <item andrid:drawable="@drawable/campfire07"
        andrid:duration="200"/>
    <item andrid:drawable="@drawable/campfire08"
        andrid:duration="200"/>
    <item andrid:drawable="@drawable/campfire09"
        andrid:duration="200"/>
    <item andrid:drawable="@drawable/campfire11"
        andrid:duration="200"/>
    <item andrid:drawable="@drawable/campfire12"
        andrid:duration="200"/>
    <item andrid:drawable="@drawable/campfire13"
        andrid:duration="200"/>
    <item andrid:drawable="@drawable/campfire14"
        andrid:duration="200"/>
    <item andrid:drawable="@drawable/campfire15"
        andrid:duration="200"/>
    <item andrid:drawable="@drawable/campfire16"
        andrid:duration="200"/>
    <item andrid:drawable="@drawable/campfire17"
        andrid:duration="200"/>
</animation-list>

animation-list下oneshot属性:是否只执行一遍,设为false将一直循环执行。
在xml中添加ImageView

 <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/fire_anim"/>

这样它只会显示第一张图片,却不会播放动画。用点击操作它播放动画。
为这个控件加一个ID

 <ImageView
        android:id="@+id/iv_anim"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/fire_anim"/>

在MainActivity中添加OnTouchEvent事件

  public boolean onTouchEvent(MotionEvent event) {
        if (event.getAction() == MotionEvent.ACTION_DOWN) {
        
        }
        return true;
    }

开启动画

  public boolean onTouchEvent(MotionEvent event) {
        if (event.getAction() == MotionEvent.ACTION_DOWN) {
             // 1.获取动画的控件
            ImageView iv = findViewById(R.id.iv_anim);

            // 2.通过控件获取动画
            AnimationDrawable anim =(AnimationDrawable) iv.getDrawable();

            // 3.启动动画
            anim.start();
        }
        return true;
    }

2.代码实现
在xml显示第一张图片

 <ImageView
        android:id="@+id/iv_anim"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/campfire01"/>

在MainActivity中创建一个整型数组来保存图片资源

  int[] resID = {R.drawable.campfire01,R.drawable.campfire02,R.drawable.campfire03,R.drawable.campfire04,
                R.drawable.campfire05,R.drawable.campfire06,R.drawable.campfire07,R.drawable.campfire08,R.drawable.campfire09,
                R.drawable.campfire10,R.drawable.campfire11,R.drawable.campfire12,R.drawable.campfire13,R.drawable.campfire14,
                R.drawable.campfire15,R.drawable.campfire16,R.drawable.campfire17};

启动动画

  // 1.创建一个动画资源
        AnimationDrawable anima = new AnimationDrawable();

        for(int id:resID){
        // 2.添加每一帧的动画
        anima.addFrame(getResources().getDrawable(id),100);
        }

        // 3.使用这个资源
        ImageView iv = findViewById(R.id.anima);
        iv.setImageDrawable(anima);

        // 4.启动动画
        anima.start();

四.补间动画
关键帧动画:配置了动画的每一帧
res-drawable-xxx.xml
补间动画:只关心开始和结束两个状态 中间的动画由系统自动补全
res -> anim -> xxx.xml

首先在左边选择res(在project目录下),单机右键新建一个Directory,名称为anim(固定的)。然后选中anim,新建一个Animation resource file,名称为translate。
创建好后,在set下有几个选项:
平移:translate
缩放:scale
旋转:rotate
透明:alpha
选择translate

<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="1000"
    android:fillAfter="true">
    <translate android:fromXDelta="0"
        android:toXDelta="300" />
</set>

其中duration设置动画时间为1秒,
fillAfter设置保持动画之后的状态

xml中创建一个控件来实现该动画

 <View
        android:id="@+id/v_anim"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:background="@color/colorAccent"/>

点一下屏幕让动画开始
在MainActivity中添加OnTouchEvent事件

public boolean onTouchEvent(MotionEvent event) {
        if (event.getAction() == MotionEvent.ACTION_DOWN)
        {
            // 1.找到动画的控件
            View v = findViewById(R.id.v_anim);

            // 2.加载xml动画文件 ->得到动画
            Animation translate = AnimationUtils.loadAnimation(this,R.anim.translate);

            translate.setInterpolator(new BounceInterpolator())
            // 3.将这个动画作用到这个控件上去
            v.startAnimation(translate);

        }
        return true;
    }

用 translate.setInterpolator(new BounceInterpolator());语句为动画设置了一个回弹效果。

用代码创建一个动画

 public boolean onTouchEvent(MotionEvent event) {
        if (event.getAction() == MotionEvent.ACTION_DOWN)
        {
            // 1.找到动画的控件
            View v = findViewById(R.id.v_anim);

            // 2.创建动画
            /*
            TranslateAnimation
            AlphaAnimation
            ScaleAnimation
            RotateAnimation
             */
            AlphaAnimation alphaAnimation = new AlphaAnimation(0,1);
            alphaAnimation.setDuration(1000);
            alphaAnimation.setFillAfter(true);

            RotateAnimation rotateAnimation = new RotateAnimation(0,360,(float)(0.5*v.getWidth()),(float)(0.5*v.getHeight()));
        

            // 3.将这个动画作用到这个控件上去
              v.startAnimation(alphaAnimation);

          
        }
        return true;
    }

注意:补间动画只是一个效果,没有真正改变属性的值。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,684评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,143评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,214评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,788评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,796评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,665评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,027评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,679评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,346评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,664评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,766评论 1 331
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,412评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,015评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,974评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,073评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,501评论 2 343

推荐阅读更多精彩内容