android去掉头部label的方法

方法一:在AndroidManifest.xml中

<application
android:allowBackup=”true”
android:icon=”@drawable/ic_launcher”
android:label=”@string/app_name”
android:theme=”@android:style/Theme.NoTitleBar” >

 

添加theme属性为NoTitleBar就可以了。

方法二:在MainActivity.java中

@Override
public void onCreate (Bundle savedInstanceState) {
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}

 

把requestWindowFeature()方法添加在setContentView()方法之前,这个方法只是把标题隐藏了。

Leave a Comment

 
Copyright © 2008-2021 lanxinbase.com Rights Reserved. | 粤ICP备14086738号-3 |