主題和樣式有什麼不同?
主題: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">