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

android studio 中去除應用標題欄,androidstudio

編輯:關於android開發

android studio 中去除應用標題欄,androidstudio


android studio 中去除應用標題欄  

  ⒈ mainifests中設置:

  android:theme="@style/AppTheme"(即默認設置).

  ⒉ values->styles.xml中設置:

  style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar".

㈡  values->styles.xml中:

   在當先使用的style的parent屬性添加NoActionBar.如原先為

         style name="AppTheme" parent="Theme.AppCompat.Light".

      修改後為

         style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar".

來自:http://www.w2bc.com/Article/65175

<resources>

    <!-- Base application theme. -->
    <!--<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">-->
    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- Customize your theme here. -->
    </style>

</resources>

  

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