在Android中,可以使用AnimationDrawable类来实现循环播放动画。AnimationDrawable是一个Drawable的子类,可以用来定义一系列的帧动画,然后将其设置给一个ImageView来播放。
以下是实现循环播放动画的步骤:
<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>
// 加载帧动画
AnimationDrawable animation = (AnimationDrawable) getResources().getDrawable(R.drawable.anim);
// 设置循环播放
animation.setOneShot(false);
// 将动画设置给ImageView
imageView.setImageDrawable(animation);
// 开始播放动画
animation.start();
通过上述步骤,就可以在Android应用中实现循环播放动画。