1. 程式人生 > >安卓---RedioButton(單選按鈕)、CheckBox(復選按鈕)

安卓---RedioButton(單選按鈕)、CheckBox(復選按鈕)

radio eight color ont parent androi android 安卓 radi

<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(復選按鈕)