RadioGroup与相对android布局内的单选按钮

时间:2010-10-17 14:25:07

标签: android user-interface layout radio-button

我想创建一个如下所示的简单布局:

(o) Radio button A
(o) Radio button B [textedit]
    [x] checkbox

为此,我创建了以下layout.xml:

<RadioGroup 
    android:layout_above="@+id/RadioButton_Count" 
    android:id="@+id/RadioGroup01" 
    android:layout_height="wrap_content" 
    android:layout_width="fill_parent">
    <RadioButton 
        android:layout_height="wrap_content" 
        android:id="@+id/RadioButton_A" 
        android:text="Play forever" 
        android:checked="true" 
        android:layout_width="fill_parent" 
        android:textSize="20sp">
    </RadioButton>
    <RelativeLayout 
        android:id="@+id/RelativeLayout01" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content">
        <RadioButton 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:id="@+id/RadioButton_B" 
            android:text="Count:" 
            android:textSize="20sp">
        </RadioButton>
        <EditText 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:id="@+id/EditText_NumCount" 
            android:inputType="number" 
            android:layout_toRightOf="@+id/RadioButton_B" 
            android:width="70sp" >
        </EditText>
        <CheckBox 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:id="@+id/CheckBox_StopCount" 
            android:text="Stop" 
            android:layout_below="@+id/RadioButton_B" 
            android:textSize="18sp">
        </CheckBox>
    </RelativeLayout>
</RadioGroup>

它看起来是正确的,但问题是无线电按钮彼此之间没有连接,我的意思是它们可以在同一时刻同时开启。 我认为这是因为即使他们挂在同一个第二个是在另一个布局内: 有没有人有一些想法我怎么能做这种布局(主要是[textedit]恰到好处的RadioButton B),也开始工作radiobuttons? 非常感谢你

2 个答案:

答案 0 :(得分:6)

你根本做不到。我也试图做类似的事情而陷入困境。

“RadioButtons必须是RadioGroup的直接子女。” https://code.google.com/p/android/issues/detail?id=1214

答案 1 :(得分:0)

首先要尝试的是在关闭最后一个RadioButton后关闭你的RadioGroup,而不是在结束时关闭你的RadioGroup。更好的解决方案是使用RelativeLayout作为整体容器。接下来添加您的RadioGroup和两个按钮并关闭该组。添加相对于布局其余部分的其他元素。