IME stands for "Input Method Editor", and refers to systems that allow users to input characters and symbols not found on their keyboard. They are commonly used to input Chinese, Japanese, and Korean (CJK) characters.
Questions tagged [ime]
500 questions
3
votes
1 answer
Jetpack compose LazyColumn or Scrollable Column and IME padding for TextField doesn't work
I am trying to set a list if text fields, and when user set the focus on one text field at the bottom I expect that the user can see the appearing IME soft keyboard and the text field being padded according to the configuration set in my manifest…

Akhha8
- 418
- 3
- 10
3
votes
2 answers
Move cursor to other textbox during IME-composition
I want to move the cursor to another textinput field with javascript, while the user types. When radicals are composed (korean, japanese, chinese) it causes unexpected behaviour.
E.g. if the user types 나 in the first textbox, the cursor should be…

Leander
- 508
- 6
- 21
3
votes
1 answer
Is there a way to decompose and compose Korean words to/from the individual consonants/vowels?
I'm looking for a function that is able to convert a string from "ㅂㅏㅇㅇㅏㄷㅣ" to "방아디".
I've been stuck on this for a week now. I've found user-created python functions that do exactly what I want: https://github.com/jonghwanhyeon/hangul-jamo ,…

aloau
- 31
- 2
3
votes
0 answers
Japanese Kana Keyboard on iOS doesn't work properly with capital English letters on input react js
Faced with a really weird problem with the Japanese keyboard on iOS.
I'm doing the application localization+customization for the Japenese locale and we also support mobiles.
If you add Japanese - Kana keyboard on iOS and then while inputting press…

Vitaliy Karnauh
- 31
- 2
3
votes
1 answer
View-specific IME?
I have a custom view for which I want the user to be able to enter characters from an app-defined set of characters. To do this, as I understand it, I need to write an input method service. The user not only needs to install it, but then needs to…

Ted Hopp
- 232,168
- 48
- 399
- 521
3
votes
2 answers
Flex 4 Combo - using IME
I am trying to use ime (for hiragana input) in a flex 4 spark combo.
On creation complete I am setting the following.
cbx_text.textInput.imeMode = IMEConversionMode.JAPANESE_HIRAGANA;
And to check, tracing the…

Chin
- 12,582
- 38
- 102
- 152
3
votes
1 answer
How to change the colour of a key text in a custom keyboard?
I've writing a simple input method editor and I'm a bit stuck on changing the colour of the actual Key.
Here is my keyboardView which is located in res/layout:

android enthusiast
- 2,062
- 2
- 24
- 45
3
votes
0 answers
Android: How to use my custom IME only in my Application?
I have made an IME depend on Google's SoftKeyboard Sample. But while I set it as my System default IME, the other APP also user it, My custom IME is not friendly to other APP. I only want to use it in my APP, is there any good advice?

sanmianti
- 175
- 2
- 8
3
votes
0 answers
Have to display gif image keyboard in messanger android
I am using the following code to display gif image, png image when clicking on buttons in the custom keyboard.when clicking on the button the images are sent in the hangouts but it is unable to send in messenger. The buttons are not in enable state.…

Lassie
- 984
- 11
- 25
3
votes
1 answer
How can I get a list of all the Input Methods (and their names) that are installed on the phone?
I'm trying to display a list of all the Input Methods that are currently installed on the phone. I'm getting a list of InputMethodInfo objects by doing this:
InputMethodManager imeManager =…

chefgon
- 1,931
- 4
- 17
- 17
3
votes
2 answers
Microsoft Pinyin IME switches to English mode automatically - Windows OS
Why does Windows Microsoft Pinyin IME changes to english mode from chinese mode automatically? How to prevent it?

Shyam
- 31
- 1
- 4
3
votes
0 answers
How to detect end of user input when using input method editors?
For a project I'm using an iframe in design mode for user input. Because of different requirements I need to detect the end of the user input in order to retrieve the text that the user has entered.
Up till now I was just using an array containing…

Werzi2001
- 2,035
- 1
- 18
- 41
3
votes
1 answer
how to build a inputConnection between edit text that inside the input method service and the service
I am writing an IME (InputMethodService) and I have an edit text that in the IME itself, but when I want type text into the edit text , the edit text can't get focused and what I type just go to another edit text outside the IME. how can I make the…

DSapphire
- 31
- 1
- 3
3
votes
1 answer
How to call Android TV soft keyboard for edittext?
I'm developing an android TV app.
I would like to SHOW soft keyboard input while Edittext in focus.
I found the below code for common usage
InputMethodManager imm = (InputMethodManager)…

frans84
- 81
- 1
- 7
3
votes
1 answer
Is this a bug (Windows API)?
I had a question about string normalization and it was already answered, but the problem is, I cannot correctly normalize korean characters that require 3 keystrokes
With the input "ㅁㅜㄷ"(from keystrokes "ane"), it comes out "무ㄷ" instead of "묻".
With…

Dian
- 1,187
- 3
- 18
- 35