RadioButton

来源:互联网 发布:ubuntu 15 安装教程 编辑:程序博客网 时间:2024/05/16 05:09
1.单选按钮

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>


0 0