Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> Android應用去掉標題欄的方法,android去掉標題欄

Android應用去掉標題欄的方法,android去掉標題欄

編輯:關於android開發

Android應用去掉標題欄的方法,android去掉標題欄


1.在代碼裡實現

this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉標題欄,this指當前的Activity

這句代碼一定要加在setContentView()前面。

this.requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.activity_main); View Code

2.在清單文件裡實現

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

這樣設置的是整個應用都為無標題欄,如果需要在某一個Activity設置成一個無標題欄的形式,只要把上面android:theme="@android:style/Theme.NoTitleBar"寫到某一個Activity裡面就可以了。

3.在style.xml文件裡定義

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

然後在清單文件中引用

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

其實第二種和第三種方法實質是一樣的,第三種會更高大上一些。

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved