画像を動的に回転させたい (XML コードではありません)。このコードを使用して画像を回転させています:
public void rotateAnimation(){
// Create an animation instance
Animation an = new RotateAnimation(30, 360);
// Set the animation's parameters
an.setDuration(2000); // duration in ms
an.setRepeatCount(0); // -1 = infinite repeated
an.setRepeatMode(Animation.REVERSE); // reverses each repeat
an.setFillAfter(true); // keep rotation after animation
// Aply animation to image view
scanCircle.setAnimation(an);
}
このコードを使用すると、My ImageView は回転しますが、その位置ではなく、その位置の外側になります。独自の位置で回転させたいです。
それで、それを可能にする方法は?