Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.app.Activity;

import android.content.pm.ActivityInfo;

public class Main {
    /**
     * Unlock the orientation of the device
     *
     * @param context the current Activity context
     */
    public static void unlockScreenOrientation(Activity context) {
        context.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
    }
}