List of utility methods to do KeyEvent Check
boolean | isUserDoneEditing(int actionId, KeyEvent event) Has the user finished editing some field switch (actionId) { case EditorInfo.IME_ACTION_SEARCH: case EditorInfo.IME_ACTION_DONE: return true; if (event != null) { int eventAction = event.getAction(); int eventKeyCode = event.getKeyCode(); ... |