我正在寻找一种方法/算法来执行与 setRotationY() 等效(可从 Android API 11 获得),但使用 API 10。
感谢您的帮助。
更新,答案:
使用@JakeWharton 的 Android 库http://nineoldandroids.com/(感谢 Chris.Jenkins)
if (android.os.Build.VERSION.SDK_INT > 10)
this.mBehindView.setRotationY(180);
else
ObjectAnimator.ofFloat(this.mBehindView, "rotationY", 0, 180).setDuration(0).start();