Skip to content

Instantly share code, notes, and snippets.

@nasrabadiAM
Created February 18, 2018 16:40
Show Gist options
  • Save nasrabadiAM/16d3cd415e0aa01bf3957feb4cfe6aac to your computer and use it in GitHub Desktop.
Save nasrabadiAM/16d3cd415e0aa01bf3957feb4cfe6aac to your computer and use it in GitHub Desktop.
close software keyboard - android
View view = activity.getCurrentFocus();
if (view != null) {
InputMethodManager inputMethodManager = (InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(view.getWindowToken(), 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment