Display Full-Screen API
Last updated
Last updated
This guide explains how to use specific system APIs to hide the status bar and navigation bar, enabling a full-screen display on Android devices.
Be aware that using these APIs affects the entire system, not just your application. When you hide the status bar or navigation bar, it remains hidden across all system interfaces and applications.
android.permission.CLOUDPOS_HIDE_STATUS_BAR
The application declares permissions in the manifest.
void hideBars(int state)
Set status bar and navigation bar state.
state
1 : hide status bar, 2 : hide navigation bar, 3: hide both, 0: show both. In device without navigation bar, set 2 and 3 will throw IllegalArgumentException.
Here are some code snippets:
//hideBars:
Object service = getSystemService("statusbar");
Class statusBarManager = Class.forName("android.app.StatusBarManager");
Method method = statusBarManager.getMethod("hideBars",
int getBarsVisibility();
Get the state of the status bar and navigation bar.
int
the result , 1 : hide status bar, 2 : hide navigation bar, 3: hide both, 0: show both. In device without navigation bar, set 2 and 3 will throw IllegalArgumentException.
Here are some code snippets:
//getBarsVisibility:
Object service = getSystemService("statusbar");
Class statusBarManager = Class.forName("android.app.StatusBarManager");
Method method = statusBarManager.getMethod("getBarsVisibility");
Object object = expand.invoke(service);
Please download and run HideStatusBar Test APK