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
@Override public void onResume() { super.onResume(); searchView.clearFocus(); }
I tried all the answers above but none worked, clearing focus onResume worked for me