首页 > 解决方案 > android edit text padding "only text not left drawable image"

问题描述

my problem's photo enter image description here

I wanna add padding to edit text but i want only text padding. Can you help me?

enter image description here

标签: javaandroidxmlpadding

解决方案


参考这个:-

<TextView
    android:id="@+id/textView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="asdasasa@gmail.com"
    android:padding="10dp"
    android:drawableLeft="@drawable/icon_drop"
    android:drawablePadding="5dp" />

对于可绘制的图像填充

安卓:drawablePadding="5dp"

对于 TextView 填充

机器人:填充=“5dp”


推荐阅读