在Android中使用帧动画可以通过创建一个AnimationDrawable
对象来实现。下面是一个简单的示例:
res/drawable
目录下创建一个XML文件,用于定义动画的每一帧。例如,创建一个名为animation_list.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" />
<!-- Add more frames here -->
</animation-list>
ImageView imageView = findViewById(R.id.imageView);
AnimationDrawable animationDrawable = (AnimationDrawable) ContextCompat.getDrawable(this, R.drawable.animation_list);
imageView.setImageDrawable(animationDrawable);
animationDrawable.start();
start()
、stop()
和setOneShot(false)
等方法。这样就可以在Android应用中使用帧动画了。希望对你有帮助!