我正在尝试在Android中实现延迟动画,但在我的情况下,imageview无限旋转,因为我不知道如何动态停止和启动它。
final RotateAnimation anim = new RotateAnimation(0f, 350f, 15f, 15f);
anim.setInterpolator(new LinearInterpolator());
anim.setRepeatCount(Animation.INFINITE);
anim.setDuration(700);
imageView.startAnimation(anim);