一、Frame Animation
帧动画是顺序播放一组预先定义好的额图片,类似于电影播放,系统提供了一个类AnimationDrawable来使用帧动画。
二、Frame Animation实现方式
1、xml实现方式
(1)定义动画
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="true">
<item android:drawable="@drawable/img1" android:duration="100" />
<item android:drawable="@drawable/img2" android:duration="100" />
<item android:drawable="@drawable/img3" android:duration="100" />
</animation-list>
- 定义的帧动画文件在res/drawable下
- xml文件根布局 animation-list
- oneshot属性标识播放次数,true制播放一次,false循环播放
(2)使用
ImageView imageView = new ImageView(this);
imageView.setImageResource(R.drawable.animation);
AnimationDrawable drawable = (AnimationDrawable) imageView.getDrawable();
drawable.setOneShot(true); //设置只运行一次
drawable.start(); //开始动画
(3)其他方法
drawable.isRunning(); //判断是否运行
drawable.stop(); //结束动画
2、 AnimationDrawable类实现
AnimationDrawable animation = new AnimationDrawable();
animation.addFrame(getResources().getDrawable(R.drawable.img1));
animation.addFrame(getResources().getDrawable(R.drawable.img2));
animation.addFrame(getResources().getDrawable(R.drawable.img3));
animation.setOneShot(false);
ImageView imageView = new ImageView(this);
imageView.setImageDrawable(animation);
animation.start();