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();
source share