requestWindowFeature(Window.FEATURE_NO_TITLE); // 去掉標題欄
< application android:icon = " @drawable/icon "
android:label = " @string/app_name "
android:theme ="@android:style/Theme.NoTitleBar" >
能夠看出,這樣寫的話,整個應用都會去掉標題欄,若是隻想去掉某一個Activity的標題欄的話,能夠把這個屬性加到activity標籤裏面html
例如:android
<? xml version="1.0" encoding="UTF-8" ?>
< resources >
< style name ="notitle" >
< item name ="android:windowNoTitle" > true </ item >
</ style >
</ resources >
這樣,咱們就自定義了一個style,就至關於一個主題,而後在AndroidManifest.xml文件中定義app
< application android:icon ="@drawable/icon"
android:label ="@string/app_name"
android:theme ="@style/notitle" >
這樣也能夠達到去掉標題欄的效果ide
第一種,有的時候咱們會看到,會先出現標題欄,而後再消失,由於咱們只是在activity的oncreate方法中定義的,第二種相對第一種比較好一些,不會出現這種狀況,第三種我我的感受最好,這樣把功能分開,便於維護和擴展post
第一種spa
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
第二種code
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
第三種orm
application android:icon ="@drawable/icon"
android:label ="@string/app_name"
android:theme ="@style/fullscreem"