get View Rotation Y - Android User Interface

Android examples for User Interface:View Rotate

Description

get View Rotation Y

Demo Code


//package com.java2s;
import android.view.View;

public class Main {
    public static float getRotationY(View view) {
        return view.getRotationY();
    }/*from  w w w .  ja v a2 s  .co m*/
}

Related Tutorials