Android中全屏或者取消標題欄

先介紹去掉標題欄的方法:

第一種:也通常入門的時候常用的一種方法

    
    
             
    
    
requestWindowFeature(Window.FEATURE_NO_TITLE); // 去掉標題欄
注意這句必定要寫在setContentView()方法的前面,否則會報錯的

第二種:在AndroidManifest.xml文件中定義

    
    
             
    
    
< application android:icon = " @drawable/icon "
       android:label
= " @string/app_name "
android:theme
="@android:style/Theme.NoTitleBar" >

能夠看出,這樣寫的話,整個應用都會去掉標題欄,若是隻想去掉某一個Activity的標題欄的話,能夠把這個屬性加到activity標籤裏面html

第三種:這種在通常的應用中不經常使用,就是在res/values目錄下面新建一個style.xml的文件

例如: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"

你們本身總結一下吧,我的感受第三種比較好,看本身的喜歡用吧

相關文章
相關標籤/搜索