安卓---RedioButton(单选按钮)CheckBox(复选按钮)

Posted 博了个客。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓---RedioButton(单选按钮)CheckBox(复选按钮)相关的知识,希望对你有一定的参考价值。

<RadioGroup
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:checkedButton="@+id/rb2"
>
<RadioButton
android:id="@+id/rb1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="西瓜"
android:textColor="#ff0000"
>
</RadioButton>
<RadioButton
android:id="@+id/rb2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="香蕉"
android:textColor="#ff0000"
>
</RadioButton>
</RadioGroup>

<CheckBox
android:checked="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="荔枝"
></CheckBox>
<CheckBox
android:checked="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="车厘子"
>

</CheckBox>


































以上是关于安卓---RedioButton(单选按钮)CheckBox(复选按钮)的主要内容,如果未能解决你的问题,请参考以下文章

安卓常用控件--单选按钮和复选框

jquery判断单选按钮radio是否选中的方法

2 不同组框中的单选按钮

如何增加单选按钮上的计数器被选中?安卓[关闭]

安卓讲课笔记5.4 单选按钮和复选框

安卓案例:利用单选按钮实现底部导航栏