How to add a picture in widget.TextInputLayout

905 Views Asked by At

Please tell me, how to add a picture in widget.TextInputLayout? Here in this place... enter image description here

1

There are 1 best solutions below

1
On BEST ANSWER

There is no way to do that built into TextInputLayout. That space is reserved for the character counter, as seen in this image:

enter image description here

This counter can be enabled with the attributes app:counterEnabled and app:counterMaxLength, but these are text, not images.

You could perhaps wrap your TextInputLayout with a FrameLayout and add an ImageView with android:layout_gravity="bottom|end".