RotateAnimation类:旋转变化动画类,自定义控件通过rotateAnimation实现特效

转:http://blog.csdn.net/congqingbin/article/details/7889778
RotateAnimation类是Android系统中的旋转变化动画类,用于控制View对象的旋转动作,该类继承于Animation类。RotateAnimation类中的很多方法都与Animation类一致,该类中最常用的方法便是RotateAnimation构造方法。

【基本语法】public RotateAnimation (float fromDegrees, float toDegrees, int pivotXType, float pivotXValue, int pivotYType, float pivotYValue)

参数说明

fromDegrees:旋转的开始角度。

toDegrees:旋转的结束角度。

pivotXType:X轴的伸缩模式,可以取值为ABSOLUTE、RELATIVE_TO_SELF、RELATIVE_TO_PARENT。

pivotXValue:X坐标的伸缩值。

pivotYType:Y轴的伸缩模式,可以取值为ABSOLUTE、RELATIVE_TO_SELF、RELATIVE_TO_PARENT。

pivotYValue:Y坐标的伸缩值。

【实例演示】下面通过代码来演示如何设置一个简单的旋转变化动画效果。

public class firstActivity extends Activity {  
/** Called when the activity is first created. */  
@Override  
public void onCreate(Bundle savedInstanceState) {           //重载onCreate方法  
    super.onCreate(savedInstanceState);  
    setContentView(R.layout.main);  

    final ImageView image=(ImageView)findViewById(R.id.imageView1); //ImageView对象  
    Button btn1=(Button)findViewById(R.id.button1);         //按钮对象  
    Button btn2=(Button)findViewById(R.id.button2);  
    final Animation rotateAnimation = new       
     RotateAnimation(0f,360f,Animation.RELATIVE_TO_SELF,0.5f,Animation.RELATIVE_TO_SELF,0.5f);  
                                                        //设置旋转变化动画对象  
    btn1.setOnClickListener(new View.OnClickListener() {        //设置监听器  

        @Override  
        public void onClick(View v) {  
            // TODO Auto-generated method stub  
            rotateAnimation.setDuration(3000);              //持续时间  
            image.setAnimation(rotateAnimation);            //设置动画  
            rotateAnimation.startNow();                 //启动动画  
        }  
    });  
    btn2.setOnClickListener(new View.OnClickListener() {        //设置监听器  

        @Override  
        public void onClick(View v) {  
            // TODO Auto-generated method stub  
            rotateAnimation.cancel();                       //取消动画执行  
        }  
    });  
}  
}  

在这段代码中,首先通过RotateAnimation构造方法创建了一个旋转变化的动画对象。然后,在第一个按钮监听器中设置了动画的持续时间,之后启动该动画。在第二个按钮监听器中取消该动画

自定义控件特效旋转代码
http://download.csdn.net/detail/u012761617/9471699

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值