android左右晃动动画(红包左右晃动)

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

 

posted @ 2016-06-27 19:35  一座城池2012  阅读(4325)  评论(0编辑  收藏  举报