android style(樣式)和theme(主題)設定

來源:互聯網
上載者:User

android應用程式如何設定樣式,包括樣式定義、單個view設定樣式、 全域樣式設定、樣式繼承關係。   1、樣式定義 android的樣式定義在res/values/style.xml檔案中,類似web前端中將樣式定義在某個css檔案中,但android的style.xml是自動載入的,不需要手動import或link。目前還不瞭解android是否可以或怎麼定義多個style檔案。 如下是一組樣式的定義 [xml]  <span style="background-color: rgb(255, 255, 255);">    <!-- 全域字型樣式-->      <style name="DefaultFontStyle">           <item name="android:textSize">18px</item>          <item name="android:textColor">#0000CC</item>      </style>            <!-- 全域背景色-->      <style name="DefaultBgColor" parent="@style/DefaultFontStyle">           <item name="android:background">#F2F2F2</item>      </style>            <!-- 全域樣式-->      <style name="DefaultStyle" parent="@style/DefaultBgColor">       </style></span>  a. android的樣式定義是通過style標籤完成的,通過添加item元素設定不同的屬性值 b. 樣式可以通過設定parent進行繼承。上面的DefaultBgColor繼承自DefaultFontStyle,而DefaultStyle又繼承自DefaultBgColor,這樣DefaultStyle就有了字型大小顏色、背景色的屬性了。 c. android的主題樣式和一般樣式的定義是一樣的,只是引用時不同,下面將會介紹   2、單個view如何設定樣式 比如TextView,設定樣式如下 [xml]  <span style="background-color: rgb(255, 255, 255);"><TextView       android:layout_width="match_parent"       android:layout_height="wrap_content"      android:text="我在做什麼:"      android:textSize="18px"      android:textColor="#0000CC"      /></span>  也可以引用第一部分定義的樣式,如下 [xml] <span style="background-color: rgb(255, 255, 255);"><TextView       android:layout_width="match_parent"       android:layout_height="wrap_content"      android:text="我在做什麼:"      style="@style/DefaultStyle"      /></span>  設定view的style屬性進行樣式調用,推薦使用此種方式將樣式和布局分離。其他view及viewGroup設定相同。   對於單個view的更多屬性可以參考http://developer.android.com/reference/android/R.styleable.html#View 或具體的某個view的sdk文檔xml attribute.   3、全域樣式設定 在web前端編程中,可以使用 [html]  <span style="background-color: rgb(255, 255, 255);">body {      background: #cce8cf;      color: #000;      font-family: 宋體 verdana, tahoma;      font-size: 18px;      padding: 1px 2px 0 2px;      counter-reset: section;  }</span>  設定全域的樣式 [html]  <span style="background-color: rgb(255, 255, 255);">div {      margin-top: 10px;      margin-bottom: 10px;  }</span>  設定單個標籤的樣式   android中我們同樣可以辦到,只是這種全域樣式被稱作主題theme,比如對於整個應用預設字型都要18px,顏色為#0000CC,背景色為#F2F2F2,我們可以通過在AndroidManifest.xml設定application的android:theme屬性完成,如下: [xml]  <span style="background-color: rgb(255, 255, 255);"><application android:theme="@style/DefaultStyle"></span>  DefaultStyle即為第一部分中定義的主題,在第一部分中我們提到的主題和樣式定義一樣也是這個意思,只是引用的時候使用android:theme罷了。   下面為單個activity設定主題的代碼 [xml]  <span style="background-color: rgb(255, 255, 255);"><activity android:name=".AccountManageActivity"        android:theme="@style/DefaultStyle"></span>  activity的主題還有一些特殊設定,如   [xml] <span style="background-color: rgb(255, 255, 255);">android:theme="@android:style/Theme.Dialog"</span>  為對話方塊樣式設定  主題的設定也可以在代碼中通過setTheme(R.id.xx)完成。   接下來問題就出現了,如果一個應用設定了application的主題,設定了activity,設定了view的樣式,那麼view的各個樣式屬性值究竟是多少呢??   3、樣式繼承關係 android的樣式採取和css中一樣的覆蓋、繼承原則,和物件導向的子類覆蓋父類屬性、繼承沒有定義的父類屬性值的原則是一樣的。   如果一個TextView自己設定了樣式,它的ViewGroup設定了樣式,activity設定了主題,application設定了主題。 它會先讀取自己樣式的值,對於自己沒有的樣式向上尋找第一個找到的值即為要採取的值。   依次讀取的順序為View自己的樣式->上一層ViewGroup的屬性值->上上層ViewGroup的屬性值->…->activity主題->activity主題。   例子如下 [xml]  <span style="background-color: rgb(255, 255, 255);">    <!-- 全域字型樣式-->      <style name="DefaultFontStyle">           <item name="android:textSize">18px</item>          <item name="android:textColor">#0000CC</item>      </style>            <!-- 全域背景色-->      <style name="DefaultBgColor" parent="@style/DefaultFontStyle">           <item name="android:background">#F2F2F2</item>      </style>            <!-- 全域樣式-->      <style name="DefaultStyle" parent="@style/DefaultBgColor">       </style>        <!-- textView字型樣式-->      <style name="TextViewFontStyle">           <item name="android:textSize">20px</item>      </style></span>  application主題為 [xml]  <span style="background-color: rgb(255, 255, 255);"><application android:theme="@style/DefaultStyle"></span>  activity主題為 [xml]  <span style="background-color: rgb(255, 255, 255);"><activity android:name=".AccountManageActivity"        android:theme="@style/DefaultStyle"></span>  textView樣式設定如下 [java]  <span style="background-color: rgb(255, 255, 255);"><TextView       android:layout_width="match_parent"       android:layout_height="wrap_content"      android:text="我在做什麼:"      style="@style/TextViewFontStyle"      /></span>   則textView中最終字型大小為20px,顏色採用activity中設定的0000CC

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.