Android開發——樣式和主題

來源:互聯網
上載者:User

一、基本概念 作用和網頁開發中的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>  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.