-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
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
'Window.request_keyboard' without showing keyboard #986
Comments
Update: I have been able to get events after the keyboard is hidden by the user, by removing |
Have you tried binding to Window.on_key_down? |
@inclement Thanks! That does indeed work. |
@ZingBallyhoo hello, can you tell me how to "binding to Window.on_key_down" in code billow:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello.
What I am trying to achieve is listening for key events (on_key_down, on_key_up) without the keyboard showing (not listening for keys that can be typed on the keyboard, D-Pad events that are passed through the keyboard provider (DPAD_UP,DPAD_DOWN,DPAD_LEFT,DPAD_RIGHT,DPAD_CENTER))
Receiving the actual events works fine, but only when the keyboard is showing. I need it to not show the keyboard, and still be able to receive the events. (opens when Window.request_keyboard, stops receiving events after you close the keyboard)
Demo program
Anyone know if this is possible?
The text was updated successfully, but these errors were encountered: