set View Rotation Y - Android User Interface

Android examples for User Interface:View Rotate

Description

set View Rotation Y

Demo Code


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

public class Main {
    public static void setRotationY(View view, float rotationY) {
        view.setRotationY(rotationY);//from   w  ww .  j  ava  2 s  .c  o  m
    }
}

Related Tutorials