Skip to content

Instantly share code, notes, and snippets.

@yccheok
Created December 3, 2017 22:26
Show Gist options
  • Select an option

  • Save yccheok/cf4da9f2e0fa1b1d329d3f72d727696b to your computer and use it in GitHub Desktop.

Select an option

Save yccheok/cf4da9f2e0fa1b1d329d3f72d727696b to your computer and use it in GitHub Desktop.
public static void hideKeyboard(Fragment fragment) {
InputMethodManager imm = (InputMethodManager) fragment.getContext().getSystemService(Activity.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(fragment.getView().getRootView().getWindowToken(), 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment