xml – 如何将广播组添加到表格内的单选按钮?

前端之家收集整理的这篇文章主要介绍了xml – 如何将广播组添加到表格内的单选按钮?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有多个单选按钮,我想使用表布局,但也包括在一个单一的广播组.我有以下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的直接子项才能使组效果工作.
原文链接:/xml/292237.html

猜你在找的XML相关文章