今天编写代码如下:发现2个radiobutton居然都可以选中。这我真的晕了。。后来偶然发现原来是没有设置Id的原因。。。
<RadioGroup
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<RadioButton
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:checked="true"
android:text="已下载(2)" />
<RadioButton
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="下载中(1)" />
</RadioGroup>
RadioButton一定要设置id,会导致radiobutton不互斥,后果很严重。。,布布扣,bubuko.com
RadioButton一定要设置id,会导致radiobutton不互斥,后果很严重。。
原文地址:http://blog.csdn.net/leehu1987/article/details/26380915