Skip to content

Instantly share code, notes, and snippets.

@akuafif
Created December 10, 2015 21:04
Show Gist options
  • Save akuafif/8b1a3d615613999df225 to your computer and use it in GitHub Desktop.
Save akuafif/8b1a3d615613999df225 to your computer and use it in GitHub Desktop.
[Java/Android] Hide Android Keyboard
private void hideKeyboard(){
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(edittext.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment