我需要修改哪个元素才能在drawable及其封闭元素之间添加填充?

时间:2014-05-21 17:53:50

标签: android-linearlayout android-drawable xml-drawable android-radiogroup android-radiobutton

根据我学到的here,我能够添加一些"围栏"围绕相关小部件的分组:

enter image description here

但是,正如您所看到的,第二个/更低的框占据了第一个单选按钮文本。我需要修改哪个元素才能添加一些空间?我是否需要在盒子中添加一些东西,它们位于drawable文件夹中,并且定义如下:

<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
    >
<stroke
    android:width="1dp"
    android:color="#f000"
    />
</shape>

...或内部的LinearLayout,或者有问题的单选按钮(或其封闭的RadioButtonGroup小部件)?这是xml:

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/box"
    android:orientation="vertical">

. . .

    <RadioGroup
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <RadioButton
            android:id="@+id/radbtnBar"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/using_labels_black" />

. . .

    </RadioGroup>
</LinearLayout>

1 个答案:

答案 0 :(得分:1)

是的,你可以添加一些填充,这将导致添加som 内部空间

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle"
    >
    <padding
        android:left="4dp"
        android:top="4dp"
        android:right="4dp"
        android:bottom="4dp"
    />
    <stroke
        android:width="1dp"
        android:color="#f000"
    />
</shape>

随意尝试4dp以外的其他值(顶部/底部,左侧/右侧甚至不同)