android-input-method Questions
10
Solved
I'm using the Jetpack Compose TextField and I want to close the virtual keyboard when the user press the the action button (imeActionPerformed parameter).
val text = +state { "" }
TextField(
valu...
Hypnosis asked 2/12, 2019 at 5:25
12
Solved
On Android devices that use soft keyboards, I want to prevent the fullscreen keyboard editing view (shown below) from appearing when in landscape mode (i.e. I want to see only the soft keyboard its...
Palma asked 2/12, 2010 at 15:42
17
Solved
I have created a trivial application to test the following functionality. When my activity launches, it needs to be launched with the softkeyboard open.
My code does not work?!
I have tried vario...
Whiteside asked 1/4, 2011 at 23:59
3
Recently while developing an app, I faced an issue. I have searched a lot on google but couldn't find any solution. In the end I came across this Android issue tracker
To explain my issue, I have...
Sparry asked 30/4, 2014 at 5:11
2
Solved
Im trying to create an IME for android that is not a traditional keyboard (rows of keys corresponding to the different letters) and I am having trouble finding helpful resources on how to do so sin...
Betsybetta asked 23/6, 2011 at 2:13
3
Solved
You can find a sample project to reproduce the issue on Github
I've been trying to use Jetpack Compose for a Keyboard UI. Ultimately, When I try to inflate the Keyboard via the InputMethodService
c...
Helvellyn asked 16/1, 2021 at 23:25
2
Solved
I have a state list drawable, and i want to get a specific drawable from the state list drawable:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.co...
Omen asked 3/11, 2014 at 11:45
2
I am developing soft keyboard for Android.
I want to correct some text using InputConnection.commitCorrecrion(), If key corresponding to Keyboard.KEYCODE_DONE is pressed.
But, the text doesn't chan...
Bullate asked 8/4, 2017 at 18:34
1
I want to create a search bar like Gboard inside keyboard (Android IME) as shown in picture.
Gboard Sample :
I have implemented an edittext on Keyboardview.xml as shown in picture.
My Implemen...
Thirtyone asked 15/3, 2019 at 5:35
14
I am using AlertDialog.Builder in order to create an input box, with EditText as the input method.
Unfortunately, the Soft Keyboard doesn't pop, although the EditText is in focus, unless you expli...
Beyer asked 11/8, 2010 at 4:14
1
Solved
I need to develope android keyboard app, but Android developers website tells that KeyboardView and Keybord classes are deprecated after Api 29, to create the UI for the keyboard.
This class was d...
Depone asked 6/1, 2020 at 1:26
6
Solved
I am creating a custom EditText class because i need to set some custom fonts; However now when i click on the editText the android keyboard does not pop up anymore...
here is my class:
package ...
Kenlee asked 17/9, 2013 at 11:32
3
Solved
Is there any way to get something like that, plus the button to clean/delete the text when it contains something?
<android.support.design.widget.TextInputLayout
android:id="@+id/text_input_...
Telltale asked 6/11, 2018 at 9:0
9
Solved
I have created customview. Whenever user double taps on the view it should display the keyboard and user can draw new Text.
Holder is a customview which extends view. But it's showing the keyboard...
Greenness asked 31/12, 2014 at 7:7
9
Solved
I've searched half a dozen other answers on SO, but haven't found one that works. All I'm trying to do is dismiss the soft keyboard when the user presses the enter button. (The equivalent of the in...
Elamitic asked 30/10, 2014 at 4:43
1
Solved
While Navigate User from Alphabets Keyboard to Symbols Keyboard, Layout Alignment gets spoiled. By Default, Layout takes 5dp padding & User can't see the Last Column Keys.
Note: Images shown i...
Bombardier asked 28/12, 2018 at 13:8
3
Solved
I have an application where I would like to warn the user if they are not using the default Android softkeyboard. (i.e. they are using Swype or some thing else).
How can I check which input method...
Norahnorbert asked 30/4, 2010 at 13:17
5
Solved
Is there any way to show software keyboard with USB keyboard connected (in my case RFID reader)?
I tried to force show it using InputManager (with these or similar parameters), but with no luck
(...
Language asked 22/7, 2012 at 16:57
3
Solved
My app opens the input method picker (the menu where you choose a keyboard) with InputMethodManager.showInputMethodPicker(). My app doesn't actually create the picker (it's created by InputMethodMa...
Eddins asked 20/12, 2012 at 22:48
7
Solved
Hi I need a soft keyboard with only numeric values 0 to 9 and Enter key. Shouldn't show anything other than these like . , ( ) etc...
I tried several options as suggested here but nothings seems...
Gaol asked 26/2, 2013 at 21:33
0
I am trying to design a custom keyboard and a part of the keyboard is to allow the user to select some text and edit it. I wanted to provide the ability to the user to be able to switch selection o...
Insufflate asked 31/8, 2018 at 5:7
1
Solved
I've created a custom editor for vertical Mongolian text. The circled views show my my custom editor. They keyboards at the bottom are system keyboards.
When a system keyboard inputs text into i...
Saprolite asked 13/6, 2018 at 5:2
9
Solved
I have a faux dialog which uses this layout:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_p...
Complected asked 6/12, 2011 at 10:4
5
I want to create an EditText in Android which has several lines and number input. It is for the input of a matrix. I already have a solution to set android:inputType="textMultiLine" and then setRaw...
Anselmi asked 17/6, 2013 at 17:21
2
Short version of question: how can I capture long press event on soft input/keyboard in Android?
Long version:
In an Android app, we have a multi-line EditText, and we want to have this behavior:
...
Whencesoever asked 12/12, 2014 at 2:23
1 Next >
© 2022 - 2024 — McMap. All rights reserved.