方法1 在代码里实现
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);//去除标题栏
setContentView(R.layout.activity_main);
//......其它代码
}
注意: requestWindowFeature() 语句一定要写在 setContentView() 之前
方法2 在文件清单 (manifest.xml) 里面实现
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
这样就可以将整个App设置成无标题栏状态。如果只需要将一个Activity设置成无标题栏状态,只要把上面的第三行代码写到某一个Activity里面即可
方法3 在style.xml里面定义
<?xml version="1.0" encoding="UTF-8" ?>
<resources>
<style name="notitle">
<item name="android:windowNoTitle">true</item>
</style>
</resources>
然后在manifest.xml里面引用就可以了,这种方法稍微麻烦了些。
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/notitle">