I would like to put the image in the EditText field as shown. How can I do that? A layered list with an image on one layer and a lot of additions on the left side of the EditText at another level?
To set the image to editText.
<EditText ...... android:drawableLeft="@drawable/image" />
You can set it left, right, top, bottom.
Just use
setCompoundDrawables(Drawable left, Drawable top, Drawable right, Drawable bottom)
or
setCompoundDrawablesWithIntrinsicBounds(Drawable left, Drawable top, Drawable right, Drawable bottom)
methods.
Greetings