码迷,mamicode.com
首页 > 移动开发 > 详细

android中的animation动画左右摇摆晃动

时间:2015-01-26 15:11:20      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:

左右摇摆的原理,就是向一个方向移动,然后设置反方向的属性。再设置重复次数。

TranslateAnimation animation = new TranslateAnimation(0, -5, 0, 0);
		animation.setInterpolator(new OvershootInterpolator());
		animation.setDuration(100);
		animation.setRepeatCount(3);
		animation.setRepeatMode(Animation.REVERSE);
		login_layout.startAnimation(animation);

对于这个login_layout,他是个view.就行。

android中的animation动画左右摇摆晃动

标签:

原文地址:http://blog.csdn.net/howlaa/article/details/43152309

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!