1

I'd like to get rid of the search icon in SearchView

Search icon in <code>SearchView</code>

I've tried:

  • setIconified(false);

  • Adding <item name="searchHintIcon">@null</item> to the SearchView style.

And none of these worked, any clue?

Edric
  • 24,639
  • 13
  • 81
  • 91

1 Answers1

0

It would be good to see your code in order to help but adding these to your XML will help if you are using android.widget.SearchView in a recent API level (i.e. 21 or higher):

android:iconifiedByDefault="false"
android:searchIcon="@null"
android:searchHintIcon="@null"
Mike Poole
  • 1,958
  • 5
  • 29
  • 41