安卓逐帧动画创建(Frame Aniamtion)

                                              Frame   Animaton

帧动画

我们看早期电影的时候,电影通常是一张一张播放,用我们现在专有名词来说,就是一帧帧来,安卓同样有这样动画效果的编排形式。

那么我们先定义逐帧动画xml文件

<?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/pic1"
        android:duration="200" />
    <item
        android:drawable="@drawable/pic2"
        android:duration="200" />
    <item
        android:drawable="@drawable/pic3"
        android:duration="200" />
    <item
        android:drawable="@drawable/pic4"
        android:duration="200" />
    <item
        android:drawable="@drawable/pic5"
        android:duration="200" />
    <item
        android:drawable="@drawable/pic6"
        android:duration="200" />
    <item
        android:drawable="@drawable/pic7"
        android:duration="200" />
     <item
        android:drawable="@drawable/pic8"
        android:duration="200" />
     <item
        android:drawable="@drawable/pic8"
        android:duration="200" />
     


</animation-list>

main.xml

<ImageView
        android:id="@+id/pic"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="98dp"
        android:layout_marginTop="69dp"
         />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_marginBottom="54dp"
        android:layout_marginLeft="98dp"
        android:onClick="startMovie"
        android:text="开始播放电影" />

 

Activiy代码:

public class MyAnimationDemo extends Activity {

	private AnimationDrawable draw=null;
	private ImageView image;
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_my_animation_demo);
		image=(ImageView)super.findViewById(R.id.pic);
	}

	public void startMovie(View v){
		image.setBackgroundResource(R.anim.oldvideo);//第一步,设置图片资源
		draw=(AnimationDrawable)image.getBackground();//取得图片背景的Drawable
		draw.setOneShot(false);//动画执行次数
		draw.start();//开始动画
		
	}

}

 

这里我们看到,

第一步,设置图片背景资源

第二步,设置得到图片背景的draw

第三步,设置draw参数,并start()

实现效果如下,间隔0.2秒即换图,实现老电影动画效果



 

 

 

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值