ime Questions

3

Solved

I'm not even sure if this is possible, so apologies if it's a stupid question. I've set up an keyup callback through jQuery to run a function when a user types in an input box. It works fine for E...
Theresatherese asked 6/9, 2011 at 8:20

12

Solved

In layout XML it is possible to specify android:imeOptions="actionNext" which adds Next button in virtual keyboard and by clicking on it - focus jumps to the next field. How to do this programmati...
Memphis asked 11/8, 2010 at 14:8

2

I have a pinned bottom container with a textfield. And i use imePadding modifier. When keyboard appears seems like imePadding works twice. It happens only on some devices. Particular my is Samsung ...
Alverta asked 14/4, 2023 at 12:0

2

I have a basic <input type="text" oninput="funct()"></input>. However, when I type in Chinese, oninput is also triggered by the IME inputs, not just the resulting characters. For examp...
Selfabsorbed asked 22/12, 2018 at 6:18

15

I have a fairly complex (not really) xml layout file. One of the views is a LinearLayout (v1) with two children: an EditText(v2) and another LinearLayout(v3). The child LinearLayout in turn has an ...
Helfrich asked 12/4, 2014 at 22:27

10

I've got an EditText where I am setting the following property so that I can display the "done" button on the keyboard when the user clicks on the EditText: editText.setImeOptions(EditorI...
Canica asked 5/1, 2010 at 5:31

1

Solved

I'm new to Android compose. Is there any way to dismiss dialog on click of Done key from keyboard using ImeAction? Currently below code is clearfocus on click of Done along with how to dismiss the ...

2

About a week ago I noticed that Android Chrome was showing a password autofill bar above the keyboard in my app (Parchment). The HTML for the <input> is the following, which is definite...
Yecies asked 29/7, 2022 at 1:19

0

In my app I use single activity - MainActivity with multiple fragments. In Manifest file I set activity's windowSoftInputMode to adjustResize because I need that behaviour in majority of fragments ...
Umbilicus asked 6/7, 2022 at 8:54

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

0

Thanks to this great answer here: https://mcmap.net/q/36205/-how-to-check-visibility-of-software-keyboard-in-android we can now track when keyboard is shown in Android... Unfortunateñy I have found...
Solstice asked 29/9, 2021 at 8:29

7

I'm working on a custom keyboard for Android, and I've run in to an issue where the keyboard seems to leave a white line/space at right, instead of filling the parent view... (don't mind the icons,...
Palmer asked 9/11, 2015 at 13:25

2

Solved

I am attempting to create multiple IME subtypes, but Android will only recognize one. method.xml <?xml version="1.0" encoding="utf-8"?> <input-method xmlns:android="http://schemas.andro...

3

Solved

http://developer.android.com/guide/topics/text/creating-input-method.html#GeneralDesign reads: Because multiple IMEs may be installed on the device, provide a way for the user to switch to a diffe...
Sneakbox asked 22/5, 2013 at 5:58

6

Solved

I'm playing around with some keyboard development and try to show a pop-up dialog when a certain key is pressed if (primaryCode == -301) { AlertDialog mDialog = new AlertDialog.Builder(CONTEXT) ...
Telpher asked 16/8, 2010 at 15:10

4

Solved

I have EditText which is used for entering contents on messages (emails, sms). I want message to be immediately posted on ActionDone button click. I use following code for this: message.setOnEdito...
Hysteroid asked 31/3, 2016 at 16:12

3

Solved

Is it possible to know the keyboard being used by the user? How do I check if the user is using a Swype keyboard?
Jacktar asked 17/1, 2013 at 1:36

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

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...

9

Solved

I'm trying to set a listener to EditText when enter button will be pressed.But it didn't fire at all. I tested this on LG Nexus 4 with Android 4.2.2. setOnEditorActionListener works on Amazon Kindl...
Moazami asked 23/5, 2013 at 7:36

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

I saw different questions on the subject, but not exactly what I'm looking for. The question is: how to foce the IME to show up in full screen (extract) mode when editing a particular edit text? Wh...
Spessartite asked 14/6, 2013 at 17:29

5

Solved

I am trying to understand and resolve and error I am seeing in the Eclipse workspace log while working on an Android app that implements an IME. I am new to Android and Eclipse. The error is "com....
Edie asked 18/6, 2012 at 20:34

2

Solved

I have a requirement in which I have one MainActivity. From this activity I instantiate 4 fragments(Let us say FragmentA, FragmentB, FragmentC, FragmentD. Out of these four Fragments; on 3 Fragmen...
Posturize asked 15/10, 2017 at 5:10

1

Assume there is a character' 暂' that I want to write using a custom Android IME. If I want to show the said glyph when I press the key "G" followed by "E", how do I go about it (G itself is assigne...
Colemancolemanite asked 18/11, 2017 at 14:2

© 2022 - 2025 — McMap. All rights reserved.