2个水平线中的一个无线电组中的单选按钮

时间:2015-06-19 20:54:53

标签: android android-layout radio-button radio-group

enter image description here

我尝试在2行中的一个Radio组中设置4个单选按钮,但问题是当我采用水平方向的线性布局时,无线电组功能不起作用。所有单选按钮选择。一次只能选择一个按钮。

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" >

                <RadioButton
                    android:id="@+id/r1"

                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="@string/lbl1" />

                <RadioButton
                    android:id="@+id/r2"

                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="@string/lbl2" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" >

                <RadioButton
                    android:id="@+id/r3"

                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="@string/lbl3" />

                <RadioButton
                    android:id="@+id/r4"

                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="@string/lbl4" />
            </LinearLayout>
        </RadioGroup>

3 个答案:

答案 0 :(得分:2)

RadioGroup目前不允许嵌套布局。 (有关详细信息,请参阅AOSP问题#8952)

因此,RadioButtons必须是父RadioGroup的直接子节点。

既然如此,并注意到RadioGroup扩展了LinearLayout,我认为你不得不在一行或一列中列出所有单选按钮。

顺便说一句,没有什么可以阻止你创建自己的RadioGroup版本,它可以从像RelativeLayout这样更灵活的东西扩展。您可以从RadioGroup中的代码开始,并根据您的需要进行调整。

答案 1 :(得分:0)

要使RadioGroup具有列,只需在其中添加GridLayout并更改 android:columnCount 参数。 但是,您必须重写所有单选按钮的OnCheckedChangeListeners,因为当您将RadioButtons放在GridLayout中时,它们不再分组。

<RadioGroup

        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal">

        <GridLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:columnCount="3">

        <RadioButton
            android:id="@+id/rbtn_1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            />

        <RadioButton
            android:id="@+id/rbtn_2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            />

        .....


        </GridLayout>

    </RadioGroup>

答案 2 :(得分:-1)

我不知道你是否仍然需要另一种选择,但你可以使用这个“强制”第二行:

  1. 设置RadioGroup 水平
  2. 方向
  3. 第二次在同一“行”中的radioButtons中设置相同的 marginTop
  4. 第三个在每个(2和前进)的第一个元素上设置负 marginStart 这将标记每一行的星号,其他元素将遵循
  5. 这是一个例子:

     <RadioGroup
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:orientation="horizontal"
      android:id="@+id/Rgroup">
    
     <RadioButton
       android:id="@+id/r1"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="@string/lbl1" />
    
       <RadioButton
       android:id="@+id/r2"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="@string/lbl2" />
    
      <RadioButton
       android:id="@+id/r3"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_marginStart="-180dp"
       android:layout_marginTop="40dp" 
       android:text="@string/lbl3" />
    
      <RadioButton
       android:id="@+id/r4"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_marginStart="0dp"
       android:layout_marginTop="40dp" 
       android:text="@string/lbl4" />
    
       </RadioGroup>