码迷,mamicode.com
首页 > 移动开发 > 详细

Android帧动画

时间:2016-11-03 15:59:37      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:span   source   back   blog   1.0   void   list   height   draw   

通过播放一张一张图片来实现一段动画

首先配置anim.xml:

1 <?xml version="1.0" encoding="utf-8"?>
2 <animation-list xmlns:android="http://schemas.android.com/apk/res/android">
3 
4     <item android:drawable="@drawable/a" android:duration="200"/>
5     <item android:drawable="@drawable/b" android:duration="200"/>
6     <item android:drawable="@drawable/c" android:duration="200"/>
7     <item android:drawable="@drawable/d" android:duration="200"/>
8     <item android:drawable="@drawable/e" android:duration="200"/>
9 </animation-list>

 

然后用一个ImageView显示

1 <ImageView
2         android:id="@+id/iv"
3         android:layout_centerInParent="true"
4         android:onClick="click3"
5         android:clickable="true"
6         android:layout_width="200dp"
7         android:layout_height="200dp" />

再。。。。

1 public void click3(View v){
2         ImageView iv = (ImageView)findViewById(R.id.iv);
3         iv.setBackgroundResource(R.drawable.anim);
4         AnimationDrawable ad = (AnimationDrawable)iv.getBackground();
5         ad.start();
6     }

 

就是这么简单。。。。

 

Android帧动画

标签:span   source   back   blog   1.0   void   list   height   draw   

原文地址:http://www.cnblogs.com/Coderwei2016/p/6026855.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!