动画:将TextView移动到另一个容器中

时间:2013-11-16 14:58:16

标签: android android-layout android-animation

我想以一种方式将LinearLayout中的TextView移动到另一个LinearLayout中。 但是,我不能让它移动到它的容器视图之外(它所在的LinearLayout),它只在这里移动。有人可以帮助我完成这项工作吗?另见下图: textviews and linearlayouts

我正在使用NineOldAndroids库并尝试使用ViewPropertyAnimator:

animate(myTextView).setDuration(500).x(?).y(?);

还有:

animate(myTextView).setDuration(500).translationX(?).translationY(?);

而不是'?'在上面我希望能够找到我想要删除TextViews的LinearLayout的位置。(如果通过声明View对象无法移动到某个View)。

1 个答案:

答案 0 :(得分:5)

需要做的是将“android:clipChildren =”false“”添加到所有容器布局中。