How to dismiss keyboard in Android SearchView?

后端 未结 15 1400
萌比男神i
萌比男神i 2020-12-05 06:27

I have a searchView in the ActionBar. I want to dismiss the keyboard when the user is done with input. I have the following queryTextListener on the searchView



        
15条回答
  •  心在旅途
    2020-12-05 06:52

    Simple, straight to the point and clean:

      @Override
      public boolean onQueryTextSubmit(String query) {
          // your search methods
          searchView.clearFocus();
          return true;
      }
    

提交回复
热议问题