SetRotationY () width API10 in Android

I am looking for a method / algorithm to do the equivalent of setRotationY () (which is available in Android API 11), but with API 10.

Thank you for your help.

Update, answer:

Use the Android library http://nineoldandroids.com/ @JakeWharton (thanks 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(); 
+6
source share
1 answer

I know that we are not LinkFactory, but @JakeWharton spent time porting AnimationFramework from API11.

Checkout nineoldandroids .

Example:

 ObjectAnimator.ofFloat(myView, "rotationX", 0, 90).setDuration(3000).start(); 
+5
source

All Articles