rotation Open Vertical ObjectAnimator - Android android.animation

Android examples for android.animation:ObjectAnimator

Description

rotation Open Vertical ObjectAnimator

Demo Code


//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
}

Related Tutorials