我正在使用 ObjectAnimator 并且无法弄清楚如何仅在一个方向(例如右侧)缩放 x 轴。因为当我缩放它时,它会双向缩放,然后我的 ImageView 不在屏幕上。我知道我可以添加 transitionX 来防止屏幕外,但更好的解决方案是向一个方向缩放。
ObjectAnimator headAnim = ObjectAnimator.ofFloat(imageHead, "scaleX", 1f, 1.5f);
headAnim.setDuration(1000);
headAnim.start();