Guest User

Untitled

a guest
Jan 18th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. EditText.requestFocus();
  2.  
  3. private InputMethodManager mInputMethodManager = (InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
  4. EditText.clearFocus();
  5. mInputMethodManager.hideSoftInputFromWindow(EditText.getWindowToken(), 0);
  6.  
  7. EditText.requestFocus();
  8. mInputMethodManager.showSoftInput(EditText, 0);
Add Comment
Please, Sign In to add comment