为什么图标出现在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>
答案 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)