android code sets fullscreen

// set Untitled  

requestWindowFeature(Window.FEATURE_NO_TITLE);  

 // set fullscreen  

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,   

WindowManager.LayoutParams.FLAG_FULLSCREEN); 

Reproduced in: https: //my.oschina.net/dminter/blog/205022

Guess you like

Origin blog.csdn.net/weixin_33758863/article/details/91888798