0

如何在面板内显示 RadioGroup?我需要显示这样的东西:

在此处输入图像描述

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

任何的想法 ?

4

2 回答 2

3

您不需要任何“面板”,只需background为您的RadioGroup.

于 2012-09-03T08:50:25.923 回答
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>
于 2012-09-03T08:50:30.160 回答