get View Rotation - Android User Interface

Android examples for User Interface:View Rotate

Description

get View Rotation

Demo Code


//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
}

Related Tutorials