How to completely collapse a SearchView after an item selected?

后端 未结 10 1936
萌比男神i
萌比男神i 2021-01-31 17:35

I\'ve been struggling with this for weeks.. I have a global search that offers up a custom listview with suggestions as a user types. When a user selects an option, I want the s

10条回答
  •  长情又很酷
    2021-01-31 17:36

    If you're using Toolbar (android.support.v7.widget.Toolbar) and the corresponding SearchView (android.support.v7.widget.SearchView) with it, this works:

        searchView.setQuery("", false);
        searchView.clearFocus();
        searchView.setIconified(true);
    

提交回复
热议问题