第一種:入門的時(shí)候經(jīng)常使用的一種方法
supportRequestWindowFeature(Window.FEATURE_NO_TITLE);
//去掉標(biāo)題欄
注意這句一定要寫在setContentView()方法的前面泉懦,不然會報(bào)錯(cuò)的第二種:在AndroidManifest.xml文件中定義
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar">
可以看出,這樣寫的話疹瘦,整個(gè)應(yīng)用都會去掉標(biāo)題欄崩哩,如果只想去掉某一個(gè)Activity的標(biāo)題欄的話,可以把這個(gè)屬性加到activity標(biāo)簽里面
- 第三種:這種在一般的應(yīng)用中不常用言沐,就是在res/values目錄下面新建一個(gè)style.xml的文件
例如:
<?xml version="1.0" encoding="UTF-8" ?> <resources> <style name="notitle"> <item name="android:windowNoTitle">true</item> </style> </resources>
這樣邓嘹,我們就自定義了一個(gè)style,就相當(dāng)于一個(gè)主題,然后在AndroidManifest.xml文件中定義,也可達(dá)到去掉標(biāo)題欄的效果
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/notitle">
介紹全屏的方法
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
application android:icon="@drawable/icon" android:label="@string/app_name"android:theme="@style/fullscreem"