When a user clicks the search button on the device, Android displays a quick search bar. How to disable quick search bar?
To completely disable the quick search bar, override the onSearchRequested() method and unconditionally return true.
onSearchRequested()
override onKeyDown in your activity:
@Override public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_SEARCH) { return true; } else return super.onKeyDown(keyCode, event); }