How to disable searchview?

android, searchview

Solution

You can use:

searchView.clearFocus();

and if you want to hide it using:

searchView.setVisibility(View.GONE);

Problem

Can you help me on how to disable searchview when button is pressed? I'm trying this code: ``` searchView.setEnabled(false); searchView.setFocusableInTouchMode(false); searchView.clearFocus(); ``` but it seems not working. I can still input text in searchview. Thanks.. :))

Original source