android:Style and Theme

來源:互聯網
上載者:User

如果視圖介面風格需要統一的規劃,就需要使用android視圖技術中的style。style的做法,是將這些style內容寫到單獨的xml檔案中,放置在res/values/styles.xml中:

<?xml version="1.0" encoding="utf-8"?><resources>   <style name="itemTitle">           <item name="android:textSize">25sp</item>           <item name="android:textStyle">bold</item>   </style></resources>

 

使用:在布局檔案中

 

<TextView style="@style/itemTitle" ................/>

R.java中有

public static final class style {
public static final int itemTitle=0x7f050000;
}

 

 

如果要針對整個Activity,對它的背景顏色和字型等做統一的樣式約定,就需要使用另外一個技術,theme。

首先,要編寫theme檔案,和style檔案類似,是放在res/values目錄下:(res/values/theme.xml)

 

<?xml version="1.0" encoding="utf-8"?><resources>    <color name="custom_background_color">#FFFFFFFF</color>    <style name="RiverTheme" parent="android:Theme.Light">        <item name="android:windowBackground">@color/custom_background_color</item>    </style></resources>
 

這裡繼承了系統的theme.light,一般theme是繼承的,這樣可以對預設的風格不必重複定義。

本例定義了一個背景色。這裡背景色要單獨聲明,不能在item元素中直接寫顏色值,會提示法錯誤。

引用該theme,在manifest檔案中指定的Activity中:

<activity .............
   android:theme="@style/RiverTheme"

theme也可以在application中整體使用。。。

參考:http://marshal.easymorse.com/archives/4111

相關文章

聯繫我們

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