我可以RadioButton
通过以下方式获得一个组吗?
x x x
x x x
x x x
现在我将所有内容集中在一条线上 - 垂直或水平:
x x x x x x or x
x
x
x
x
x
在水平状态下,它会转到下一行,但它不在固定位置。
下面的代码只是为了满足发布的标准。
<RadioGroup
android:id="@+id/calradioGroup4.1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/textView1"
android:orientation="vertical" >
<RadioButton
android:id="@+id/radioNONE"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="None" />
<RadioButton
android:id="@+id/radio0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="0-5" />
<RadioButton
android:id="@+id/radio2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="11-15" />