Hide Notification bar

后端 未结 9 1617
[愿得一人]
[愿得一人] 2020-11-27 03:17

Anyone know how to disable/hide notification bar at the top which show battery and other things in android. Any help will be appreciated.

EDIT: Plea

9条回答
  •  长情又很酷
    2020-11-27 03:57

    You can use this for 4.1 or upper versions.

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

提交回复
热议问题