我在这个 LinearLayout 中有一个 LinearLayout 和 ImageView。
ImageView 有翻译效果。
// v = ImageView
ObjectAnimator animation2 = ObjectAnimator.ofFloat(v, "translationY", 200);
animation2.setDuration(3000);
animation2.setTarget(v);
animation2.start();
动画工作,但当 ImageView 超出 LinearLayout 时它消失了。
如何在不修改 LinearLayout 高度的情况下修复它。