-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Android: Support unicode character mapping + dead keys #3004
Conversation
8a7b1df
to
7730670
Compare
3f4a37a
to
f6c4423
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be good after you fix formatting.
Up until now the Android backend has been directly mapping key codes which essentially just represent the "physical" cap of the key (quoted since this also related to virtual keyboards). Since we didn't account for any meta keys either it meant the backend only supported a 1:1 mapping from key codes, which only covers a tiny subset of characters. For example you couldn't type a colon since there's no keycode for that and we didn't try and map Shift+Semicolon into a colon character. This has been tricky to support because the `NativeActivity` class doesn't have direct access to the Java `KeyEvent` object which exposes a more convenient `getUnicodeChar` API. It is now possible to query a `KeyCharcterMap` for the device associated with a `KeyEvent` via the `AndroidApp::device_key_character_map` API which provides a binding to the SDK `KeyCharacterMap` API in Java: https://developer.android.com/reference/android/view/KeyCharacterMap This is effectively what `getUnicodeChar` is implemented based on and is a bit more general purpose. `KeyCharacterMap` lets us map a key_code + meta_state from a `KeyEvent` into either a unicode character or dead key accent that can be combined with the following key. This mapping is done based on the user's chosen layout for the keyboard. To enable support for key character maps the `AndroidApp::input_events()` API was replaced by `AndroidApp::input_events_iter()` which returns a (lending) iterator for events. This was changed because the previous design made it difficult to allow other AndroidApp APIs to be used while iterating events (mainly because AndroidApp held a lock over the backend during iteration)
f6c4423
to
b97181c
Compare
For reference here, I've landed the corresponding support in android-activity I could potentially do a 0.5 beta release if needs be, to avoid the temporary git dependency. One small tweak that was made before I merged the android-activity API was to rename |
Up until now the Android backend has been directly mapping key codes which essentially just represent the "physical" cap of the key (quoted since this also related to virtual keyboards).
Since we didn't account for any meta keys either it meant the backend only supported a 1:1 mapping from key codes, which only covers a tiny subset of characters. For example you couldn't type a colon since there's no keycode for that and we didn't try and map Shift+Semicolon into a colon character.
This has been tricky to support because the
NativeActivity
class doesn't have direct access to the JavaKeyEvent
object which exposes a more convenientgetUnicodeChar
API.It is now possible to query a
KeyCharcterMap
for the device associated with aKeyEvent
via theAndroidApp::device_key_character_map
API which provides a binding to the SDKKeyCharacterMap
API in Java:https://developer.android.com/reference/android/view/KeyCharacterMap
This is effectively what
getUnicodeChar
is implemented based on and is a bit more general purpose.KeyCharacterMap
lets us map a key_code + meta_state from aKeyEvent
into either a unicode character or dead key accent that can be combined with the following key. This mapping is done based on the user's chosen layout for the keyboard.To enable support for key character maps the
AndroidApp::input_events()
API was replaced byAndroidApp::input_events_iter()
which returns a (lending) iterator for events. This was changed because the previous design made it difficult to allow other AndroidApp APIs to be used while iterating events (mainly because AndroidApp held a lock over the backend during iteration)CHANGELOG.md
if knowledge of this change could be valuable to users--
Note: this currently depends on a git branch of android-activity https://github.com/rust-mobile/android-activity/tree/rib/pr/input-api-rework-with-key-character-maps which I'm aiming to land soon in preparation for a 0.5 release of android-activity in time for Winit 0.29