要在Android中使用AnimationDrawable,首先需要在res/drawable文件夾中創建一個animation-list資源文件,用于定義動畫幀。然后在activity中使用AnimationDrawable類來加載和控制動畫。
以下是一個簡單的示例代碼:
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item android:drawable="@drawable/frame1" android:duration="100" />
<item android:drawable="@drawable/frame2" android:duration="100" />
<item android:drawable="@drawable/frame3" android:duration="100" />
<!-- 添加更多的幀 -->
</animation-list>
ImageView imageView = findViewById(R.id.imageView);
AnimationDrawable animationDrawable = (AnimationDrawable) getResources().getDrawable(R.drawable.animation);
imageView.setBackground(animationDrawable);
// 開始動畫
animationDrawable.start();
// 停止動畫
animationDrawable.stop();
// 判斷動畫是否在運行中
boolean isRunning = animationDrawable.isRunning();
這樣就可以在Android應用中使用AnimationDrawable來實現幀動畫效果。