在android中从上到下移动imageview

时间:2012-11-06 08:56:33

标签: android android-layout android-animation

我的屏幕中心有一个ImageView,我想向上移动。它仍然位于顶部。 我看到了Tween动画文档并尝试了但它不起作用。 任何人都可以帮助我解决这个问题。

1 个答案:

答案 0 :(得分:3)

你尝试过观看动画吗?

Animation an = new TranslateAnimation(fromX,fromY,toX,toY);//0,0 is the current       coordinates
an.setFillAfter(true);// to keep the state after animation is finished
yourView.startAnimation(an);// to start animation obviously

使其从底部移动到顶部,获取屏幕高度并使用它来设置“toY”参数。

几次尝试后你肯定会这样做。