旋转动画——RotateAnimation的讲解

本来想上网找一个讲RotateAnimation的博文,发现质量都良莠不齐,而且排版非常烂,只能自己写一篇了……


RotateAnimation类:


一、文档介绍:

public class RotateAnimation
    
    
    
    
extends Animation

An animation that controls the rotation of an object. This rotation takes place int the X-Y plane. You can specify the point to use for the center of the rotation, where (0,0) is the top left point. If not specified, (0,0) is the default rotation point.

【请允许我蹩脚的翻译一下:RotateAnimation是能够让一个对象旋转的Animation子类。这里所说的旋转只在X,Y轴构成的平面上进行。你可以选择一个点作为旋转的圆心点,如果没有对旋转中心点进行设置的话,默认为(0,0)】


二、构造方法:

RotateAnimation(Context context, AttributeSet attrs) 
RotateAnimation(float fromDegrees, float toDegrees) 
RotateAnimation(float fromDegrees, float toDegrees, float pivotX, float pivotY) 
RotateAnimation(float fromDegrees, float toDegrees, int pivotXType, float pivotXValue, int pivotYType, float pivotYValue) 
我讲一下这里的关键参数:

fromDegrees和toDegrees:这两个分别是旋转的起始角度和结束角度。我下面会放一张图帮助大家理解。

pivotX和pivotY:是旋转的中心点的X,Y坐标

pivotXType和pivotYType:X,Y轴的伸缩模式,定义了pivotXValue和pivotYValue怎么被使用

pivotXValue和pivotYValue:在X,Y方向的位置,但是会受pivotXType和pivotYType的影响。


RotateAnimation角度的变化是从X轴正方向开始,顺时针方向旋转。

旋转动画——RotateAnimation的讲解_第1张图片


你可能感兴趣的:(旋转动画——RotateAnimation的讲解)