我是android新手。我想旋轉圖像,我希望它停止隨機位置旋轉。我有以下代碼。圖像無限旋轉。我有問題要在隨機位置停下來。Android圖像旋轉:以隨機位置結束
RotateAnimation anim = new RotateAnimation(0f,360f,55f,55f);
anim.setInterpolator(new LinearInterpolator());
anim.setRepeatCount(Animation.INFINITE);
anim.setDuration(80);
// Start animating the image
iv.startAnimation(anim);
你想什麼時候停止呢?按下某些東西? – Aniruddha
它從onClick開始,但我需要在一段時間後停止它,而不需要按下任何東西。 – wj07
然後改變你的'repeatCount' – Aniruddha