Android:单选按钮中的按钮和左边框

时间:2019-02-01 06:38:44

标签: android android-radiobutton android-radiogroup

enter image description here

有没有办法在Radio Circle和左边框之间留出空格。我尝试提供空白,但是它不起作用,我也尝试提供填充,但是它增加了文本和按钮之间的空间。

无线电xml代码:

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <RadioGroup
            android:id="@+id/radioGroup1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <RadioButton
                android:id="@+id/chkIos"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginStart="@dimen/_12sdp"
                android:layout_marginLeft="@dimen/_12sdp"
                android:layout_marginEnd="@dimen/_5sdp"
                android:layout_marginRight="@dimen/_5sdp"
                android:layout_weight="1"
                android:background="@drawable/option_layout"
                android:button="@drawable/custom_checkbox"
                android:gravity="center"
                android:padding="@dimen/_12sdp"
                android:text="1211asd3"
                android:textColor="@color/black" />


            <RadioButton
                android:id="@+id/radio1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/option_layout"
                android:button="@drawable/custom_checkbox"
                android:layout_marginStart="@dimen/_42sdp"
                android:padding="@dimen/_12sdp"
                android:text="RadioButton2"
                android:layout_marginLeft="@dimen/_42sdp" />


            <!--<TextView-->
            <!--android:layout_weight="1"-->
            <!--android:layout_width="match_parent"-->
            <!--android:layout_height="wrap_content" />-->
        </RadioGroup>
    </LinearLayout>

有人知道怎么做吗?

1 个答案:

答案 0 :(得分:0)

与其将图像直接粘贴到可绘制的文件夹中,不如尝试从

导入它们
File -> new -> Image Asset

它将显示以下对话框,您需要在其中选择图标类型作为操作栏和标签图标,然后使用填充控件添加填充。默认图标中包含一些填充,请尝试添加至少5%的填充,并在需要更多空间时更改值

enter image description here