MCPcopy Create free account
hub / github.com/XCSoar/XCSoar / enableImmersiveMode

Method enableImmersiveMode

android/src/WindowUtil.java:48–56  ·  view source on GitHub ↗

Set / Reset the System UI visibility flags for Immersive Full Screen Mode.

(Window window)

Source from the content-addressed store, hash-verified

46 * Screen Mode.
47 */
48 static void enableImmersiveMode(Window window) {
49 View decorView = window.getDecorView();
50 decorView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN|
51 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION|
52 View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY|
53 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN|
54 View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION|
55 View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
56 }
57
58 static void disableImmersiveMode(Window window) {
59 View decorView = window.getDecorView();

Callers 2

enterFullScreenModeMethod · 0.95
onWindowFocusChangedMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected