如何在 android 中的单选按钮之间调整 space

How to adjust space between radio button in android

在我的 android 应用程序中,使用单选按钮 select 屏幕视图。我希望单选按钮水平对齐。我尝试了如下所示的布局 xml。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Views"
    android:paddingLeft="10dp"
    android:textSize="20sp"
    />

<RadioGroup
    android:id="@+id/radioView"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:measureWithLargestChild="true"
    android:layout_height="wrap_content" >

        <RadioButton
            android:id="@+id/radioViewSingle"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:drawableRight="@drawable/single"
            android:layout_weight="1"
            android:checked="true" />

        <RadioButton
            android:id="@+id/radioView2by2"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:drawableRight="@drawable/view2x2" />

        <RadioButton
            android:id="@+id/radioView3by3"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:drawableRight="@drawable/view3x3" />

        <RadioButton
            android:id="@+id/radioView4by4"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:drawableRight="@drawable/view4x4" />
</RadioGroup>
</LinearLayout>

使用以上 xml 代码

获得的输出

但我期望低于输出

提前致谢

不使用 android:drawableRight,而是使用 android:drawableLeft。

我刚刚对此进行了测试,它按预期工作

您可以将每个 RadioButton 放在一个布局中,并给出所有 layout_width="0dp" 和 layout_weight="1",如下所示:

<RadioGroup
    android:id="@+id/radioView"
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:measureWithLargestChild="true"
    android:orientation="horizontal">

    <LinearLayout
        android:gravity="left"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_width="0dp">

        <RadioButton
            android:checked="true"
            android:drawableRight="@drawable/single"
            android:id="@+id/radioViewSingle"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content" />
    </LinearLayout>

    <LinearLayout
        android:gravity="left"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_width="0dp">

        <RadioButton
            android:drawableRight="@drawable/view2x2"
            android:id="@+id/radioView2by2"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content" />
    </LinearLayout>

    <LinearLayout
        android:gravity="left"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_width="0dp">

        <RadioButton
            android:drawableRight="@drawable/view3x3"
            android:id="@+id/radioView3by3"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content" />
    </LinearLayout>

    <LinearLayout
        android:gravity="left"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_width="0dp">

        <RadioButton
            android:drawableRight="@drawable/view4x4"
            android:id="@+id/radioView4by4"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content" />
    </LinearLayout>
</RadioGroup>

为所有 RadioButtons 删除 android:layout_weight="1" 并设置 android:layout_width="0dp"android:layout_width="wrap_content"

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="10dp"
        android:text="Views"
        android:textSize="20sp" />

    <RadioGroup
        android:id="@+id/radioView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:measureWithLargestChild="true"
        android:orientation="horizontal">

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="left">

            <RadioButton
                android:id="@+id/radioViewSingle"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:checked="true"
                android:drawableRight="@android:drawable/ic_menu_search" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="left">

            <RadioButton
                android:id="@+id/radioView2by2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="25dp"
                android:drawableRight="@android:drawable/ic_menu_camera" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="left">

            <RadioButton
                android:id="@+id/radioView3by3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:drawableRight="@android:drawable/ic_menu_always_landscape_portrait" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="left">

            <RadioButton
                android:id="@+id/radioView4by4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="25dp"
                android:drawableRight="@android:drawable/ic_menu_call" />
        </LinearLayout>
    </RadioGroup>
</LinearLayout>