关于RotateAnimation的各构造方法的参数

本文以RotateAnimation的构造方法 讲解。

RotateAnimation(float fromDegrees, float toDegrees)

其他构造器的旋转也可参考这副图。

RotateAnimation旋转坐标系为以旋转点为坐标系(0,0)点。x轴为0度,顺时针方向旋转一定的角度。
       

1.RotateAnimation(fromDegrees, toDegrees) [默认以View左上角顶点为旋转点]。
        X轴顺时针转动到fromDegrees为旋转的起始点,
        X轴顺时针转动到toDegrees为旋转的起始点。
        如fromDegrees=0,toDegrees=90;为左上角顶点为旋转点。0度为起始点,90度为终点。进行旋转,旋转了90度
        如fromDegrees=60,toDegrees=90;为左上角顶点为旋转点。60度为起始点,90度为终点。进行旋转,旋转了90-60=30度
        
   

2.RotateAnimation(float fromDegrees, float toDegrees, float pivotX, float pivotY)
        (pivotX,pivotY)为旋转点。pivotX为距离左侧的偏移量,pivotY为距离顶部的偏移量。即为相对于View左上角(0,0)的坐标点。
        如View width=100px,height=100px
        RotateAnimation(0,10,100,100);则以右下角顶点为旋转点,从原始位置顺时针旋转10度
        RotateAnimation(0,90,50,50);则以View的中心点为旋转点,旋转90度
        
       

3.RotateAnimation(fromDegrees, toDegrees, pivotXType, pivotXValue, pivotYType, pivotYValue)
        pivotXType, pivotXValue, pivotYType, pivotYValue  旋转点类型及其值。
        Animation.ABSOLUTE开头的为绝对值,其他为百分比。
        如RotateAnimation(0, 90, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f); 按中心点旋转90度
        效果和2例中的RotateAnimation(0,90,50,50);则以View的中心点为旋转点,旋转90度 。效果一样。

 

转载于:https://www.cnblogs.com/sjjg/p/5245880.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值