android 隐藏标题栏

方法一:

this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉信息栏

注意,这个设置必须放在设置布局前面,不然会报错.

setContentView(R.layout.entrancebs);

方法二:

在AndroidManifest.xml 里面

隐藏信息栏和标题栏:

<activity android:name=".Login" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >

隐藏标题栏:

 <activity android:name=".Login" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar" >

原文地址:https://www.cnblogs.com/songhaipeng/p/3003591.html