我有旋转动画的问题。我希望我的图像在我想要的位置停止。我可以在我想要的位置停止它,但它又回到了起始位置。
例如,它从 0 度开始,我想在 270 度停止。没关系,但半秒后又回到 0 度。我希望它修复
RotateAnimation r = new RotateAnimation(0.0f, 990.0f,0,bottle.getWidth()/2,0,bottle.getHeight()/2);
r.setDuration((long) 2*500);
r.setRepeatCount(0);
bottle.startAnimation(r);