如何在Android中旋转图像?

时间:2011-03-22 06:44:12

标签: android animation

如何在Android上旋转图像?我将使用图像序列动画。但我不知道java代码。

1 个答案:

答案 0 :(得分:0)

试试这个:

RotateAnimation anim = new RotateAnimation(0, 360,0,0);
anim.setRepeatCount(0);
anim.setDuration(3000);
anim.setFillAfter(true);  
ImageView.startAnimation(anim);
相关问题