radiobutton怎么一行放两个,radiobutton可以选两个
android radiogroup 一行中放2个radiobutton 怎么设置xml
如果你只有两个,可以改android:orientation="horizontal"就行了
多的话你可以在里面嵌套线形布局来控制呀。
比如:
RadioGroup
android:id="@+id/RG"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:checkedButton="@+id/b1"
android:orientation="vertical"
LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
RadioButton
android:id="@+id/b1"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="1" /
RadioButton
android:id="@+id/b2"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="2" /
/LinearLayout
LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
RadioButton
android:id="@+id/b3"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="3" /
RadioButton
android:id="@+id/b4"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="4" /
/LinearLayout
/RadioGroup

安卓相对布局中radioGroup 中的2个radioButton控件如何并排放? 强行拉开后代码就从Group中分离
RadioGroup
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"/
最后一行代码,控制子控件的排列方向。
android 中,有谁知道4个radiobutton怎么以一行两列的格式来显示吗?
RadioGroup 是继承?LinearLayout
RadioButton一般放在RadioGroup里进行控制。
布局可以参考下面,具体check事件没有实验。
RadioGroup
????android:layout_width="wrap_content"
????android:layout_height="wrap_content"
????android:orientation="vertical"
????RadioGroup
????????android:layout_width="wrap_content"
????????android:layout_height="wrap_content"
????????android:orientation="horizontal"
????????RadioButton
????????????android:layout_width="wrap_content"
????????????android:layout_height="wrap_content"?/
????????RadioButton
????????????android:layout_width="wrap_content"
????????????android:layout_height="wrap_content"?/
????/RadioGroup
????RadioGroup
????????android:layout_width="wrap_content"
????????android:layout_height="wrap_content"
????????android:orientation="horizontal"
????????RadioButton
????????????android:layout_width="wrap_content"
????????????android:layout_height="wrap_content"?/
????????RadioButton
????????????android:layout_width="wrap_content"
????????????android:layout_height="wrap_content"?/
????/RadioGroup
/RadioGroup