首页 > 代码库 > RadioButton一定要设置id,会导致radiobutton不互斥,后果很严重。。

RadioButton一定要设置id,会导致radiobutton不互斥,后果很严重。。

今天编写代码如下:发现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>