安卓---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(复选按钮)的主要内容,如果未能解决你的问题,请参考以下文章