How to remove or change the search view icon inside the edittext? I am using the Appcompat libra
Simplest way is
In case you are using AppCompat use
AppCompat
app:iconifiedByDefault="false" app:searchIcon="@null"
Else use android in place of app in above code as
android
app
android:iconifiedByDefault="false" android:searchIcon="@null"