set Screen Horizontal - Android User Interface

Android examples for User Interface:Screen Orientation

Description

set Screen Horizontal

Demo Code


//package com.java2s;

import android.app.Activity;

import android.content.pm.ActivityInfo;

public class Main {

    public static void setScreenHorizontal(Activity activity) {
        activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
    }// ww w. ja  v a2  s. c  o m
}

Related Tutorials