Skip to content

Instantly share code, notes, and snippets.

@smyykb
Created November 17, 2017 12:02
Show Gist options
  • Save smyykb/33d7a750529d0a596be1056a379cd213 to your computer and use it in GitHub Desktop.
Save smyykb/33d7a750529d0a596be1056a379cd213 to your computer and use it in GitHub Desktop.
Just for self-references
/**
* Utility method for showing keyboard.
*
* @param view which has keyboard focus
*/
public static void showKeyboard(View view) {
final InputMethodManager inputMethodManager = (InputMethodManager)
view.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
inputMethodManager.showSoftInput(view, InputMethodManager.SHOW_IMPLICIT);
}
/**
* Utility method for hiding keyboard.
*
* @param view which has keyboard focus
*/
public static void hideKeyboard(View view) {
final InputMethodManager inputMethodManager = (InputMethodManager)
view.getContext().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