1. 程式人生 > >Activity設定無標題欄主題樣式

Activity設定無標題欄主題樣式

去掉Activity上的所有標題欄,在styles.xml中進行設定主題樣式,由於該樣式在清單檔案<application>節點中進行了配置,所以對整個專案中的Activity都能生效

  <style name="AppTheme"parent="AppBaseTheme">

        <!--All customizations that are NOT specific to a particular API-level can go here.-->

        <item name="android:windowNoTitle">true</item>

   </style>

該樣式在清單檔案裡進行 配置使用即可生效

 <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
</application>