2,757 questions
-1
votes
0
answers
25
views
Dark gap above Android keyboard when using Keyboard.resize = "body" in Capacitor
I’m building a React PWA packaged with Capacitor for Android.
I need the app to resize when the keyboard appears because a formatting toolbar must stay above the keyboard (similar to any notes apps).
...
0
votes
1
answer
70
views
Force change the language of my current input keyboard programmatically in Android
We are building a Multi-Lingual Business Application -- where the user is able to enter values and data in multiple languages.
One of our main use cases is, if a user is editing or adding to a text ...
0
votes
1
answer
39
views
XML layout_alignParentBottom="true" in api 34 or above is not sticking to bottom but moves with keyboard
Since API=34 and above the XML child android:layout_alignParentBottom="true" is not working properly. In my case I have created a RelativeLayout for the entire screen and added an xml ...
0
votes
1
answer
122
views
How to disable keyboard from appearing while allowing selection on an Editor in .NET MAUI?
I have an Editor in MAUI that as of now allows for tapping but each time I tap, it opens up the keyboard (on Android). I do want to be able to tap so that I can change cursor position but don't want ...
0
votes
1
answer
66
views
Disable software keyboard for the whole application
I`m working on a jetpack compose application. That application runs on a device with small screen and physical hardware buttons.
There is not need of the softkeyboard. I don't need it to pop up at all....
0
votes
0
answers
47
views
How to change mobile keyboard orientation without changing device orientation
I am working on a mobile app for IOS and Android in Unity, it needs to swap between screen orientations, landscape to portrait, with input text in both orientations. The transition-animations in iOS ...
2
votes
1
answer
97
views
new BasicTextField: How to react to IME actions
A while ago Google made "BasicTextField2" to an official overload of "BasicTextField". The main difference is that it does not organize its text value via "TextFieldValue"...
0
votes
0
answers
95
views
I am having issues on adjusting layout on android when soft keyboard appears on screen in react-native
I am working on a react-native app and using "react-native": "0.73.6", and I am facing some UI issues when the keyboard appears on the screen in my MessageInboxScreen. Below is the ...
0
votes
3
answers
117
views
Opening Keyboard From Side When In Landscape
I have an app in which the EditText(s) are laid out in a manner in which I want to keep them all visible while the user is typing. When in portrait orientation, this is very simple, because the height ...
0
votes
0
answers
251
views
Soft Keyboard Overlaps Input in Android WebView but Not in Chrome (DotNet MAUI App)
I'm developing a .NET MAUI app with a WebView that displays my web app. On Android, when the soft keyboard opens, it overlaps input fields instead of panning the content upward (while it does it fine ...
36
votes
5
answers
9k
views
How to get rid of floating keyboard on Android emulator?
I'm working with Android emulator, the keyboard was a fine, docked keyboard. Today out of nowhere, it started floating:
I can't find any way to "dock" it back to bottom. I tried dragging it ...
-1
votes
2
answers
353
views
Flutter getting the keyboard height before it render [closed]
i am creating chat app using flutter framework and i am trying to add emoji keyboard
the problem is that I can't switch between the main keyboard and emoji keyboard smoothly
is there any suggestions ...
2
votes
0
answers
209
views
Bringing TextFields into View in Jetpack Compose
I'm having trouble understanding how imePadding() and BringIntoViewRequester() work.
I have made a signup view and I believe I have applied imePadding correctly to the text field modifiers.
But for ...
0
votes
1
answer
266
views
Soft Keyboard position Jetpack compose for tv
SO i have a project in which i am using jetpack compose. I'm making a login screen on which i have 2 parts of screen on one part i have username password fields and on the other part i want to show ...
0
votes
1
answer
90
views
Resizable Spacer in compose when keyboard is shown
In xml I could use something like that:
<Space
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="2" />
It will ...
1
vote
1
answer
947
views
Jetpack Compose imePadding does not provide uniform padding and leads to glitchy keyboard behavior
The best way to describe the problem would be a video:
https://www.youtube.com/watch?v=6ZY5zIaK82g
The video was recorded on an Android 13 phone, the same behavior was on the phone and emulator with ...
0
votes
1
answer
87
views
Flutter | Hide/don't show keyboard when having focus on specific TextField, but allow input from external keyboard/scanner/nfc reader
I'm currently working on an app that gets it's input from an external nfc reader and saves it to a file. As the title says, I need a way to always hide the on-screen keyboard, but the TextField needs ...
1
vote
1
answer
1k
views
How to listen to newLine ime action in TextField in Android? (Using Jetpack Compose)
I have a textField in which I want to listen to the newLine(Enter) and perform action accordingly.
I didn't find any dedicated action button for this specific purpose.
I tried using onKeyEvent but ...
0
votes
2
answers
595
views
Prevent soft keyboard to shows up with edittext in flutter
I'm trying to use an android device that has an integrated barcode scanner. I have an textfield that is filled with the data read by the scanner. It's working bu everytime I change the focus, the soft ...
2
votes
1
answer
871
views
How can i achieve displaying the bottombar on top of the soft keyboard in android compose?
Im not sure on how i can place the bottombar ontop of the keyboard when its visible
i want the bottombar to show at that position when the keyboard is up
presently the keyboard overlay the bottombar ...
1
vote
0
answers
157
views
Keyboard pushes ModalBottomSheet too high
Im getting this weird issue with Material3 1.1.2, but seems to be fixed in 1.2.0-beta, although beta has other issues so im trying to figure out if anyone has found a solution. If you have a ...
1
vote
0
answers
221
views
Trying to display SoftKeyboard on second Android Display
I've got an Android device with 2 independent touchscreen displays. On my second screen, I want to display a WebView that is able to load a full-screen webpage in a WebView and interact with it. I am ...
0
votes
2
answers
673
views
Soft Keyboard not opening for second time once closed keyboard in Textfield compose
I am new to Compose. Faced issue on compose Textfield when I try to implement an UI which takes input from user. As soon as click Textfield soft Keyboard opened immediately on first time and able to ...
1
vote
2
answers
342
views
React Native Component Hide with Keyboard
I create Header and Gifted Chat in React Native.
return (
<View style={{ flex: 1, backgroundColor: '#fff' }}>
<StatusBar
backgroundColor="#4A43EC"...
4
votes
0
answers
141
views
How can I use SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN with SOFT_INPUT_ADJUST_RESIZE
I want to extend my view to statusbar but when I use SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN the SOFT_INPUT_ADJUST_RESIZE will not work anymore! any suggestions?
I've tried this code but so far no luck!
...