我有多个单选按钮,我想使用表布局,但也包括在一个单一的广播组.我有以下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标签内的事实,因此,您可以选择多个单选按钮.我注意到,通过删除桌子,只是有单选按钮,它的工作正常.我该如何克服呢?是否简单地将表格内的无线电组声明为外部?感谢任何帮助.