创建单选按钮
<RadioGroup
android:id="@+id/genderGroup"
android:layout_width="vrap_content"
android:layout_height="vrap_content"
android:orientation="vertical"//纵向排列
>
<RadioButton
android:id="@+id/femaleButton"
android:layout_width="vrap_content"
android:layout_height="vrap_content"
android:text="@string/female"
/>
<RadioButton
android:id="@+id/femaleButton"
android:layout_width="vrap_content"
android:layout_height="vrap_content"
android:text="@string/male"
/>
</RadioGroup>
<CheckBox
android:id="@+id/swim"
android:layout_width="vrap_content"
android:layout_height="vrap_content"
android:text="@string/swim"
/>
<CheckBox
android:id="@+id/run"
android:layout_width="vrap_content"
android:layout_height="vrap_content"
android:text="@string/run"
/>
<CheckBox
android:id="@+id/read"
android:layout_width="vrap_content"
android:layout_height="vrap_content"
android:text="@string/read"
/>