Skip to content

Instantly share code, notes, and snippets.

@dmitriy-chernysh
Created May 8, 2018 13:38
Show Gist options
  • Save dmitriy-chernysh/77d70d66af52b65f61fbb81f9ff1a1f0 to your computer and use it in GitHub Desktop.
Save dmitriy-chernysh/77d70d66af52b65f61fbb81f9ff1a1f0 to your computer and use it in GitHub Desktop.
Android. Hide keyboard
@Override
public void hideKeyboard() {
Activity activity = getActivity();
if (activity == null) return;
View view = activity.getCurrentFocus();
if (view != null) {
InputMethodManager imm = (InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE);
if (imm != null) imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment