RadioButton控件
程序员文章站
2022-05-30 18:30:54
RadioButton 单选按钮 常用属性: text 文本 checked=“true” 默认选中 一组互斥的单选按钮要放在RadioGroup中。RadioGroup常用属性: orientation 该组单选按钮的排列方向。 示例: ......
radiobutton 单选按钮
常用属性:
text 文本
checked=“true” 默认选中
一组互斥的单选按钮要放在radiogroup中。radiogroup常用属性:
orientation 该组单选按钮的排列方向。
示例:
<radiogroup android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/gender" android:orientation="horizontal"> <radiobutton android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/male" android:text="男"/> <radiobutton android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/female" android:text="女"/> </radiogroup>