我在一个 Radio Group 中有两个 RadioButton,看起来像这样。
<RadioGroup
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<RadioButton
android:id="@+id/rb_PubAsMe"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:checked="true"
android:text="Self"
android:textColor="#000000" />
<RadioButton
android:id="@+id/rb_PubAsTeam"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Team"
android:textColor="#000000" />
</RadioGroup>
默认情况下,android 向左对齐,我想让这些按钮居中。当我尝试将每个按钮的重力设置为中心时,会发生以下情况。
相同的代码,但将此行添加到每个 RadioButton
android:gravity="center"
有没有人遇到过这个问题?如何让按钮与文本一起移动到中心?
|---------(Button)Text---------|---------(Button)Text---------|