Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android開發——樣式和主題

Android開發——樣式和主題

編輯:關於Android編程

一、基本概念   作用和網頁開發中的CSS是一樣的。樣式用在單個控件上,主題應用在整個應用或一個或多個Activity上。       二、實例代碼   在res/values文件夾下建立style.xml文件,該文件中體現了樣式的繼承。樣式的覆蓋和CSS一樣,也是就近原則。   [html]   <?xml version="1.0" encoding="utf-8"?>   <resources>       <!-- 樣式中設置的屬性針對某個控件 -->       <style name="xyStyle">           <item name="android:textSize">18dp</item>           <item name="android:textColor">#FF0000</item>       </style>       <!-- 繼承方式1 -->       <style name="txtViewStyle" parent="xyStyle">           <item name="android:layout_width">fill_parent</item>           <item name="android:layout_height">wrap_content</item>       </style>       <!-- 繼承方式2 -->       <style name="txtViewStyle.child">           <item name="android:textColor">#0D9DF0</item>       </style>              <!-- 主題中設置的屬性針對整個應用或某個Activity-->       <style name="xyTheme">           <item name="android:windowNoTitle">true</item>           <!-- 表示引用android:windowNoTitle的值 -->           <item name="android:windowFullscreen">?android:windowNoTitle</item>       </style>   </resources>     <?xml version="1.0" encoding="utf-8"?> <resources> <!-- 樣式中設置的屬性針對某個控件 --> <style name="xyStyle"> <item name="android:textSize">18dp</item> <item name="android:textColor">#FF0000</item> </style> <!-- 繼承方式1 --> <style name="txtViewStyle" parent="xyStyle"> <item name="android:layout_width">fill_parent</item> <item name="android:layout_height">wrap_content</item> </style> <!-- 繼承方式2 --> <style name="txtViewStyle.child"> <item name="android:textColor">#0D9DF0</item> </style>   <!-- 主題中設置的屬性針對整個應用或某個Activity--> <style name="xyTheme"> <item name="android:windowNoTitle">true</item> <!-- 表示引用android:windowNoTitle的值 --> <item name="android:windowFullscreen">?android:windowNoTitle</item> </style> </resources> [html]   <?xml version="1.0" encoding="utf-8"?>   <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"       android:orientation="vertical"       android:layout_width="fill_parent"       android:layout_height="fill_parent">       <TextView android:text="@string/hello" style="@style/txtViewStyle.child" />   </LinearLayout>     <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:orientation="vertical"     android:layout_width="fill_parent"     android:layout_height="fill_parent"> <TextView android:text="@string/hello" style="@style/txtViewStyle.child" /> </LinearLayout>    
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved