Answer the question
In order to leave comments, you need to log in
How to remove the navigation bar in an android app?
How to remove the navigation bar in an android app?
In the application, you need to remove the navigation bar so that it would not be visible. The similarity of the fullscreen mode or it.
Thanks in advance
Answer the question
In order to leave comments, you need to log in
I ended up with this option:
if (Build.VERSION.SDK_INT < 19) {
View v = this.getWindow().getDecorView();
v.setSystemUiVisibility(View.GONE);
} else {
View decorView = getWindow().getDecorView();
int uiOptions = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
decorView.setSystemUiVisibility(uiOptions);
}
Actionbar?
https://developer.android.com/training/system-ui/s...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question