码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2014-05-21 17:12:25      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:radiobutton一定要设置id

今天编写代码如下:发现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不互斥,后果很严重。。

标签:radiobutton一定要设置id

原文地址:http://blog.csdn.net/leehu1987/article/details/26380915

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!