android 四种动画TranslateAnimation,ScaleAnimation,RotateAnimation,AlphaAnimation

[size=medium][b]这四种补间动画都是Animation的子类。[/b][/size]

[b]移动补间动画:[/b][color=red]TranslateAnimation[/color]

[b]Animation animation = new TranslateAnimation(0,50,0,50);[/b]
参数1:x轴的起始位置
参数2:x轴的终止位置
参数3:y轴的起始位置
参数4:y轴的终止位置

[color=blue]相对于原图位置的原点(图片的右上角为0,0),如果不想用这个点作为参照点,可以使用其他构造[/color]
[b]Animation animation = new TranslateAnimation(fromXType, fromXValue, toXType, toXValue, fromYType, fromYValue, toYType, toYValue);[/b]

参数1,参数3,参数5,参数7就是设置参照点的方式
可以通过Animation类的常量进行设置例如:Animation.RELATIVE_TO_SELF

[b]缩放补间动画:[/b][color=red]ScaleAnimation[/color]
[b]Animation animation = new ScaleAnimation(1f,0.2f,1f,0.2f,Animation.RELATIVE_TO_SELF,0.5f,Animation.RELATIVE_TO_SELF,0.5f); [/b]

参数1:x方向起始大小(1f表示原图大小)
参数2:x方向终止大小(0.2f表示原图的0.2倍)
参数3:y方向起始大小(1f表示原图大小)
参数4:y方向终止大小(0.2f表示原图的0.2倍)
参数5:缩放中心点x轴取值的参照方式
参数6:中心点x轴的取值(0.5f表示相对与原图的0.5倍)
参数7:缩放中心点y轴取值参照方式
参数8:中心点y轴的取值(0.5f表示相对与原图的0.5倍)

[b]旋转补间动画:[/b][color=red]RotateAnimation[/color]
[b]Animation animation = new RotateAnimation(360,0,Animation.RELATIVE_TO_SELF,0.5f,Animation.RELATIVE_TO_SELF,0.5f);[/b]
参数1:旋转的起始角度
参数2:旋转的终止角度
参数3:旋转中心的x轴取值参照方式
参数4:中心点x轴的取值
参数5:旋转中心的y轴取值参照方式
参数6:中心点y轴的取值

[b]透明补间动画:[/b][color=red]AlphaAnimation[/color]
[b]Animation animation = new AlphaAnimation(1f,0.1f);[/b]
参数1: 起始透明度;
参数2: 目标透明度;


每种动画都有很多种重载,可以根据需求进行选择,如果想让动画有效果还得设置动画的时间
[color=red]设置动画持续时间[/color]
animation.setDuration(2000);
以毫秒为单位

[color=red]对于动画还可以设置渲染器[/color]

android系统提供了很多渲染器资源 通过android.R.anim.的方式使用([color=red]在res目录下的anim目录下定义[/color])
animation.setInterpolator(Main.this,android.R.anim.anticipate_overshoot_interpolator);


[color=red]如果想要多个动画效果同时使用,可以通过AnimationSet 实现[/color]
AnimationSet animationSet = new AnimationSet(false);
animationSet.addAnimation(animation);

得到动画对象之后就是使用了,[color=red]每个view都有startAnimation(animation)方法[/color]
因为AnimationSet继承自Animation类所以该方法的参数既可以是动画对象(Animation)也可以是动画集(AnimationSet )对象
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值