How to remove white underline in a SearchView widget in Toolbar Android

If you are using SearchView then use for API below 21

android:queryBackground="@android:color/transparent"

you can use below code if you are using API 21 or more

app:queryBackground="@android:color/transparent"

Leave a Comment