I want to add a search icon in the EditText hint. Actually, I am using EditText same as SearchView for that I want to set a search icon in between the EditText which disappear when user write something into the EditText same as hint text disappear
Please check the below screenshot:
In xml add to your EditText:
android:drwableLeft="@drawable/imageSearch"
That puts an image in your EditText, but its still there after you type text in. To make image disappears, just override in your activity:
That should do the trick