概览:
1. style改变标准控件的外观。
正文:
1. style改变标准控件的外观。
让CheckBox 的框变成星。
<CheckBox android:id="@+id/star"
style="?android:attr/starStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/controls_1_star" />
让TextView 变成分隔条。
<TextView
style="?android:attr/listSeparatorTextViewStyle"
android:text="@string/listSeparatorTextViewStyle"
android:layout_marginTop="5dip"
/>