12,734 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
39
views
autoFocus opens the keyboard, but the TextInput does not actually gain focus, so typing doesn’t work until you tap again in android
So while using the autoFocus props of TextInput, it opens up the keyboard of the android phone but when you start typing it wont work until you manually press on the Input again.
On iOS this same ...
Advice
0
votes
0
replies
17
views
How can I handle / remove the top bar space in a custom keyboard on iOS 26?
keyboard Image
I’m building a custom UIInputViewController keyboard.
Even after removing safe areas and setting constraints to view.topAnchor, there is still an empty space above the first row of keys....
0
votes
0
answers
49
views
open the keybard app on iOS 26 without full access
I am trying to open the keyboard app on iOS using the following method:
- (void)actionForGotoHostAppWithURL:(NSURL *)url {
UIResponder *responder = self;
do {
if ([responder ...
0
votes
1
answer
71
views
Swift keyboard extension opens a URL when Full Access is not allowed on iOS 26.0 and later
I created a button in my keyboard extension to open my app. Previously, the app could be opened even when the user had not enabled Full Access for the keyboard. However, starting from iOS 26, this no ...
0
votes
1
answer
71
views
Sending onKeyDown/onKeyUp events to simulate hardware keyboard in Android app
I am the developer of the Android app Keyboard Designer, which allows users to design their own software keyboard. Currently I am extending its functionality, so that users can assign keys of a ...
1
vote
1
answer
76
views
Picker styles and dismissing keyboards
I have been looking at how to explicitly dismiss a keyboard while allowing a picker on the same form to actually work. There are already various solutions on here that solve my issue, and I have a ...
1
vote
1
answer
94
views
What to use instead of KeyboardEvent.keyCode for keyboard shortcuts across different layouts?
I have an application that relies on the deprecated keyCode property for keyboard shortcuts. I need to update my code to use a modern alternative that works consistently regardless of the user's ...
1
vote
1
answer
80
views
How can I check if my iOS custom keyboard has Full Access enabled without opening the keyboard?
I'm developing a custom iOS keyboard extension, and I want to detect whether Full Access has been enabled — ideally without requiring the user to open the keyboard first.
I understand that when Full ...
0
votes
1
answer
131
views
Adding style to a <button> makes it inaccessible from the keyboard
I have a front-end Angular app in which menu items need to be completely accessible through the keyboard.
My problem is that I need to add some style formatting to the menu items - and I'm stuck ...
1
vote
3
answers
111
views
How do I move focus through a list with keyboard navigation using Refs?
I have an unordered list in a React app, and I want to be able to navigate through the list using down/up arrows. The list is rendered conditionally, based on whether a variable is null or not (the ...
1
vote
1
answer
115
views
How can I get global keystrokes without eating all the keys?
I have a basic input grabber which looks like this:
Display *display = NULL;
int main(const int argc, const char *argv[]) {
display = XOpenDisplay(NULL);
if (!display) {
return 1;
...
8
votes
1
answer
825
views
Add gap to the keyboard toolbar
Since iOS 26, the toolbar on the keyboard isn't against the keyboard, there's a small gap as seen here on Safari:
But in my app it shows up like this, without the gap:
Here's my code:
.toolbar {
...
0
votes
0
answers
82
views
Android keyboard stutters/freezes when opening/closing with react-native-keyboard-controller (KeyboardAwareScrollView)
I’m seeing noticeable UI hitches only on Android when the keyboard opens/closes while using react-native-keyboard-controller. On iOS everything is smooth — inputs scroll correctly, no dropped frames.
...
0
votes
0
answers
64
views
Lenovo M10+ gen 3 on screen keyboard issue
I have one of these tablets, just over 2.5 years old now. It came with Android 12 and was fine, then an auto-update forced it to 13, and it broke the on screen keyboard.
What happens in practice is ...
0
votes
1
answer
73
views
Keyboard open animation not working with Samsung Keyboard and Jetpack Compose
I'm working on an Android Jetpack Compose app, and i've hit a strange bug that seems to be exclusive to Samsung Galaxy S25 Ultra and Samsung Keyboard.
When I tap on a TextField on my Samsung Galaxy ...