[Solved] How to hide Android Soft Keyboard? [duplicate]
[ad_1] 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 [ad_2] solved How to hide Android Soft Keyboard? [duplicate]