Skip to content

Instantly share code, notes, and snippets.

@Mor4eza
Last active June 18, 2016 10:34
Show Gist options
  • Save Mor4eza/5627e3d41adc18d6f83fa94c664e34a2 to your computer and use it in GitHub Desktop.
Save Mor4eza/5627e3d41adc18d6f83fa94c664e34a2 to your computer and use it in GitHub Desktop.
hide Keyboard in android
//hide keyboard after editText lost Focus in custom dialog
View view = input;
if (view != null) {
InputMethodManager imm = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment