1、方法一:
在AcdroidMainfest.xml中
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar"
>
添加Theme属性,设置为NoTitleBar即可

2、方法二:
public void onCreate(BundlesavedInstanceState) {
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
super.onCreate(savedInstanceState);
...}
requestWindowFeature(Window.FEATURE_NO_TITLE);
要写在setContentView(R.layoutmain)前面,每个activity页面代码中都加上这一句就可以了