Android 全屏设置

1.配置文件中设置
在AndroidManifest.xml的配置文件中设置,activity下style中包含全屏的样式,
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"//去掉TitleBar

2、代码中设置
setContentView(R.layout.layout)前面加入:
this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉信息栏
Android 全屏设置_第1张图片
提醒:必须在setContentView()前面加入

你可能感兴趣的:(android,全屏设置)