How to dismiss keyboard in Android SearchView?

后端 未结 15 1377
萌比男神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条回答
  •  -上瘾入骨i
    2020-12-05 06:58

     @Override
        public void onResume() {
            super.onResume();
            searchView.clearFocus();
        }
    

    I tried all the answers above but none worked, clearing focus onResume worked for me

提交回复
热议问题