我想动态旋转图像(不是通过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);
}
使用此代码,我的ImageView会旋转但不在其位置上,而是在其位置之外。我想要的是将它旋转到自己的位置。
那么,如何实现呢?
答案 0 :(得分:3)
我认为位置pivotx& pivotY将有用http://developer.android.com/reference/android/view/animation/RotateAnimation.html#RotateAnimation%28float,%20float,%20float,%20float%29
RotateAnimation(float fromDegrees, float toDegrees, float pivotX, float pivotY)
假设您想从中间旋转
RotateAnimation(30, 360, totalWidth/2, totalHeight/2)