我有一个AnimationDrawable,显示数字0-9。
当Activity启动时,动画也会启动。
从0开始,然后是1,2,3 .......并停在图片“9”处;
当f.e.我怎么能停止这个小动画显示“5”?
有没有带有while循环的解决方案?
ImageView view = (ImageView)findViewById(R.id.iv);
AnimationDrawable animation = (AnimationDrawable)iv.getBackground();
animation.start();
答案 0 :(得分:0)
您可以尝试以下方式执行此操作:
final ImageView imageView = (ImageView)findViewById(R.id.image);
if (null != imageView) {
final AnimationDrawable bgAnimation = (AnimationDrawable) imageView.getBackground();
bgAnimation.start();
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
bgAnimation.stop();
}
}, 5500);
}
假设你有像下面这样的动画xml:
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false" >
<item
android:drawable="@drawable/choose12"
android:duration="1000"/>
<item
android:drawable="@drawable/choose12_1"
android:duration="1000"/>
<item
android:drawable="@drawable/choose12_2"
android:duration="1000"/>
<item
android:drawable="@drawable/choose12_3"
android:duration="1000"/>
<item
android:drawable="@drawable/choose12_4"
android:duration="1000"/>
<item
android:drawable="@drawable/choose12_5"
android:duration="1000"/>
<item
android:drawable="@drawable/choose12_6"
android:duration="1000"/>
<item
android:drawable="@drawable/choose12_7"
android:duration="1000"/>
<item
android:drawable="@drawable/choose12_8"
android:duration="1000"/>
<item
android:drawable="@drawable/choose12_9"
android:duration="1000"/>
</animation-list>
然而,这种方式在小延迟时效果不稳定。所以,如果您需要更好地控制动画过程,我建议您查看PropertyAnimation。