xml – 如何将广播组添加到表格内的单选按钮?
发布时间:2020-12-16 07:42:43 所属栏目:百科 来源:网络整理
导读:我有多个单选按钮,我想使用表布局,但也包括在一个单一的广播组.我有以下xml布局: RadioGroup android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" android:id="@+id/Group1" TableLayout android:id=
我有多个单选按钮,我想使用表布局,但也包括在一个单一的广播组.我有以下xml布局:
<RadioGroup android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" android:id="@+id/Group1"> <TableLayout android:id="@+id/RadioButtons" android:layout_width="wrap_content" android:layout_height="wrap_content"> <TableRow> <RadioButton android:id="@+id/rad1" android:text="RButton1" android:layout_width="105px" android:layout_height="wrap_content" android:textSize="13px"></RadioButton> <RadioButton android:id="@+id/rad2" android:text="RButton2" android:layout_width="105px" android:textSize="13px" android:layout_height="wrap_content"></RadioButton> <RadioButton android:id="@+id/rad3" android:text="RButton3" android:layout_width="105px" android:textSize="13px" android:layout_height="wrap_content"></RadioButton> </TableRow> </TableLayout> </RadioGroup> 但不幸的是,桌子内的单选按钮似乎忽略了他们在RadioGroup标签内的事实,因此,您可以选择多个单选按钮.我注意到,通过删除桌子,只是有单选按钮,它的工作正常.我该如何克服呢?是否简单地将表格内的无线电组声明为外部?感谢任何帮助.
RadioButton小部件必须是RadioGroup的直接子项才能使组效果工作.
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |