android - Immersive mode on Jelly Bean - Menu bar not disappearing -
itemprop = "text"> After creating my activity full screen using the sample code in the Android document: // This snippet hides the system bar Private Zero Hide SystemUI () set // // set the content to appear under the IMMERSIVE flag // System Bar, so that the content is hidden // content hidden and the size of the content Do not change. .. GetWindow () getDecorView () setSystemUiVisibility (View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_FULLSCREEN // hide the status bar | | hide View.SYSTEM_UI_FLAG_HIDE_NAVIGATION // navigation bar View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY); } // This snippet shows the system bar. It removes / removes all the flags, except that the content is displayed under the system bar. Private Zero showSystemUI () {GetWindow () getDecorView () setSystemUiVisibility (View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION | View.SYSTEM...