Can you help me on how to disable searchview when button is pressed? I\'m trying this code:
searchView.setEnabled(false); searchView.setFocu
You can use:
searchView.clearFocus();
and if you want to hide it using:
searchView.setVisibility(View.GONE);