rotation Open From Right ObjectAnimator - Android android.animation

Android examples for android.animation:ObjectAnimator

Description

rotation Open From Right ObjectAnimator

Demo Code


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

Related Tutorials