需要有关单选按钮的帮助
我的 xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="0dp"
android:minWidth="0dp"
android:text="Hello" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="0dp"
android:text="World" />
</RadioGroup>
</LinearLayout>
在圆形和线性布局的左侧之间的左侧有这个空间。我该如何摆脱那个空间?在 TextViews 中将 minWidth 设置为 0dp 可以解决问题,但我无法为 RadioButtons 做到这一点。有任何想法吗