Closed Helium314 closed 2 months ago
Does the AOSP keyboard have a special view for the emoji layout, or was that added in OpenBoard with the smooth-scrolling?
You once mentioned a challenge of perhaps implementing d-pad arrow keys that span multiple rows. I wonder if these special layouts could be entirely composed of special MainKeyboardView objects. A small emoji window as a bonus top-row similar to the number row would be kinda wack.
Does the AOSP keyboard have a special view for the emoji layout, or was that added in OpenBoard with the smooth-scrolling?
I only have LineageOS variant of AOSP keyboard ready, but looking at the existence of emoji layout files I'd say it's in AOSP. LineageOS emoji keyboards scroll left/right instead of up/down, but look pretty similar otherwise.
You once mentioned a challenge of perhaps implementing d-pad arrow keys that span multiple rows
Essentially the issue with multi-row keys is not that it's really difficult, but the keyboard parser and builder are both based on rows. Hardcoding a specific layout should be relateively simple, but there is some additional work involved in making this configurable (plus the customization would need yet another format).
I wonder if these special layouts could be entirely composed of special MainKeyboardView objects
You mean every key is a separate keyboard?
A small emoji window as a bonus top-row similar to the number row would be kinda wack.
Hmm, using one row of the already wanted two-row suggestion strip / toolbar might be more suitable.
The PointerTracker
crash issue is somewhat tricky.
It happens because the PointerTracker
instances share some static objects that are coming from the MainKeyboardView
, created in init
. This does not work any more if we have multiple MainKeyboardView
s.
The ancient comment above init
TODO: Add PointerTrackerFactory singleton and move some class static methods into it. would be a way to fix the problem. Though maybe I'll try making it work in a simpler way... (edit: done, revert https://github.com/Helium314/HeliBoard/pull/966/commits/c5c5d88f4fb34c9b554580fff6aefc556fe7016c when doing it properly)
WIP PR for having an actual keyboard at the bottom row of emoji and clipboard views. This enables key swipes and allows easily customizing this layout.
At the moment the implementation is very basic, and only done for emoji view. To do:
fixes #850 fixes #593 fixes #404