- RadioButton是圆形单选框
2. RadioGroup是个可以容纳多个RadioButton的容器
3. 在RadioGroup中的RadioButton控件可以有多个,但同时有且仅有一个可以被选中
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal">
<RadioButton
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="button1"/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button2"/>
</RadioGroup>

3845

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



