我在一個項目中使用簡單的動畫...這是你的第一個點...的順序* .png格式在/ RES /可繪製文件,* .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/s250" android:duration="200" />
<item android:drawable="@drawable/s251" android:duration="200" />
<item android:drawable="@drawable/s252" android:duration="200" />
<item android:drawable="@drawable/s253" android:duration="200" />
<item android:drawable="@drawable/s254" android:duration="200" />
<item android:drawable="@drawable/s255" android:duration="200" />
<item android:drawable="@drawable/s256" android:duration="200" />
<item android:drawable="@drawable/s257" android:duration="200" />
<item android:drawable="@drawable/s258" android:duration="200" />
</animation-list>
..以及源...
final ImageView pygalo = (ImageView) findViewById(R.id.imageanimation);
pygalo.setBackgroundResource(R.anim.animation);
final AnimationDrawable pygaloanimation = (AnimationDrawable) pygalo.getBackground();
pygalo.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View vp) {
pygaloanimation.stop();
pygaloanimation.start();
}
});
這是很容易做到的...