Skip to content

Instantly share code, notes, and snippets.

@ramseth001
Created October 7, 2019 01:02
Show Gist options
  • Save ramseth001/8fccf313c2b9a987377a58542e1221d5 to your computer and use it in GitHub Desktop.
Save ramseth001/8fccf313c2b9a987377a58542e1221d5 to your computer and use it in GitHub Desktop.
Disable keyboard on click outside edittext
@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
if (getCurrentFocus() != null) {
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
if (imm != null) {
imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0);
}
}
return super.dispatchTouchEvent(ev);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment