Android examples for android.animation:ObjectAnimator
rotation Open Vertical ObjectAnimator
//package com.java2s; import android.animation.ObjectAnimator; import android.view.View; public class Main { public static ObjectAnimator rotationOpenVertical(View v) { return ObjectAnimator.ofFloat(v, "rotationX", -90, 0); }//from w w w .ja v a2 s . c o m }