Skip to content

Instantly share code, notes, and snippets.

@zmdominguez
Created August 9, 2015 10:55
Show Gist options
  • Save zmdominguez/4a30ba7788b70f07917e to your computer and use it in GitHub Desktop.
Save zmdominguez/4a30ba7788b70f07917e to your computer and use it in GitHub Desktop.
public static void hideSoftKeyboard(Context context, View view) {
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