标签:android style blog http color io os ar java
RadioGroup
radiobutton字体颜色改变color_radiobutton.xml
radiobutton背景颜色改变radio_group_selector.xml
color.xml
Activity
http://blog.csdn.net/zzf112/article/details/20467957
--------------------->
android:background="@drawable/drawlist"--------->不能用colorlist
radiogroup------->radiobutton必须要有id否则会两个都选中
<RadioGroup android:layout_width="match_parent" android:layout_height="50dp" android:orientation="horizontal" > <RadioButton android:id="@+id/radio0" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1" android:background="@drawable/zuowei" android:button="@null" android:checked="true" android:gravity="center" android:text="座位安排" android:textColor="#ffffff" /> <RadioButton android:id="@+id/radio1" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1" android:background="@drawable/zuowei" android:button="@null" android:gravity="center" android:text="菜单编辑" android:textColor="#ffffff" /> </RadioGroup>
RadioGroup 的 RadioButton 选择改变字体颜色和背景颜色
标签:android style blog http color io os ar java
原文地址:http://www.cnblogs.com/daishuguang/p/4025530.html