Android examples for User Interface:View Rotate
get View Rotation X
//package com.java2s; import android.view.View; public class Main { public static float getRotationX(View view) { return view.getRotationX(); }//from w w w .j a v a 2 s. c om }