TranslateAnimation 动画移动

383 阅读1分钟

从右往左滑动
TranslateAnimation animation = new TranslateAnimation(
Animation.RELATIVE_TO_SELF , 1.0f,
Animation.RELATIVE_TO_SELF, 0.0f,
Animation.RELATIVE_TO_SELF,0.0f,
Animation.RELATIVE_TO_SELF, 0.0f);
animation.setDuration(500);//设置动画持续时间
shuaixuan_layout.startAnimation(animation);