am 310bb2c7: Merge "[HW1] Fix some bugs with event handling"
* commit '310bb2c76f0a7a5cf97b47d029096d6296cdfd0b': [HW1] Fix some bugs with event handlingmain
commit
3c31a060b1
|
@ -225,6 +225,13 @@ public class Event {
|
|||
null /* suggestedWordInfo */, FLAG_NONE, null);
|
||||
}
|
||||
|
||||
// Returns whether this is a function key like backspace, ctrl, settings... as opposed to keys
|
||||
// that result in input like letters or space.
|
||||
public boolean isFunctionalKeyEvent() {
|
||||
// This logic may need to be refined in the future
|
||||
return NOT_A_CODE_POINT == mCodePoint;
|
||||
}
|
||||
|
||||
// Returns whether this event is for a dead character. @see {@link #FLAG_DEAD}
|
||||
public boolean isDead() {
|
||||
return 0 != (FLAG_DEAD & mFlags);
|
||||
|
|
|
@ -74,7 +74,7 @@ public class HardwareKeyboardEventDecoder implements HardwareEventDecoder {
|
|||
}
|
||||
// If not Enter, then this is just a regular keypress event for a normal character
|
||||
// that can be committed right away, taking into account the current state.
|
||||
return Event.createHardwareKeypressEvent(keyCode, codePointAndFlags, null /* next */,
|
||||
return Event.createHardwareKeypressEvent(codePointAndFlags, keyCode, null /* next */,
|
||||
isKeyRepeat);
|
||||
}
|
||||
return Event.createNotHandledEvent();
|
||||
|
|
|
@ -399,7 +399,7 @@ public final class InputLogic {
|
|||
}
|
||||
|
||||
boolean didAutoCorrect = false;
|
||||
if (Event.NOT_A_KEY_CODE != event.mKeyCode) {
|
||||
if (event.isFunctionalKeyEvent()) {
|
||||
// A special key, like delete, shift, emoji, or the settings key.
|
||||
switch (event.mKeyCode) {
|
||||
case Constants.CODE_DELETE:
|
||||
|
|
Loading…
Reference in New Issue