Skip to content

Instantly share code, notes, and snippets.

@TaylanUB
Created June 6, 2019 15:57
Show Gist options
  • Save TaylanUB/3854c1b900ccec022b2243a8aff95307 to your computer and use it in GitHub Desktop.
Save TaylanUB/3854c1b900ccec022b2243a8aff95307 to your computer and use it in GitHub Desktop.
public static void hideKeyboard(Activity activity) {
InputMethodManager imm = getIMM(activity);
IBinder windowToken = activity.getWindow().getDecorView().getRootView().getWindowToken();
imm.hideSoftInputFromWindow(windowToken, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment