Questions tagged [android-virtual-keyboard]
63 questions
2
votes
1 answer
Call jquery function only when window width gets resized
I have a function responsive that changes behaviour of certain elements on my website, including hiding popups etc. I call it in 2 cases:
$(document).ready(responsive);
$(window).resize(responsive);
The problem occurs on android chrome, as the…

Pejs
- 265
- 5
- 15
2
votes
1 answer
How to show Android's virtual-keyboard when focus an input in TWebBrowser?
I created a simple application in Delphi-XE5 for Android. It only has an TWebBrowser object that goes straight to a certain website when the application runs. But when I focus/touch on any of the webform's inputs nothing happens. The cursor goes to…

NaN
- 8,596
- 20
- 79
- 153
2
votes
4 answers
I can't hide the virtual keyboard on Android
I am working with fragments and nesting fragments within fragments using the support library.
I have a scenario where I add a new fragment (which contains an EditText) from within the existing fragment. When the user taps on the EditText a virtual…

Speed Demon
- 691
- 1
- 9
- 21
2
votes
0 answers
Virtual keyboard turn portrait to landscape mode
I have a site that changes its layout depending on the orientation of the device. However, when there is a form in the page and the user focus on the text field, the virtual keyboard will pops up and turn the page to "landscape mode" (probably…

Ian Hsieh
- 85
- 3
- 8
2
votes
2 answers
Listen to virtual keyboard presses without edit text
Is there a way to get key events when forcing keyboard this way in Fragment onCreateView method:
getActivity().getWindow().setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
Also would need the keyboard…

Niko
- 8,093
- 5
- 49
- 85
1
vote
1 answer
Android Soft Keyboard isn't resizing my view
I know there are a thousand questions about this, but I've crawled through them and none of their solutions are working for me.
My activity has a tabbed interface with this kind of layout:
1
vote
2 answers
How to hide the virtual keypad by clicking outside of an EditText?
I am new to Android development. My requirement is that I want to hide the android virtual keypad when I click on the outside of an EditText widget. Please help.

androider
- 449
- 2
- 8
- 21
1
vote
1 answer
WindowInsetsCompat.isVisible(WindowInsetsCompat.Type.ime()) returns true for Android 23-29, though keyboard is not opened
If keyboard is opened the next code returns true (for showingKeyboard) on Android 11 (30 API) or false otherwise:
private fun registerGlobalLayoutListener() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
…

user924
- 8,146
- 7
- 57
- 139
1
vote
1 answer
Soft keyboard is not visible on Android with Qt 5.15 on any input
We migrated from 5.12.9 to 5.15.2 and now soft Android keyboard is not visible (does not popup) on active focus for any of our inputs or text fields. Is it a bug (QTBUG-88069) or some workaround exists?
Following Stackoverflow solution or…

Aleksey Kontsevich
- 4,671
- 4
- 46
- 101
1
vote
0 answers
Android: floating point virtual keyboard on Samsung Galaxy S5
In my app on the EditText I need to show virtual keyboard for floating point value.
I have NumberEditText class that is inherited from EditText. In it's constructor I do this
// set digital keyboard
setRawInputType(InputType.TYPE_CLASS_NUMBER or…

Vitalii
- 10,091
- 18
- 83
- 151
1
vote
2 answers
How to write a virtual keyboard and share it between android, ios and a web app
Can this be done with any of the popular multiplatform native app development tools? React Native, Angular with Nativescript, etc. Is there another approach you would suggest?
I'd like it to be a first class keyboard for Android and ios and an inapp…

Alex Amato
- 1,591
- 4
- 19
- 32
1
vote
0 answers
How to switch between Virtual Keyboard and Default Soft Keyboard
IMPORTANT
I am developing an app in which I have integrated virtual keyboard for emojies using InputMethodService.
Now, I can switch from my Virtual keyboard to default softkeyboard as below :
emojiKeyboard.switchToPreviousInputMethod();
where…

ZaptechDev Kumar
- 164
- 1
- 14
1
vote
1 answer
How to set a default language for the virtual keyboard of an EditText
I'm wanted to know if there any way i could set the default language of the virtual keyboard of an EditText in Android?
Every time i get focus on my EditText it opens the virtual keyboard with my native language instead of English.
I guess it…

God
- 1,238
- 2
- 18
- 45
1
vote
1 answer
CodenameOne: VKB changes the screen
I have a an app developed on CodenameOne platform where I have textfields for manuel input. Each time when the VKB shows on android, the contents of the screen are pushed to bottom and especially the textfield becomes so thin that no characters can…

Babur
- 115
- 3
1
vote
0 answers
How do I control virtual keyboard layout behavior in android
I have an interface layout (fragment) with a multi line TextEntry field at the bottom a few levels from the root container of the layout in a container with some buttons. When the text entry gets focus, I have it set to show the virtual keyboard…

peterk
- 5,136
- 6
- 33
- 47