Android examples for android.animation:ObjectAnimator
rotation Close Vertical ObjectAnimator
//package com.java2s; import android.animation.ObjectAnimator; import android.view.View; public class Main { public static ObjectAnimator rotationCloseVertical(View v) { return ObjectAnimator.ofFloat(v, "rotationX", 0, -90); }// ww w . ja va2s.co m }