如何在单选按钮和它的可绘制之间添加边距?

时间:2011-03-11 09:24:44

标签: android radio-button drawable margin

这是我目前的布局:

<?xml version="1.0" encoding="utf-8"?>

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/scrollview"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#F5F5DC"
    >

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

 <RadioGroup
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:orientation="vertical"
  >
  <RadioButton android:id="@+id/radio_red"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
       android:drawableLeft="@drawable/flag_dk"
       android:textColor="#000000"
       android:layout_gravity="center_horizontal"
       android:drawablePadding="10dip"
      android:text="Danish" />
  <RadioButton android:id="@+id/radio_blue"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:drawableLeft="@drawable/flag_en"
      android:layout_gravity="center_horizontal"
      android:layout_marginTop="5dip"

      android:drawablePadding="10dip"
      android:textColor="#000000"
      android:text="English" />
</RadioGroup>


</LinearLayout>
    </ScrollView>

我明白了:

enter image description here

我想在radiobutton和旗帜之间有一些空间(边距)(它是可绘制的)。它甚至可能吗?

5 个答案:

答案 0 :(得分:7)

您可以执行以下操作:

    <android.support.v7.widget.AppCompatRadioButton
        android:layout_width="match_parent"
        android:layout_height="@dimen/view_size"
        android:button="@null"
        android:drawablePadding="100dp"
        android:drawableLeft="?android:attr/listChoiceIndicatorSingle"
        android:text="label" />

enter image description here

答案 1 :(得分:3)

您在设置图像的位置,文本前面会有空格。 例如:radiobutton.setText(“”+ Text);.您将看到所需的输出。

答案 2 :(得分:3)

在我的情况下,我有自定义可绘制形状,添加android:paddingDrwable属性不起作用,但添加android:paddingLeft="5dp"

答案 3 :(得分:2)

我不认为可以使用android apis在图像和单选按钮之间添加空格。但是,我认为你的问题的答案是在图像中添加一些空间。

答案 4 :(得分:1)

使用相对布局而不是线性布局它给android:layout_margingleft&amp; android:layout_margingRight放弃你的收音机按钮&amp;图像也是如此。

还要给android:padding =“10dip”

尝试它肯定会起作用!!!!