Skip to content Skip to sidebar Skip to footer

Android Activity Using Navigation View In Full Screen Mode Shows At The Bottom A Grey Translucent Area

I have an activity which is using the following method to enable fullscreen mode. protected void hideSystemUI() { View decorView = getWindow().getDecorView(); decorView.se

Solution 1:

I solved the issue by removing the flag View.SYSTEM_UI_FLAG_LAYOUT_STABLEfrom the method hideSystemUI. Now the method looks like this:

protected void hideSystemUI() {
        View decorView = getWindow().getDecorView();
        decorView.setSystemUiVisibility(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);
}

Post a Comment for "Android Activity Using Navigation View In Full Screen Mode Shows At The Bottom A Grey Translucent Area"