Guest User

Untitled

a guest
May 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public void closeKeyboard() {
  2. View view = this.getCurrentFocus();
  3. if (view != null) {
  4. InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
  5. imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
  6. }
  7. }
Add Comment
Please, Sign In to add comment