要在Android項目中創(chuàng)建AnimationDrawable,可以按照以下步驟進行:
在res/drawable文件夾中創(chuàng)建一個xml文件,用于定義動畫幀序列。例如,創(chuàng)建一個名為animation.xml的文件。
在該xml文件中,定義一個
<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();
通過以上步驟,就可以在Android項目中創(chuàng)建并播放AnimationDrawable動畫了。