首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Android动画片之图片动画(四)

2012-09-22 
Android动画之图片动画(四)现在使ImageView中的图片可以动起来1.在drawable-mdpi文件夹下加入图片,并加入

Android动画之图片动画(四)

现在使ImageView中的图片可以动起来

1.在drawable-mdpi文件夹下加入图片,并加入一个xml文件,文件如下

<?xml version="1.0" encoding="utf-8"?><animation-list xmlns:android="http://schemas.android.com/apk/res/android" >  <item android:drawable="@drawable/a" android:duration="500"/>   <item android:drawable="@drawable/b" android:duration="500"/>   <item android:drawable="@drawable/c" android:duration="500"/>   <item android:drawable="@drawable/d" android:duration="500"/> </animation-list>


2.代码如下

iv.setBackgroundResource(R.drawable.anim);AnimationDrawable an=(AnimationDrawable)iv.getBackground();an.start();


其实可以用一个线程加Handler来实现动画的,在线程中隔一定时间发送消息,更改ImageView的图片。

热点排行