天天看點

Android 全屏設定

1.配置檔案中設定

在AndroidManifest.xml的配置檔案中設定,activity下style中包含全屏的樣式,

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"//去掉TitleBar

Android 全屏設定

2、代碼中設定

setContentView(R.layout.layout)前面加入:

this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标題欄

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

WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉資訊欄

Android 全屏設定

提醒:必須在setContentView()前面加入