1.代码里实现
this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏
2.AndroidManifest.xml清单文件
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
3.风格里设置
<?xml version="1.0" encoding="UTF-8" ?>
<resources>
<style name="notitle">
<item name="android:windowNoTitle">true</item>
</style>
</resources>
然后在AndroidManifest.xml清单文件中引用
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/notitle">