如何在面板内显示RadioGroup?我需要显示如下内容:
我按代码创建了RadioGroup
和RadioButtons
,但我不知道如何在图片中显示面板。
有什么想法吗?
答案 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>