標籤:android style theme
樣式(style)資源
程式碼範例
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="hello world" style="@style/style1"/> <EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="hello world" style="@style/style2"/></LinearLayout>
<resources> <!-- Base application theme. --> <style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar"> <!-- Customize your theme here. --> </style> <style name="style1"> <item name="android:textSize">20sp</item> <item name="android:textColor">#00d</item> </style> <style name="style2" parent="@style/style1"> <item name="android:background">#ee6</item> <item name="android:padding">8dp</item> <item name="android:textColor">#000</item> </style></resources>
佈景主題資源
著作權聲明:本文為博主原創文章,未經博主允許不得轉載。
Android樣式(style)和主題(theme)資源介紹-android學習之旅(五十六)