[Solved] How to hide Android Soft Keyboard? [duplicate]
You may use the InputMethodManager class like this: InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow( yourEditText.getWindowToken(),InputMethodManager.RESULT_UNCHANGED_SHOWN); 0 solved How to hide Android Soft Keyboard? [duplicate]