What seems like a really simple thing is causing me a few issues. I have looked at the solutions from:
Android Hide Navigation Bar/Stay in Immersive Mode with Soft Keyboard Appearance.
I have a simple activity with a ImageButton on. I want to be in Immersive Mode. I call the following method onCreate.
Issue The first click on the screen always brings up the navigation bar and does not fire the click handler. Is there a simple / less hacky way to stop this
public void hideNavigationBar()
{
final View decorView = getWindow().getDecorView();
int uiOptions = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_FULLSCREEN;
decorView.setSystemUiVisibility(uiOptions);
decorView.setOnSystemUiVisibilityChangeListener (new View.OnSystemUiVisibilityChangeListener() {
@Override
public void onSystemUiVisibilityChange(int visibility) {
if ((visibility & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0) {
decorView.setSystemUiVisibility(
View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
| View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_FULLSCREEN
| View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
}
}
});
}
You have to remember to add this method:
This automatically keeps it hidden, even when buttons or the screen is pressed.