Android 是可以使用 style的,具體方法為:
1、在Android中可以這樣定義樣式:在res/values/styles.xml檔案中新增以下內容<?xml version="1.0" encoding="utf-8"?><resources><style name=“itcast”> <item name="android:textSize">18px</item> <item name="android:textColor">#0000CC</item></style></resources>
2、在layout檔案中可以像下面這樣使用上面的android樣式:<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="
http://schemas.android.com/apk/res/android
3、可以使他繼承父樣式,當然,如果父樣式的值不符合需求,你也可以對它進行修改,如下:<?xml version="1.0" encoding="utf-8"?><resources><style name="itcast"><item name="android:textSize">18px</item> <item name="android:textColor">#0000CC</item></style><style name="subitcast" parent="@style/itcast"><item name="android:textColor">#FF0000</item></style></resources>
Android 是可以使用 style的,具體方法為:
1、在Android中可以這樣定義樣式:在res/values/styles.xml檔案中新增以下內容<?xml version="1.0" encoding="utf-8"?><resources><style name=“itcast”> <item name="android:textSize">18px</item> <item name="android:textColor">#0000CC</item></style></resources>
2、在layout檔案中可以像下面這樣使用上面的android樣式:<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="
http://schemas.android.com/apk/res/android
" ....><TextView..... />3、可以使他繼承父樣式,當然,如果父樣式的值不符合需求,你也可以對它進行修改,如下:<?xml version="1.0" encoding="utf-8"?><resources><style name="itcast"><item name="android:textSize">18px</item> <item name="android:textColor">#0000CC</item></style><style name="subitcast" parent="@style/itcast"><item name="android:textColor">#FF0000</item></style></resources>