Android主題(theme)與樣式(style)

來源:互聯網
上載者:User

主題和樣式有什麼不同?

主題:Theme是針對表單層級的,改變表單樣式。在application和activity標籤下使用。

樣式:Style是針對表單元素層級的,改變指定控制項或者Layout的樣式。在具體控制項下使用。

主題和樣式可以用Android系統內建的
也可以自訂。下面講講怎麼自訂佈景主題和樣式。

具體步驟:

在res/values目錄下建立一個名叫style.xml的檔案
對於每一個主題和樣式,給<style>元素增加一個全域唯一的名字,和一個可選的父類屬性
在<style>元素內部,申明一個或者多個<item>,每一個<item>定義了一個名字屬性,並且在元素內部定義了這個風格的值
然後可以在其他XML資源,manifest或應用程式代碼中引用這些自訂資源
樣式例子:


[html]
<style name="textview_style01"> 
    <item name="android:layout_width">fill_parent</item> 
    <item name="android:layout_height">fill_parent</item> 
    <item name="android:gravity">center</item> 
    <item name="”android:textSize”">14sp</item> 
    <item name="”android:textColor”">#FF7F7C</item> 
</style> 
 
<style name="textview_style02" parent="@style/textview_style01"> 
    <item name="”android:textSize”">28sp</item> 
</style> 

    <style name="textview_style01">
        <item name="android:layout_width">fill_parent</item>
        <item name="android:layout_height">fill_parent</item>
        <item name="android:gravity">center</item>
        <item name="”android:textSize”">14sp</item>
        <item name="”android:textColor”">#FF7F7C</item>
    </style>

    <style name="textview_style02" parent="@style/textview_style01">
        <item name="”android:textSize”">28sp</item>
    </style>[html] view plaincopyprint?<TextView style="@style/textview_style01"></TextView> 

<TextView style="@style/textview_style01"></TextView>


主題例子


[html]
<style name="my_theme" parent="android:Theme.Black"> 
    <item name="”android:windowNoTitle”">true</item> 
    <item name="”android:textSize”">14sp</item> 
    <item name="”android:textColor”">#FFFF0000</item> 
</style> 

    <style name="my_theme" parent="android:Theme.Black">
        <item name="”android:windowNoTitle”">true</item>
        <item name="”android:textSize”">14sp</item>
        <item name="”android:textColor”">#FFFF0000</item>
    </style>[html] view plaincopyprint?<application android:theme="@style/my_theme"> 
<activity android:theme="@style/my_theme">  www.2cto.com

    <application android:theme="@style/my_theme">
    <activity android:theme="@style/my_theme">

 

 

 

 

相關文章

聯繫我們

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