1

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

4

1 回答 1

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”参数。

经过几次尝试,你一定会做到的。

于 2012-11-06T09:16:38.570 回答