这篇文章主要作为查询手册。
Animation 视图动画
有5种XML方式:alpha,scale,rotate,translate,set
alpha 透明度动画:
【示例】实现文字的渐现效果:
【示例】绕中点旋转360°
scale缩放动画:
scale为1是原大小。
translate位移动画:
android:toXDelta="float"
android:fromYDelta="float"
android:toYDelta="float" />
这些属性均支持三种模式:像素相对模式,百分比相对模式,父类百分比相对模式。(见上文描述)
set动画集合:
...
组合可以嵌套。
使用Eclipse快速创建以上XML文件:
1:打开XML编辑器
2:选择Tween Animation
3:选择特定类型,并输入文件名
4:存放位置
xml文件位于资源文件的animtion文件夹下
在程序中使用定义好的动画:
方式1:使用View的setAnimation(Animation) + Animation的start();
Animation animation = AnimationUtils.loadAnimation(this, R.anim.text_appear);
animation.setDuration(6000);
textView.setAnimation(animation);
animation.start();
Animation animation = AnimationUtils.loadAnimation(this, R.anim.text_appear);
animation.setDuration(6000);
textView.startAnimation(animation);
Animation其他主题:
Duration 持续时间
在XML中加入一行:
android:duration="500"
或者以Java方式的代码书写:
animation.setDuration(500);
android:startOffset="1000"
animation.setStartOffset(1000);
Interpolator 插值器
用于改变时间对数值的影响
android:interpolator="@android:anim/linear_interpolator"
或者
animation.setInterpolator(new LinearInterpolator());
包括fillAfter,fillBefore,fillEnable。仅对fillAfter做说明
fillAfter用于动画效果结束后,效果改变的属性是否真实作用于View,默认关闭(False)。
android:fillAfter="true"
或者
animation.setFillAfter(true);
也就是如果你对一个View做了一个alpha从不透明到透明的动画,你希望之后该View一直透明状态,则应该设置fillAfter="true"
Repeat 重复
重复次数与重复模式
android:repeatMode="restart"
android:repeatCount="5"
或者
animation.setRepeatCount(5);
animation.setRepeatMode(Animation.REVERSE);
例如,你的alpha动画为
android:fromAlpha="1"
android:toAlpha="0.2"
设置为RESTART后,透明度到达0.2后,又会变成1重新开始下降到0.2,
而REVERSE则是:透明度到达0.2后,将逐渐变大到达1,然后逐渐减少到0.2。
注意两点:
重复次数不计算第1次,也就是setRepeatCount(0)代表不重复。
REVERSE模式从 开始->结束->开始 算2次