android中activity设置全屏显示无效问题解决。

时间:2022-05-10 17:15:41

一、在setContentView(R.layout.main_title_plus_dialog);前面添加以下代码:

requestWindowFeature(Window.FEATURE_NO_TITLE);

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

二、还需要在setContentView(R.layout.main_title_plus_dialog);后面添加以下代码:

 getWindow().setLayout(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);//需要添加的语句