我想使用属性动画将视图从左向右移动,就像这样
ObjectAnimator animator = ObjectAnimator.ofFloat(textView1, "translationX", 400);
但是当动画开始时,目标视图右侧的视图会覆盖此动画 enter image description here
我想在动画开始时将textView1放在textView2的顶部。我该怎么做?
答案 0 :(得分:0)
在开始动画之前尝试使用textview1.bringToFront();
。