cancel Full Screen Display - Android User Interface

Android examples for User Interface:Screen Lock

Description

cancel Full Screen Display

Demo Code


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

Related Tutorials