Android examples for android.animation:ObjectAnimator
rotation Open From Right ObjectAnimator
//package com.java2s; import android.animation.ObjectAnimator; import android.view.View; public class Main { public static ObjectAnimator rotationOpenFromRight(View v) { return ObjectAnimator.ofFloat(v, "rotationY", -90, 0); }/* w w w . j a va 2 s. com*/ }