Android examples for User Interface:View Rotate
get View Rotation Y
//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*/ }