Android:编辑文本中图像和文本之间的空格

时间:2014-11-04 13:19:36

标签: android

正如标题所说,我想在锁定图标和文本之间留一点空间。

enter image description here

这是我目前的XML:

<EditText
         android:id="@+id/guide_payment_settings_email_et"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:layout_marginLeft="7dp"
         android:layout_marginRight="7dp"
         android:layout_marginTop="5dp"
         android:background="@drawable/border_paylpal_blue"
         android:drawableLeft="@drawable/blue_rounded_lock"
         android:hint="name@example.com"
         android:inputType="textEmailAddress"
         android:singleLine="true"
         android:textColor="#4d4e5b"
         android:textSize="12sp" />

1 个答案:

答案 0 :(得分:13)

您必须在xml上添加以下行: -

android:drawablePadding="10dp"

上面的行在drawable之后给出填充。