作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我的项目中有一个 radio 组,如何在开始前取消选中所有,如果选中另一个,如何取消选中一个。当我点击另一个按钮时,它并没有取消选中另一个按钮,我不知道如何处理它我什至无法获得这个按钮的索引我的意思是我可以得到文本框的值我得到了代码教程方面,但遗憾的是它没有清楚地解释其代码
代码是
<RadioGroup
android:id="@+id/radioGender"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/genderMale"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Male"
android:checked="true" />
<RadioButton
android:id="@+id/genderFemale"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Female" />
</RadioGroup>
最佳答案
将单选按钮添加到单选组
<RadioGroup
android:id="@+id/radioGroup1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="left"
android:orientation="horizontal"
>
<RadioButton
android:id="@+id/radio1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:checked="true"
android:text="One" />
<RadioButton
android:id="@+id/radio2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Two" />
</RadioGroup>
关于android - 如果选中一个单选按钮,则应取消选中另一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22035924/
我是一名优秀的程序员,十分优秀!