how do you remove the navigation bar on Android?

前端 未结 7 733
梦毁少年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:04

    I use this code to hide the navigation bar and it works perfectly for me

    View v = this.getWindow().getDecorView();
    
    v.setSystemUiVisibility(View.INVISIBLE);
    

提交回复
热议问题