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

【安卓---RedioButton(单选按钮)CheckBox(复选按钮)】博观而约取,厚积而薄发。这篇文章主要讲述安卓---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>



































    推荐阅读