如何暂停和恢复动画?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何暂停和恢复动画?相关的知识,希望对你有一定的参考价值。
我有一个圆形的Imageview,我可以通过点击按钮开始旋转它,但是当它停在该位置时我想再次按下按钮。我怎样才能做到这一点?
这是Animation
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator">
<rotate
android:fromDegrees="0"
android:pivotX="50%"
android:pivotY="50%"
android:toDegrees="360"
android:duration="10000"
android:repeatCount="infinite"
android:repeatMode="restart" />
</set>
这是MainActivity
Animation cd1;
ImageView imageview;
Button button1;
cd1 = AnimationUtils.loadAnimation(this, R.anim.cd_player1);
button1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
imageview.startAnimation(cd1);
}
}
});
谢谢 !
答案
试试这个,
private ObjectAnimator anim;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.property_animations_flow);
ImageView someImage = (ImageView) findViewById(R.id.some_image);
anim = ObjectAnimator.ofFloat(someImage, "rotation", 0, 360);
anim.setDuration(1000);
anim.setRepeatCount(5);
anim.setRepeatMode(ObjectAnimator.RESTART);
}
}
取决于您想要在onclick中调用的内容
anim.start() // start the animation from the beginning
anim.end() // end the animation
anim.cancel() // cancel the animation
anim.pause() // added in API 19; pause the animation
anim.resume() // added in API 19; resume a paused animation
以上是关于如何暂停和恢复动画?的主要内容,如果未能解决你的问题,请参考以下文章
在 Activity 内部,如何暂停 for 循环以调用片段,然后在按钮单击片段后恢复循环以重新开始
如何暂停和恢复 UIView.animateWithDuration