Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I programatically hide or suppress the search suggestions list?

How can I programatically hide the list of suggestions that pops up up below the SearchView?

There are times when I'd like the SearchView to not be inconified and to not have focus. I can do this both using the setIconified(false) and the clearFocus() methods respectively, but if the SearchView has any text in it, it will display the list of a search suggestions and I need to hide/suppress that.

like image 976
Mridang Agarwalla Avatar asked Sep 06 '25 03:09

Mridang Agarwalla


1 Answers

searchView.setSuggestionsAdapter(null); did that trick for me.

like image 179
user3468226 Avatar answered Sep 08 '25 01:09

user3468226