Animation 手机动画_TranslateAnimation

 

Animation a = new TranslateAnimation(caipiao_clicked_btn.getLeft(), btn
				.getLeft(), caipiao_clicked_btn.getTop(), btn.getTop());// 构造一个水平移动动画的实例
		a.setDuration(300);// 设置时间持续时间为300毫秒
		a.setStartOffset(0);// 以毫秒为单位的动画运行前的延迟,一旦开始时间就达到了
		a.setFillAfter(true);// fillAfter 属性 当设置为true 该动画转化在动画结束后被应用
		a.setRepeatCount(0);// 定义动画重复的时间 0
		a.setInterpolator(AnimationUtils.loadInterpolator(this,
				android.R.anim.decelerate_interpolator));// 定义用于平滑动画运动的时间内插
		shadow_imageView.startAnimation(a);// 启动动画效果

 

 其中caipiao_clicked_btn为移动前的Button, btn为移动后的目标Button. shadow_imageView为ImageView(动画的作用对象)

 

你可能感兴趣的:(android)