我正在寻找一种方法/算法来完成等效的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();
答案 0 :(得分:5)
我知道我们不是LinkFactory,但是@JakeWharton花了很多时间从API11移植了AnimationFramework。
示例:
ObjectAnimator.ofFloat(myView, "rotationX", 0, 90).setDuration(3000).start();