-
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
Back button doesn't work #699
Comments
Yes, in the pygame backend we have mapped the Android Back button to 27 (ESC), but have not done so yet for SDL2. |
Thanks @kived . I'm not very able with kivy config (i'm still learning it) |
The Android Back button should be keycode 4 instead of 27, try that. If nothing else, you can always have your keyboard callback method print the received keycodes. Then load your app, and press the back button - whatever prints out is what you need to look for. Either way, when you have that set up you can go back a screen when the back button is pressed, or exit your app if there's nowhere to go back. |
Ok thanks! this fix the problem. |
Fixed in kivy/kivy#4207 |
For some reason the back button doesn't work with sdl2, but work well with pygame backend (the app is closed) . When pressing, the button light up and vibrate but nothing else happens.
It could be a problem for event interception by the engine?
OS: Android 4.4.2
Some confirmation?
The text was updated successfully, but these errors were encountered: