Android examples for User Interface:Screen Lock
cancel Full Screen Display
//package com.java2s; import android.app.Activity; import android.view.WindowManager; public class Main { public static void cancelFullScreen(Activity activity) { WindowManager.LayoutParams params = activity.getWindow() .getAttributes();/* w w w .j a v a2s .c om*/ params.flags &= (~WindowManager.LayoutParams.FLAG_FULLSCREEN); activity.getWindow().setAttributes(params); activity.getWindow().clearFlags( WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS); } }