how do you remove the navigation bar on Android?

前端 未结 7 763
梦毁少年i
梦毁少年i 2021-02-11 02:52

When I listen to a YouTube video fullscreen in landscape on my Galaxy Nexus, the navigation bar on the right disapear after a few seconds (the bar which contains the "back&

7条回答
  •  日久生厌
    2021-02-11 03:15

    This code will hide the navigation bar until you swipe down from the status bar. It's the same method that Jetpack Joyride uses:

    View decorView = getWindow().getDecorView(); 
    int uiOptions = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
    decorView.setSystemUiVisibility(uiOptions);
    

    You must also have this in the activity section of your XML file:

    android:theme="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen"
    

提交回复
热议问题