Tagged Questions
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.
7
votes
2answers
2k views
how do you use IME?
I want to make a control that handles user input, so I want to be able to handle different keyboards, and one of the ways is using IME.
If you don't handle it, there is a floating window that ...
4
votes
3answers
1k views
How to add own custom IME at Select Input method dialog
I'd like to show my own IME in the Select input method chooser dialog like the Japanese IME and the Chinese IME. How can I do that?
I am new to Android. I have tested Greek IME and other IME. ...
4
votes
2answers
4k views
Android: Edit Text Go Button
I have an Edit Text that is defined as follows.
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:maxLines="1"
android:inputType="text"
...
4
votes
2answers
801 views
How to determine the current IME in Android?
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 ...
3
votes
2answers
123 views
How do I stop an extra context menu from showing up when I select an option from a context menu in VB6?
I am maintaining an application with a VB6 form that contains a ComponentOne VSFlexGrid 7.0. We have a custom context menu that allows users to perform some specialized copy-and-paste operations. ...
3
votes
1answer
824 views
Looking for tutorials/examples on creating fullscreen IME in Android
I am currently trying to develop a fullscreen input method for Android, but I have a hard time finding any hints on this. The only examples and tutorials to be found are for non-fullscreen IMEs and ...
3
votes
2answers
371 views
Does anyone know why does silverlight not provide ime support when the plugin is set to 'windowless=true'
in silverlight(until version 4), if you set the property 'windowless' of the sl plugin to 'true', you can not get any ime support in textbox.
does anyone know why? is it security concern or something ...
3
votes
1answer
718 views
C# and IME - getting the current input text
I'm using the Japanese IME as an example but it is probably the same in other languages which use an IME for input.
When the user types text into a textbox using the IME, the KeyDown and KeyUp events ...
2
votes
1answer
153 views
Detecting IME input before enter pressed in Javascript
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 ...
2
votes
2answers
177 views
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, ...
2
votes
1answer
364 views
Setting the position of the soft keybaord in android
I am wondering if there is any way to set the position of the soft keyboard in android? I have a toolbar at the bottom which i want to remain visible when the keyboard appears. So is there any way of ...
2
votes
1answer
668 views
Android: ListView with EditTexts messes up focus and IME
I have ListActivity with custom items, where every item has it's own TextEdit.
Taping on any of them brings IME keyboard up and it causes ListView to be resized.
So EditText, which recently received ...
2
votes
1answer
358 views
Cursor movement and text retrieval in input methods
I'm designing my first Android IME and am a bit overwhelmed. My goals are accessibility-related, and as such I wonder if perhaps I'm trying things with the IME framework that just aren't possible. ...
2
votes
1answer
396 views
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 = ...
2
votes
1answer
404 views
Android:I need a slide in calculator type soft keypad a la iphone
I'm attempting to replicate on android an iphone app my company had developed externally.
My need is simple but it seems hard to achieve under android. I have three numeric edittext inputs. Each ...
2
votes
3answers
1k views
Android IME: showing a custom pop-up dialog (like Swype keyboard) which can enter text into the TextView
I'm wondering how I can create a custom pop-up like the one in the screenshot below (borrowed from the Swype keyboard), where I can have a couple of buttons, which each commit a string to the ...
2
votes
5answers
1k views
Android IME: how to show a pop-up dialog?
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 ...
2
votes
1answer
589 views
Putting IME in a custom text box, derived from Control
I have created my own single-line textbox control in C# .net 3.5
I've written this completely from scratch, including my own selection code, scrolling, copy/paste etc. It can even select ...
2
votes
2answers
395 views
Input Method Editor windows return FALSE for WM_QUERYENDSESSION - why?
We have a bizarre and very infrequent issue where people can't log off the Windows server when our product is running. The system is multi-application, all MFC/C++. The apps are run from a management ...
1
vote
0answers
47 views
Detecting touch events in Android notification bar
I am writing a custom InputMethod for Android tablets (Honeycomb). I noticed that the default keyboard implementation detects touch events on the notification area beneath the spacebar (and other ...
1
vote
0answers
20 views
OnKeyPress event is called twice using IME
I have implemented a user Textbox that supports text input.
If I select the IME Japanase (or other asian input method) as my current input and enter some text, when the text is send to the control, ...
1
vote
1answer
100 views
How can I fix low resolution of my custom soft Keyboard View?
I am developing a custom softkeyboard using softkeyboard sample of android SDK for 10 inches tablet PCs.
First question: I noticed that the resolution of my keyboard is very low on tablet that is ...
1
vote
0answers
209 views
“IME died” and android.os.DeadObjectException
I'm testing my game on different devices and one of them (Asus Garmin A10) crashes randomly (3/5 times) when the user change the volume (up/down) or push the menu button or similar. It could be a ...
1
vote
0answers
88 views
Windows IME: custom Korean virtual keyboard
I have problem with Korean Windows IME. I am designing a virtual (screen/software) keyboard for a piece of embedded software. I rely on Windows IME and it seemed to work fine for Japanese and Chinese ...
1
vote
0answers
46 views
OnPreviewTextInput not always providing Text
We have an existing application we are trying to replace with a new WPF application.
One of the controls we use in the legacy application has a specialized behavior where the control redirects any ...
1
vote
1answer
236 views
Latin IME keyboard on android
Does anybody know if there is a way of using the standard Latin IME keyboard from an application?
Basically, I want this keyboard to be invoked whenever a textEdit is pressed, no matter in which ...
1
vote
1answer
64 views
Problem with android IME
I am developing an IME for kannada - an Indian language by adapting softkeyboard from android sdk. When I type characters cursor moves ahead by one place. But when I type some compound characters like ...
1
vote
1answer
272 views
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 ...
1
vote
1answer
175 views
How to get ime language info?( windows, C++ )
I need to get the currently selected IME language setting in Windows.
I have found ImmGetConversionStatus(), but it doesn't return the currently selected language.
1
vote
1answer
140 views
xml for numeric keypad with “-” and “/”
I have an edit field that accepts numbers, but I want to be able to show fractions like "3-1/2". The numeric soft keypad does not have the "-" and "/" symbols available.
Is there any way in xml code ...
1
vote
2answers
255 views
Programmatically add character to TextInput when Hiragana IME is active
I'd like to be able to add a character to a TextInput programmatically (say when you press a button) even when using IMEs (I'm using a Japanese IME right now). Normally this would be super easy, i.e.
...
1
vote
0answers
526 views
force dialog input to require fullscreen ime soft keyboard in landscape
I have a dialog box with an input, I have to automatically pop up the soft keyboard, current code:
final EditText input = new EditText(this);
final AlertDialog dialog = new ...
1
vote
0answers
141 views
Determine the corresponding character for a virtual key (using asian IME). .Net
How can I get the the character (a char or string) given a virtual key, or virtual key combination (System.Windows.Input.Key or System.Windows.Input.KeyGesture)? I'm using an asian IME and I want to ...
1
vote
1answer
96 views
Getting actual keycode for ibus settings
I am able to read the ibus keys configuration to know the keys that trigger an engine ON/OFF (accessible via the property "general/hotkey" and "trigger"). that is all good but that returns lists of ...
1
vote
2answers
528 views
I'm making an Android IME. How do I add a “Settings” list item in the “Language & Keyboard” settings screen?
... like "Swype settings" in this picture. Been searching for hours on how to do this. Going to go insane. Help appreciated.
1
vote
0answers
267 views
How to disable Chinese Input Method when sign in or sign up?
There is "android:inputMethod" atrr in EditText, but I can't find any way to catch it.
1
vote
1answer
83 views
How will I convert characters? Or other solutions
I found out (though my other question) that my IME outputs Hangul Compatibility Jamo (U+3130 – U+318F) instead of regular Hangul Jamo(U+1100 – U+11FF).
So I tried asking a question in superuser ...
1
vote
1answer
92 views
Can I send string to IME (Windows) to get translation?
For example (I'm using Korean IME btw) can I get 태우다 from sending "xodnek" (as a string)?
If that isn't possible, can I get 태우다 from it's individual characters ㅌㅐㅇㅜㄷㅏ (which is from the keys ...
1
vote
2answers
250 views
How to use windows IME in delphi?
I have several keyboards and they type in different TMemos. In english, everything works fine, but in Korean the keystrokes get sent to the IME before it sends it to my onKeypress (which ...
1
vote
1answer
233 views
Not able to get IME Input Context through C++ (ImmGetContext)
Hi I am trying to disable the IME on notepad using the following psuedo code:
MakeNotepadActiveWindow();//Notepad is already open and set to Japanese IME
HWND hwnd = GetTheHWNDForNotepad();
HIMC ...
1
vote
2answers
571 views
Windows: Language Bar will not show input method options for some of my windows
I am trying to make our application properly handle international input. Since we handle text input and font rendering ourselves, I wrote custom code to handle the respective WM_IME_* messages.
Now, ...
1
vote
1answer
252 views
How to retrieve keystroke/character mapping table from Microsoft IME program?
I want to know how to retrieve the character mapping table from ms IME?
When the user key in "gao xing", ms IME will display 高兴 in Chinese.
What I want to achieve is the other way round; when user ...
0
votes
0answers
13 views
How to access the IME text in a WinForms TextBox?
I need to get the IME text while the user is editing it, i.e. before they hit [Enter] and thus add the "finalized" version of the text to the WinForms (.net 3.5) TextBox.
How do I accomplish this?
...
0
votes
1answer
60 views
Custom Views in ExpandableListView don't get click events
I have an ExpandableListView in my activity with two groups. Each group has a custom View. I can click on buttons in each group and it works. If I click on a text field in one group's custom view, ...
0
votes
1answer
15 views
Why doesn't ImmSetOpenStatus work the first time?
I use ImmSetOpenStatus to close the input method editor under Win7 Chinese version.
However, I notice that it does not work the first time. Why?
Thank you.
0
votes
1answer
45 views
Android IME : Hide Row of Symbols
How can you get rid of the row of symbols at the top of the IME? I mean the row at the top with
...
0
votes
0answers
37 views
Text input via IME does not work in npapi plugin
When I set focus on the window plugin and turn on chinese IME to try to enter text, but show nothing. In other words it doesn't show up text box.I saw flash player plugin solve the problem, but I ...
0
votes
0answers
29 views
Launching an Activity from IME to Add Text (Android)
I'm trying to create a custom keyboard on Android with one additional button which would launch an activity (in this case listening to the user speaking) and convert that into text, similar to how ...
0
votes
1answer
39 views
Approach for Virtual Keyboard IME for android
I wish to implement a virtual keyboard IME for android. But when I go for references with android's provided softkeyboard sample it says
This code is focused on simplicity over completeness, so it ...
0
votes
0answers
26 views
Letters on the “Phone IME” do not change when switching language
I have a textbox with it's input method set to "phone". When it becomes active, a popup window appears at the bottom of the screen. When I slide the space button to change the input language, the ...