为什么drawableLeft出现在EditText之外?

时间:2016-08-24 11:05:32

标签: android android-edittext

Image

为什么图标出现在EditText / divider之前?

这是我的代码:

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/fragment_sign_in"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp"
tools:context="com.*.*.*.SignInFragment">

   <!-- This is the EditText -->
  <com.rey.material.widget.EditText 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:drawableStart="@drawable/email"
    android:drawableLeft="@drawable/email"
    android:padding="0dp"
    android:hint="test"
    app:et_dividerHeight="1dp" />

</android.support.constraint.ConstraintLayout>

2 个答案:

答案 0 :(得分:2)

您可以使用

 android:drawablePadding="5dp" // Add your own values

drawables和文本之间的填充。

  

必须是维值,这是附加的浮点数   有一个单位,如&#34; 14.5sp&#34;。可用单位为:px(像素),dp   (与密度无关的像素),sp(基于优选的缩放像素)   字体大小),单位为(英寸),毫米(毫米)。

您可以尝试使用

 android:drawableLeft="2dp" 
 android:paddingLeft="3dp"
  

要绘制在文本左侧的drawable。

答案 1 :(得分:0)

enter image description here

我在上面的EditText中使用了以下代码:

indexPath