如何顺时针旋转imageview 10degree,
然后将imageview动画停止(在10degree)向后旋转(aniclockwise)到0度重复?
我只知道如何旋转到10度,但我不知道如何回到0度。
非常感谢。
imageview 0度→10度→0度(重复)
RotateAnimation anim = new RotateAnimation(x, y, 10f, 10f);
anim.setInterpolator(new LinearInterpolator());
anim.setRepeatCount(Animation.INFINITE);
anim.setDuration(700);
imageView.startAnimation(anim);
答案 0 :(得分:4)
您必须设置动画的重复模式。
anim.setRepeatMode(Animation.REVERSE);