is it possible to hide the system bar

前端 未结 5 1664
情歌与酒
情歌与酒 2020-11-28 10:13

I created a launcher, to use it in an internal application. for some security reasons i would like to hide the system bar (the acces to the parameter an ordrer to the acces

5条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-28 10:56

    Put this in your onCreate() method:

    requestWindowFeature(Window.FEATURE_NO_TITLE);

    EDIT: Hiding the status bar would require your application be full screen or rooted.

提交回复
热议问题