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
0
votes
1 answer
Android - Custom IME action button
How can I customize the text displayed in the IME action buttton for an EditTextView.
I tried to use setImeActionLabel but it doesn't work.
public class TestIMEActivity extends Activity {
/** Called when the activity is first created. */
…

user1753118
- 89
- 2
- 7
0
votes
1 answer
Parse input method key by key in Android?
So I have heard that key events are redundant and input methods generally don't trigger them. But I'm just starting to develop a terminal-like app and I want to parse the input key by key, not after "Done"/"Enter" is clicked (for example, for…

emha
- 37
- 2
- 6
0
votes
1 answer
How to implement: click a button, then user can input something to a EditText
There is an EditText(edit) and a Button(btn) on screen.
User can click the EditText to input something, and I also want when user click the button, user can input something to the EditText too.
I tried:
btn.setOnClickListener(new…

Freewind
- 193,756
- 157
- 432
- 708
0
votes
1 answer
Windows mobile 6.5 IME
Is that possible to send characters to currently open text box via IME ? What I am trying to do is that I have Bluetooth module that handles connection between Bluetooth keyboard and windows mobile device , when user press key on Bluetooth keyboard…

Ahmed
- 814
- 2
- 19
- 38
0
votes
2 answers
Having trouble with NSSound currentTime
I'm using NSSound and I can get sounds to play / pause correctly, but for some reason I can't get the currentTime method to return anything else than zero.
Here's the code that I'm having trouble with:
NSSound* sound = [[NSSound alloc]…

skiss
- 213
- 3
- 10
0
votes
1 answer
Android KeyCodes for combination of letters
I am implementing a custom input method (softkeyboard ) for android...Its a gesture detection keyboard,so I will capture the direction the users swipes and the code for that.In doing so,I have some combination of letters like "Th" and "Ch" for which…

Rradhak
- 437
- 1
- 4
- 16
0
votes
1 answer
Android onscreen keyboard without any other keyboard
I've looked at several questions and come across several posts, but i'm not able to figure out how to do this.
The following picture shows you the basic layout :
I've created a custom numpad and put it up on the repo.
Currently, when the app opens,…

gaara87
- 2,087
- 3
- 21
- 43
0
votes
1 answer
Shrinking a ScrollView on resize for IME - what am I doing wrong?
I'm trying to get the following ScrollView to shrink down so that all the other elements above it will still be visible when using the IME, or, at the very least, so that the top of the ScrollView is moved down to the top of the…

Pyrocater
- 1,982
- 1
- 13
- 13
0
votes
1 answer
WM_IME_KEYDOWN not capturing arrow keys
I am trying to capture the arrow keys when using IME, however the WM_IME_KEYDOWN doesn't seem to capture the arrows. I tried with WM_IME_COMPOSITION which do happen when pressing an arrow but I could not see which arrow was pressed.
protected…

Mystogan
- 547
- 4
- 21
-1
votes
1 answer
Set IME caret position in a c# control
I have made a text editor control in C#, where I have inherited from Control.
Some of my users use an IME (Input Method Editor) for input, so I would like to add more support for it.
Normally, an IME will pop up where the caret is, but I can't…

user793548
- 47
- 1
- 5
-1
votes
2 answers
How to get all locale that was supported in installed android keyboard?
So I was developing a simple app where it support multiple language but I need to know what kind of locale that were installed in user keyboard so I can recommend some IME to user to download. The app is about learning language like duolingo so I…

Frandall
- 378
- 1
- 13
-1
votes
1 answer
Enable Input Mode To Hiragana when my application loads MFC C++
I want to make IME mode enabled and to set it to Hiragana in Japanese language by default when application laods and on set focus of EDIT field to disable it again to English,, I have tried many combinations but didn't resolved , i am doing this…

himanshu kaushal
- 57
- 2
- 13
-1
votes
1 answer
Custom keyboard instead of default keyboard for all installed android application
I have to display my customized keyboard whenever an edit text in any app is clicked, e.g. in whats-up, to send a message, my custom keyboard should open instead of the default keyboard.
That is a customized keyboard will show in place of the…

Ajit
- 724
- 7
- 16
-1
votes
1 answer
Set EditText to be Multiline(Enter is carrige return) and not display suggestions
I am trying to set a Android EditText to be Multiline, and not display any suggestions.
textView.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS | InputType.TYPE_TEXT_FLAG_IME_MULTI_LINE);
However, this is just a single line. Currently…

Cen92
- 171
- 1
- 13
-1
votes
1 answer
Find input method ID from inside keyboard service
How can you get the ID of a keyboard service you have written? I've tried using the InputMethodInfo class' method getId(), but it returns an ID that is different than the one returned from the Settings.Secure.getString(this.getContentResolver,…

Orca Ninja
- 823
- 1
- 15
- 29