We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am testing on TV emulator.
The issue happens only when the keyboard is opened and closed (using input).
after some debugging
@Override public boolean dispatchKeyEvent(KeyEvent event) { int keyCode = event.getKeyCode(); Log.d("qqq", String.valueOf(keyCode)); if (event.getKeyCode() == KeyEvent.KEYCODE_ENTER && event.getAction() == KeyEvent.ACTION_DOWN) { KeyEventModule.getInstance().onKeyDownEvent(event.getKeyCode(), event); return false; } return super.dispatchKeyEvent(event); }
code is reaching return super.dispatchKeyEvent(event); but not registered on
return super.dispatchKeyEvent(event);
KeyEvent.onKeyDownListener(this.handleKeyDown)
Only on long press multiple enters are registered.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am testing on TV emulator.
The issue happens only when the keyboard is opened and closed (using input).
after some debugging
code is reaching
return super.dispatchKeyEvent(event);
but not registered onOnly on long press multiple enters are registered.
The text was updated successfully, but these errors were encountered: