Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android4.2中全屏或者取消標題欄的方法總結

Android4.2中全屏或者取消標題欄的方法總結

編輯: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標簽裡面

第三種:這種在一般的應用中不常用,就是在res/values目錄下面新建一個style.xml的文件
例如:
代碼如下:

<?xml version="1.0" encoding="UTF-8" ?>
<resources>
<style name="notitle">
<item name="android:windowNoTitle">true</item>
</style>
</resources>

這樣,我們就自定義了一個style,就相當於一個主題,然後在AndroidManifest.xml文件中定義
代碼如下:

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

這樣也可以達到去掉標題欄的效果

三種去掉標題欄方法的總結
第一種,有的時候我們會看到,會先出現標題欄,然後再消失,因為我們只是在activity的oncreate方法中定義的,第二種相對第一種比較好一些,不會出現這種情況,第三種我個人感覺最好,這樣把功能分開,便於維護和擴展

再介紹全屏的方法:
第一種
代碼如下:

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"
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved