如果想同時隱藏標題欄和通知欄的話:
方法 1、 在manifest里面的activity加
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
方法2、 在activity的onCreate方法寫入以下代碼:
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
//去掉標題欄
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN); //去掉信息欄
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN); //去掉信息欄
如果只是想隱藏標題欄的話:
方法 1、 在manifest里面的activity加
android:theme="@android:style/Theme.NoTitleBar"
方法2、 在activity的onCreate方法寫入以下代碼:
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
//去掉標題欄