我有2个单选按钮,我想把它们放在一起.现在他们就像
Radio button 1
Radio button 2
Run Code Online (Sandbox Code Playgroud)
我想成功
Radio button 1 Radio button 2
Run Code Online (Sandbox Code Playgroud)
这是我的单选按钮代码,有什么帮助吗?
<RadioGroup
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RadioButton android:id="@+id/radio_male"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Male"
android:layout_below="@id/gender"/>
<RadioButton android:id="@+id/radio_female"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Female" />
</RadioGroup>
Run Code Online (Sandbox Code Playgroud)