android动画之一Tween动画

==========================代码实现=======================================

Android Tweened Animation一共有四种

Alpha: 淡入淡出效果

Scale: 缩放效果

Rotate: 旋转效果

Translate:移动效果

使用Tweened Animations的步骤

1.创建一个AnimationSet对象

2.根据需要创建需要的Animation对象

3.根据软件动画的需要,为Animation对象设置相应的数据

4.将Animation对象添加到AnimationSet对象中

5.使控件对象开始执行AnimationSet

Alpha动画

[java]  view plain copy
  1.         AnimationSet as=new AnimationSet(true);  
  2. AlphaAnimation al=new AlphaAnimation(1,0);  
  3. //1代表完全不透明,0代表完全透明  
  4. al.setDuration(3000);  
  5. as.addAnimation(al);  
  6. iv.startAnimation(as);  

Rotate动画

[java]  view plain copy
  1.                 AnimationSet as=new AnimationSet(true);  
  2. RotateAnimation al=new RotateAnimation (0,720,Animation.RELATIVE_TO_PARENT,0.5f,Animation.RELATIVE_TO_PARENT,0.5f);  
  3. //前两个参数参数旋转的角度,后面几个参数决定旋转的中心  
  4. //Animation.ABSOLUTE:绝对坐标  
  5. //Animation.RELATIVE_TO_PARENT:相对父控件  
  6. //Animation.RELATIVE_TO_SELF:相对自己  
  7. al.setDuration(3000);  
  8. as.addAnimation(al);  
  9. iv.startAnimation(as);  

Scale动画

[java]  view plain copy
  1. AnimationSet as=new AnimationSet(true);  
  2.             ScaleAnimation al=new ScaleAnimation(0,1,0,1,Animation.RELATIVE_TO_SELF,0.5f,Animation.RELATIVE_TO_SELF,0.5f);  
  3.             //前四个参数是X从多大到多大,Y从多大到多大,后面的参数是缩放的中心点  
  4.             al.setDuration(3000);  
  5.             as.addAnimation(al);  
  6.             iv.startAnimation(as);  


Translate动画

[java]  view plain copy
  1. AnimationSet as=new AnimationSet(true);  
  2.             TranslateAnimation al=new TranslateAnimation(Animation.RELATIVE_TO_SELF,0,Animation.RELATIVE_TO_SELF,2,Animation.RELATIVE_TO_SELF,0,Animation.RELATIVE_TO_SELF,2);  
  3.             al.setDuration(3000);  
  4.             as.addAnimation(al);  
  5.             iv.startAnimation(as);  


Animation还有几个方法

setFillAfter(boolean fillAfter)

如果fillAfter的值为真的话,动画结束后,控件停留在执行后的状态

setFillBefore(boolean fillBefore)

如果fillBefore的值为真的话,动画结束后,控件停留在动画开始的状态

setStartOffset(long startOffset)

设置动画控件执行动画之前等待的时间

setRepeatCount(int repeatCount)

设置动画重复执行的次数

=============================xml文件实现========================================

Animation也可以放在XML文件中,这样程序的可维护性提高了。在XML中写动画的步骤如下

1.在res文件夹下面新建一个名为anim的文件夹

2.创建xml文件,并首先加入set标签,改标签如下

<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:interpolator="@android:anim/accelerate_interpolator">
  
</set>

3.在该标签当中加入rotate,alpha,scale或者translate标签

4.在代码当中使用AnimationUtils加载xml文件,并生成Animation对象

Alpha动画

[java]  view plain copy
  1. <span style="font-size:18px;"><?xml version="1.0" encoding="utf-8"?>  
  2. <set xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:interpolator="@android:anim/accelerate_interpolator">  
  4.     <alpha  
  5.         android:fromAlpha="1.0"  
  6.         android:toAlpha="0.0"  
  7.         android:startOffset="500"  
  8.         android:duration="2000"  
  9.             />  
  10.   
  11. </set></span>  
Animation a=AnimationUtils.loadAnimation(this, R.anim.alpha);
iv.startAnimation(a);

Scale动画

[html]  view plain copy
  1. <span style="font-size:18px;"><?xml version="1.0" encoding="utf-8"?>  
  2. <set xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:interpolator="@android:anim/accelerate_interpolator">  
  4.     <scale  
  5.         android:fromXScale="1.0"  
  6.         android:toXScale="0.0"  
  7.         android:fromYScale="1.0"  
  8.         android:toYScale="0.0"  
  9.         android:pivotX="50%"  
  10.         android:pivotY="50%"  
  11.         android:duration="2000"  
  12.     />  
  13.   
  14. </set></span>  

Rotate动画

[html]  view plain copy
  1. <span style="font-size:18px;"><?xml version="1.0" encoding="utf-8"?>  
  2. <set xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:interpolator="@android:anim/accelerate_interpolator">  
  4.     <rotate  
  5.         android:fromDegrees="0"  
  6.         android:toDegrees="400"  
  7.         android:pivotX="50%"  
  8.         android:pivotY="50%"  
  9.         android:duration="3000"  
  10.     />  
  11.   
  12. </set></span>  

Translate动画

[html]  view plain copy
  1. <span style="font-size:18px;"><?xml version="1.0" encoding="utf-8"?>  
  2. <set xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:interpolator="@android:anim/accelerate_interpolator">  
  4.     <translate  
  5.         android:fromXDelta="50%"  
  6.         android:toXDelta="100%"  
  7.         android:fromYDelta="50%"  
  8.         android:toYDelta="100%"  
  9.         android:duration="3000"  
  10.     />  
  11.   
  12. </set></span>  

这里重点提一下android:pivotX和android:pivotY和android:fromXDelta,android:toXDelta

android:pivotX="50"使用绝对坐标

android:pivotX="50%"相对自己

android:pivotX="50%p"相对父控件



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值