12,738 questions
-1
votes
0
answers
20
views
in iOS KeyboardExtension host app open containerapp success, but cant go back to host app [closed]
I've encountered a situation where I'm using a microphone in a keyboard app. When I try to use the keyboard's microphone in a host app, I need to open the container keyboard app to authorize the ...
1
vote
1
answer
78
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
70
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 ...
1
vote
3
answers
95
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 ...
6
votes
1
answer
449
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
58
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 ...
1
vote
1
answer
80
views
TextField leaves white space above keyboard
I’m building a chat screen in Flutter, and I want my TextField (message input) to stay just above the keyboard when it opens.
The problem: there is always a white space between the keyboard and my ...
1
vote
3
answers
195
views
Reducing Latency in Pixel Scanning for Input Simulation
I am developing a Python script to pass a challenging minigame in a single-player title. My goal is to unlock a specific achievement within this game, a task I've spent over 10 hours attempting ...
0
votes
1
answer
97
views
Strange soft keyboard behaviour in Jetpack Compose for landscape mode
I have an AlertDialog that containing the TextField.
At portrait mode all working fine - the keyboard is closing with back gesture, but dialog becomes visible.
But at landscape mode, when I'm ...
4
votes
1
answer
80
views
Why is my XTerm translation table not behaving? [fixed]
[edit: for all ref's to 'vim', read 'neovim' - see comments for clarification]
On a UK keyboard, the shifted characters for the number keys (1...9, and 0) are;-
! " £ $ % ^ & * ( )
When I use ...
0
votes
2
answers
745
views
Android 15/API 35 Keyboard covering input fields after targetSdkVersion upgrade - solutions?
My HTML/JS/Tailwind website runs in webview packaged as an APK. Since upgrading to API 35+, the native keyboard covers the input fields of my website where it used to push it up. What makes this even ...
0
votes
0
answers
47
views
WCAG Accessible toast with action button
We have a page with create button that opens a modal, table and other content. When we click on the create button we open a modal that allows us to create a request. After successful creation the ...
0
votes
0
answers
39
views
Keyboard occupying entire screen in landscape mode in my app
I’m developing a React Native Expo app that must run in landscape mode (enforced using expo-screen-orientation). The app includes popup modals with input fields (e.g., for entering an IP address, PIN, ...
0
votes
0
answers
41
views
When an input on an iOS 18 H5 page is focused, the prompt "Slide your finger to spell words quickly as you type" appears every time
When an field in an H5 page loaded by a WKWebView in an iOS development project is tapped to gain focus, a keyboard pop-up appears with a prompt for "slide-to-type" ("Slide your finger ...
0
votes
0
answers
31
views
Flutter support for multi-tap text input on numeric keypads
I am building an app in flutter, that can be used on android devices with only numeric keyboard (letters are in groups on the numbers) like on old phones, so by multi clicking on a number you get a ...
0
votes
0
answers
88
views
How to customize the CompositionEvent UI in JavaScript for IME keyboard logic on various browsers?
I just encountered What is JavaScript's CompositionEvent? Please give examples From the little images/videos available on the topic, and given that I only ever really use a English/Latin keyboard ...
1
vote
1
answer
170
views
Is there a method that can be called during QMK tap dance that handles advanced key codes?
I'm programming my new keyboard using QMK firmware. When writing a tap dance function that makes a key do different things when tapped, held, and double tapped, I need to call a method to send the ...
1
vote
0
answers
91
views
What is the maximum input array length of SendInput?
I want to use the SendInput function (winuser.h) to simulate huge amounts of inputs. I have no idea tho what the maximum input array length is.
I checked the docs, but I can't find anything there:
...
0
votes
0
answers
45
views
Tracking viewport height when keyboard is open on iOS
I have an app on 100dvh, fixed header at the top, fixed footer at the bottom, in the middle everything that is left with overflow-auto. The problem on iOS is that when I put the cursor on the input, ...
0
votes
0
answers
35
views
how to stop keyboard on android when mdtextfield is readonly
Im using kivymd 2.0.1 and have several mdtextfields with readonly and use mddropdownmenu to choose values from, but the keyboard pops out and cover the fields.
0
votes
1
answer
85
views
Hide keyboard SwiftUI
I implemented the library IQKeyboardManager in mi app KMM,
It only works well when the app starts, when I put the app in the background and bring it back to the foreground, it doesn't work. Why does ...
0
votes
0
answers
49
views
Custom Keyboard Handling in QML: Disabling Default Screen Shift on iOS/Android
I’ve noticed that when the virtual keyboard opens in a QML application on iOS and Android, the screen shifts upward to keep the text input field in view. I’d like to implement my own custom mechanism ...
0
votes
0
answers
88
views
dnd-kit sortable not working on iPhone if software keyboard is open
I took this simple dnd-kit example of a sortable list and added a text input in the end.
On desktop, it is working properly. Also on iPhone it is working without any issues, as long as the software ...
0
votes
0
answers
40
views
Custom Keyboard Behavior in Xamarin.Android
I'm currently working on a Xamarin.Android application where I'm trying to modify the device keyboard's default behavior.
Desired Functionality:
When editing a non-empty text field, the keyboard ...
0
votes
1
answer
63
views
How can I keep the virtual keyboard up after a user clicks SEND, which makes an API call?
I'm creating a web app that involves users sending text in the style of WhatsApp/any messenger app. It is very jarring to have the virtual keyboard disappear every time the user inputs text and ...