TranslateAnimation animation = new TranslateAnimation(0, 50, 0, 100);
animation.setDuration(1000);
animation.setFillAfter(false);
animation.setAnimationListener(new MyAnimationListener());
imageView.startAnimation(animation);
更新:
问题是,View实际上仍然处于旧位置。所以我们必须在动画完成时移动它。为了检测动画的完成时间,我们必须创建我们自己的animationListener(在我们的活动类里面):
private class MyAnimationListener implements AnimationListener{
@Override
public void onAnimationEnd(Animation animation) {
imageView.clearAnimation();
LayoutParams lp = new LayoutParams(imageView.getWidth(), imageView.getHeight());
lp.setMargins(50, 100, 0, 0);
imageView.setLayoutParams(lp);
}
@Override
public void onAnimationRepeat(Animation animation) {
}
@Override
public void onAnimationStart(Animation animation) {
}
}
所以onClickEvent将在新的地方再次被触发。动画现在将会更加下降,所以您可能希望将x和y保存在变量中,以便在onAnimationEnd()中将其移动到修复位置。