Skip to content

Instantly share code, notes, and snippets.

@CapTen101
Created February 19, 2021 19:47
Show Gist options
  • Save CapTen101/ee38ac0fe2223a53c258fab1b946d0ea to your computer and use it in GitHub Desktop.
Save CapTen101/ee38ac0fe2223a53c258fab1b946d0ea to your computer and use it in GitHub Desktop.
This method will hide the input keyboard in Android
public static void hideKeyboard(Context context, View view) {
InputMethodManager imm = (InputMethodManager) context.getSystemService(Activity.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