set View Rotation X - Android User Interface

Android examples for User Interface:View Rotate

Description

set View Rotation X

Demo Code


//package com.java2s;
import android.view.View;

public class Main {
    public static void setRotationX(View view, float rotationX) {
        view.setRotationX(rotationX);//from   w  w w  .  j a  v  a  2s  .co  m
    }
}

Related Tutorials