Java tutorial
//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); } }