1.单选按钮
2.多个RadioButton必须放在RadioGroup里面,RadioGroup可以横向也可以竖向:orientation
3.RadioButton必须设置id,否则会可以多选。
2.多个RadioButton必须放在RadioGroup里面,RadioGroup可以横向也可以竖向:orientation
3.RadioButton必须设置id,否则会可以多选。
xml布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<RadioButton
android:id="@+id/tb_male"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="男" />
<RadioButton
android:id="@+id/tb_female"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="女" />
</RadioGroup>
</RelativeLayout>
1万+

被折叠的 条评论
为什么被折叠?



