帧动画---Frame Animation

一、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();

直通车之------Tween Animation

直通车之------Property Animation

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值