get View Rotation X - Android User Interface

Android examples for User Interface:View Rotate

Description

get View Rotation X

Demo Code


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

Related Tutorials