rotation Close To Right ObjectAnimator - Android android.animation

Android examples for android.animation:ObjectAnimator

Description

rotation Close To Right ObjectAnimator

Demo Code


//package com.java2s;

import android.animation.ObjectAnimator;
import android.view.View;

public class Main {
    public static ObjectAnimator rotationCloseToRight(View v) {
        return ObjectAnimator.ofFloat(v, "rotationY", 0, -90);
    }/*from w  ww . j a v  a2s .c o  m*/
}

Related Tutorials