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

mov*_*iaa 3 android android-animation android-layout

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

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

animate(myTextView).setDuration(500).x(?).y(?);
Run Code Online (Sandbox Code Playgroud)

还有:

animate(myTextView).setDuration(500).translationX(?).translationY(?);
Run Code Online (Sandbox Code Playgroud)

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

mov*_*iaa 5

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