mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-06-19 07:30:53 +00:00
add tab key
This commit is contained in:
parent
7d1627ffc6
commit
6c2a3e8b5f
5 changed files with 9 additions and 2 deletions
|
@ -773,6 +773,9 @@ public final class InputLogic {
|
|||
case KeyCode.PAGE_DOWN:
|
||||
sendDownUpKeyEvent(KeyEvent.KEYCODE_PAGE_DOWN);
|
||||
break;
|
||||
case KeyCode.TAB:
|
||||
sendDownUpKeyEvent(KeyEvent.KEYCODE_TAB);
|
||||
break;
|
||||
case KeyCode.VOICE_INPUT:
|
||||
// switching to shortcut IME, shift state, keyboard,... is handled by LatinIME,
|
||||
// {@link KeyboardSwitcher#onEvent(Event)}, or {@link #onPressKey(int,int,boolean)} and {@link #onReleaseKey(int,boolean)}.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue