在ImageView中延迟android的动画

时间:2014-08-18 09:36:45

标签: android animation

我正在尝试在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);

1 个答案:

答案 0 :(得分:2)

查看setRepeatCount个参数和setStartOffset方法。第一个允许你限制重复动画,第二个 - 引入时间延迟。