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.
-1
votes
1answer
8 views
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 ...
-3
votes
0answers
12 views
How can I develop android IME?
I am finding the right steps to develop an android IME.
What I understood first is to modify AndroidManifest.xml to declare it as a service like:
<service android:name="FastInputIME" ... >...
...
1
vote
2answers
28 views
Android setOnEditorActionListener() doesn't fire
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 Kindle ...
1
vote
2answers
31 views
Android: switch to a different IME programmatically
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 ...
0
votes
2answers
15 views
get active textview or activity using IME android
Im developing an IME for android. I want to get the activity or textview control information while using my IME program. Like Hwnd property in win32 API or sender property of focused control in .Net . ...
0
votes
0answers
10 views
chrome.input undefined in latest Chrome Browser (26)
Referring to documentation and sample code found here:
http://developer.chrome.com/extensions/input.ime.html
I am trying to install the sample extension/code to test chrome.input.ime
It seems that ...
0
votes
1answer
14 views
IME and catching (touch) events
Im currently trying to get my diploma in psychology and i want to write about different types of keyboards for smartphones. To research this area i need a tool that measures times. As Im new to ...
0
votes
0answers
13 views
How do I run my own graphics based (ie all drawn on, no buttons) IME (soft keyboard) on an Android phone?
I have the Eclipse ADT on my Windows 7 PC and can run the SoftKeyboard sample code from Android (as well as other apps) on my phone (Samsung GS3 Mini). I would try to understand the SoftKeyboard code, ...
0
votes
0answers
9 views
How can I make the IME to combine words automatically?
I am trying to make a Korean IME, but I am wondering how I could combine Korean letters such as ㄱ+ㅏ to 가 and ㅅ+ㅣ+ㄹ+ㅎ to 싫
Does the Android system do this automatically?
Or do I have to set this up?
0
votes
1answer
18 views
How can I change between language in a single IME?
I am trying to make a Korean IME, but I can't find a good example.
How can I change between languages in a single IME?
I mean, like in Apple's IME, which uses a globe icon to switch between ...
2
votes
0answers
29 views
Chinese Letters Support: Events Are Not Fired After Selecting a Chinese Letter in IME
I am writing a text editor for a GWT based web application.
I have a problem with languages such as Chinese, where the standart keyboard is not enough, and the user needs to use IME to enter his ...
0
votes
0answers
58 views
Google Translate: Text-to-speech TTS output in mp3 from IME Pinyin input
Using Google Translate, it is possible to generate TTS mp3 audio files from English or Chinese input using a simple URL. For example,
URL for English TTS for the word "English":
...
0
votes
1answer
57 views
Adding a word into a custom Dictionary from a SpellCheckerService
I am implementing an IME with a customized dictionary and Id like to create a SpellCheckerService as well. The integration is trivial however I cannot seem to find any documentation on how to add non ...
0
votes
0answers
34 views
Using IME to input text in canvas (wPaint)
For a small project at our university, we use Websanova wPaint on a Samsung Smart TV app. It's a jquery plugin, doin' all the stuff what a paint app should be able to handle. So it also offers the ...
1
vote
0answers
47 views
Winform textbox not offering all keyboard options
I have been using StackOVerflow for years and it's very rare that I did not find my question being answered already. But in this case, either I am missing something obvious or no one had to do this ...
1
vote
1answer
46 views
Not recieving BIND_INPUT_METHOD while making Android IME
I am having problems with IME for Android os. I am trying to recieve BIND_INPUT_METHOD permission, but it keep saying this is system-app only =\ An opensource example (DotDashKeyboard) recieves it ...
0
votes
0answers
57 views
jQuery ui autocomplete: Does not register IME events?
I'm trying to get autocomplete to work with English letters and Hebrew letters (utf-8).
The widget itself works correctly when I type in english, autocomplete pops up with results. However, to write ...
0
votes
1answer
28 views
Not allowing a third party IME - android
I'm developing an application where I do not want the keyboard in text fields to be replaced by a third party one that a user has installed. I want the system one to be always used. Alternatively, a ...
0
votes
0answers
34 views
How to use GestureDetector for IME keyboard
I am developing an IME Keyboard application by modifying the Softkeybard sample from Android. As the GestureDetector is deprecated the word suggestion no longer works. The following is my code. which ...
1
vote
0answers
209 views
disable ime mode google chrome
How to disable IME using css or anyother method ?My problem is that,When change language to japanese,Double byte numbers are entered in text box,I need to prevent this
I use
...
0
votes
0answers
65 views
ime soft keyboard unexpected behavior on kindle
I am using an IME soft keyboard to do a search in the usual manner. After every callback from onTextChanged I update the search list for the new text. When the user hits the "Search" button the IME is ...
0
votes
0answers
90 views
Can't see candidates in Sample SoftKeyboard android IME
When I use the Sample SoftKeyboard given in the Android samples, no candidates(word suggestions) are generated as with the normal keyboard. Why is this?
How do I get the word suggestions?
I am trying ...
0
votes
2answers
111 views
android:imeOptions. Button not showing up
I tried setting android:imeOptions to actionSend, actionSearch. But there's no "Send" or "Search" button on the keyboard, just usual "Enter" key. I also tried setting different input types. (I'm ...
1
vote
1answer
111 views
IE8 and ealier would not stop entering non-english(like Korean, Chinese or Japanese) characters using javascript
I am working with jquery below.
$(document).ready(function () {
$("#myTextBox").keydown(function () {
return false;
(Or when keypress) event.preventDefault();
});
});
It ...
2
votes
1answer
68 views
How to set an background picture for an IME?
I would like to know how to display an image behind the keys. I have tried it like this:
<ImageView android:id="@+id/imageView1"
android:layout_height="wrap_content"
...
4
votes
1answer
302 views
ICS keyboard back,home buttons not taking touch when opened on overlay
I am creating an Overlay Screen. Everything works perfect on it except the android 4.0+ default keyboard`s back(keyboard down),home & recent apps button when the keyboard is open. These keys do ...
8
votes
1answer
259 views
Android Custom IME use default on screen keyboard
When creating an IME for Android you need to support the on screen keyboard (OSK) via overriding many of the InputMethodService methods such as onCreateInputView().
Is there a way to use the on ...
2
votes
3answers
228 views
Need number only soft keyboard?
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 to ...
0
votes
1answer
124 views
Show inputMethod and get keycode on Key pressed Android
I know that there are some other post asking similar things, but I could not figure it out how to do it.
My situation is the following:
I have a FragmentActivity with few fragments, on of this is a ...
0
votes
1answer
77 views
WPF setting IME to hiragana by default
I have a WPF program where I set in code the ImeConversionModeValues to Native the following way:
InputMethod.SetPreferredImeConversionMode(TargetInputElement,
ImeConversionModeValues.Native);
...
0
votes
0answers
178 views
Find part of CM10.1/stock Android IME (keyboard) where word is sent to text field after pressing space
I am trying to improve/add modifications to the CM10.1 keyboard with features that I haven't seen in other keyboards. The CM10.1 keyboard is almost perfect for what I need but is missing a few key ...
2
votes
0answers
129 views
Android IME which accept unicode
While writing an Input method editor for android, what will i have to do to make it map accept some unicode character as input other than changing android:keyLabel (for example to make me map ...
0
votes
0answers
227 views
Android: from the template of login activity - IME action not working?
I have created a login activity from the template that is offered directly by Eclipse with Android SDK. One part of the initialization code is this:
mPasswordView.setOnEditorActionListener(new ...
0
votes
0answers
67 views
Get back button to work in a custom Android IME
I am making a custom ime on android. My onKeyDown method is implemented as
@Override public boolean onKeyDown(int keyCode, KeyEvent e) {
this.getCurrentInputConnection().sendKeyEvent(e);
...
0
votes
1answer
140 views
Prevent backspace when there is only one character in EditText
All- Sorry my title is so long I just couldn't find any other way to say it. So, I have an EditText and when there is only one character left (I can monitor it via a TextWatcher) I want to disable the ...
1
vote
1answer
68 views
control wordlist for gesture typing IME
Is there a way/API to control the wordlist for the gesture typing IME? Mainly interested in the stock one that came with JellyBean, but compatibility with Touchpal, Swype, .. would also be nice ;-)
-1
votes
1answer
137 views
Default IME Id parts? [closed]
I'm trying to get the IME of the device using this code:
String currentKeyboard = Settings.Secure.getString(getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
where currentKeyboard is ...
1
vote
1answer
95 views
Input method removes transparent effect from JFrame in Swing
import javax.swing.JFrame;
import javax.swing.JTextField;
import com.sun.awt.AWTUtilities;
@SuppressWarnings("serial")
public class TranslucentIssueTest extends JFrame
{
public static void ...
0
votes
2answers
81 views
How to detect if user's keyboard is Swype?
Is it possible to know the keyboard being used by the user? How do I check if the user is using a Swype keyboard?
0
votes
0answers
144 views
Why setImeOptions doesn't work? Same for setTextSize
My code:
TextView tv = new TextView(this);
final EditText newPositionName = new EditText(this);
newPositionName.setImeOptions(EditorInfo.IME_ACTION_SEARCH);
...
1
vote
1answer
335 views
Android: creating custom keyboard problems
I am experimenting with creating a custom keyboard for Android. I am using the soft keyboard sample app as a starting point. My problem is that I am unable to center a row in the keyboard while other ...
5
votes
1answer
296 views
Change Layout of Keyboard Dynamically
I am working on create custom keyboard. I got such a good and useful demo for that from Here. I want to create multiple theme of keyboard, so i create another layout for keyboard, but now problem is ...
0
votes
0answers
49 views
Using Hardware Buttons with an IME Android
I am creating an Android IME. However I have noticed that the certain soft buttons (specifically the 'back' button) and the volume buttons (and perhaps others) are not functioning at all. Why is this ...
1
vote
1answer
98 views
Enter KeyEvent behavior for Android IMEs
I have a custom implemented IME that sends KeyEvents when ImageButtons are pressed. When the ImageButton labeled Enter is pressed, the following code is executed:
ic.sendKeyEvent(new ...
0
votes
1answer
53 views
Creating PopupWindow from IME: BadTokenException
I'm trying to make a popup window appear from an IME service (an onscreen keyboard) that has no activity. When I call popUp.showAtLocation(layout, Gravity.CENTER, 0, -100) I get a ...
0
votes
0answers
133 views
Using Voice Keyboard Text
My application receives key-events from the virtual keyboard, and this part seems to be working well.
However, when I use the voice keyboard, I get multipleKeys (key event with a string), and this ...
1
vote
1answer
77 views
How do I detect the “enter” character when editing using a soft keyboard in an EditText on Android Jelly Bean?
I have an EditText, and am attempting to listen for keystrokes with setOnKeyListener, so that when I detect an Enter keypress, it performs some action. It works fine with hard keyboards and emulators, ...
0
votes
1answer
207 views
Cannot enable my keyboard on Kindle Fire
I've developed a keyboard app that exhibits strange behavior on Kindle Fire. Specifically, I cannot enable it.
After installing the app, I go to Settings / Language & Keyboard / Keyboard. Then I ...
1
vote
0answers
149 views
How to use IME Pad in WPF Application
I´m trying to develope a C# WPF application that displays the Microsoft Input Method Editor Pad in order to be able to enter single Unicode characters directly without the necessity of using a ...
0
votes
0answers
65 views
Turning off the IME
I am building an application in .net/C#, and I need to guarantee that the IME (Input Method Editor) isn't activated by the user. I am using P/Invoke, not windows forms.
static extern bool ...




