Используя EditText, у вас есть эта опция:
Una opción usando el EditText
es Definiendo el Icono, y usando la propiedad android:hint
para el texto:
определяя значок с помощью android:drawableLeft
и подсказку с помощью android:hint
![enter image description here](https://i.stack.imgur.com/kHieE.png)
Но правильный способ - использование SearchView виджет:
<SearchView
android:id="@+id/searchProduct"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
![enter image description here](https://i.stack.imgur.com/EgLEG.gif)