RotateAnimation 设置旋转中心点、不停顿

android:fromDegrees="0" // 设置动画开始时的角度 
android:toDegrees="+350" // 设置动画结束时的旋转角度 
android:pivotX="50%" // 设置动画相对于控件的 x 坐标的位置 
android:pivotY="50%" // 设置动画相对于控件的 y 坐标的位置 

代码设置

final RotateAnimation animation =new RotateAnimation(0f,359f,Animation.RELATIVE_TO_SELF, 0.5f,Animation.RELATIVE_TO_SELF,0.5f); 


要使RotateAnimation旋转过程中不停顿,可以尽量将toDegrees属性设置大一些,如:

android:fromDegrees="0" // 设置动画开始时的角度 
android:toDegrees="100000000" // 设置动画结束时的旋转角度 
android:pivotX="50%" // 设置动画相对于控件的 x 坐标的位置 
android:pivotY="50%" // 设置动画相对于控件的 y 坐标的位置 

代码设置

final RotateAnimation animation =new RotateAnimation(0f,100000000f,Animation.RELATIVE_TO_SELF, 0.5f,Animation.RELATIVE_TO_SELF,0.5f); 但此时的duration属性要控制好,最好加上:

animation.setInterpolator(new LinearInterpolator());



你可能感兴趣的:(RotateAnimation 设置旋转中心点、不停顿)