我有一个我正在旋转的ImageView用作加载动画。一旦我的数据被加载,我试图停止动画,但不是循环到最后然后停止,动画进入中途点,然后停止,然后图像快速恢复到其原始状态,这看起来很丑陋
这是我尝试过的:
选项1:
ImageView iv = (ImageView) findViewById(R.id.refreshImage);
if (iv != null) {
iv.clearAnimation();
}
选项2:
ImageView iv = (ImageView) findViewById(R.id.refreshImage);
if (iv != null && iv.getAnimation() != null) {
iv.getAnimation().cancel();
}
选项3:
ImageView iv = (ImageView) findViewById(R.id.refreshImage);
if (iv != null && iv.getAnimation() != null) {
iv.getAnimation().setAnimationListener(new AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
}
@Override
public void onAnimationRepeat(Animation animation) {
animation.cancel();
}
@Override
public void onAnimationEnd(Animation animation) {
}
});
}
最终结果在所有三种情况下都是相同的。如何旋转图像并将其放回原点?
编辑:
更多信息:我的旋转动画:
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="1000"
android:fromDegrees="0"
android:interpolator="@android:anim/linear_interpolator"
android:pivotX="50%"
android:pivotY="50%"
android:toDegrees="360" />
我如何开始动画:
ImageView iv = (ImageView) findViewById(R.id.refreshImage);
Animation rotation = AnimationUtils.loadAnimation(this, R.anim.rotate);
rotation.setRepeatCount(Animation.INFINITE);
iv.startAnimation(rotation);
答案 0 :(得分:14)
在启动之前将动画repeatcount设置为无限,然后当动作结束时,将动画的repeatcount设置为0.动画将完成当前循环和没有您想要避免的跳转的停止。
//How you start
Animation rotation = AnimationUtils.loadAnimation(this, R.anim.rotate);
rotation.setRepeatCount(Animation.INFINITE);
iv.startAnimation(rotation);
//You do your stuff while it spins
...
//You tell it not to repeat again
rotation.setRepeatCount(0);
首先将其设置为Animation.INFINITE
(或-1,因为它们执行相同操作)然后转到0
,如果您将其设置为1000
,那么这一点非常重要,那么根据我的测试不会因某种原因停止。
答案 1 :(得分:0)
答案 2 :(得分:-2)
iv.clearAnimation();停止动画