RadioGroup里面的一个面板?

时间:2012-09-03 08:47:13

标签: android radio-button radio-group

如何在面板内显示RadioGroup?我需要显示如下内容:

enter image description here

我按代码创建了RadioGroupRadioButtons,但我不知道如何在图片中显示面板。

有什么想法吗?

2 个答案:

答案 0 :(得分:3)

您不需要任何“面板”,只需为background设置RadioGroup

答案 1 :(得分:0)

将此代码用于相对布局

<RadioGroup
            android:id="@+id/ratingRadioGroup"
            android:layout_width="wrap_content"
           android:layout_height="40dp"
            android:layout_alignParentLeft="true"
            android:layout_below="@+id/btnDob"
            android:layout_marginLeft="50pt"
            android:orientation="horizontal"
             android:background="#F9E60E" >

            <RadioButton
                android:id="@+id/e"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignRight="@+id/checkBox1"
                android:layout_alignTop="@+id/ratingRadioGroup"
                android:checked="true"
                android:paddingRight="10pt"
                android:text="M" />

            <RadioButton
                android:id="@+id/radioFemale"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="10"
                android:text="F" />
        </RadioGroup>