Android examples for User Interface:View Rotate
get View Rotation
//package com.java2s; import android.view.View; public class Main { public static float getRotation(View view) { return view.getRotation(); }//from w w w . j ava2 s. c o m }