Skip to content

Instantly share code, notes, and snippets.

View Mor4eza's full-sized avatar
😎
looking for a new opportunity.

Morteza Gharedaghi Mor4eza

😎
looking for a new opportunity.
View GitHub Profile
@Mor4eza
Mor4eza / Dialog.java
Last active June 18, 2016 10:34
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);
}