如何在面板内显示 RadioGroup?我需要显示这样的东西:
我创建了RadioGroup
和RadioButtons
by 代码,但我不知道如何在图像中显示面板。
任何的想法 ?
如何在面板内显示 RadioGroup?我需要显示这样的东西:
我创建了RadioGroup
和RadioButtons
by 代码,但我不知道如何在图像中显示面板。
任何的想法 ?
您不需要任何“面板”,只需background
为您的RadioGroup
.
将此代码尝试到相对布局中
<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>