I am new to Android development and currently programming an Input Method Editor (IME) for the Google Android operating system (API level 11 == version 3.0).
(The following code is simplified to point out the problem.)
I am able to send characters to the underlying application via:
@Override
public final void onKey(final int primaryCode, final int[] keyCodes) {
this.getCurrentInputConnection().commitText(String.valueOf((char) primaryCode), 1);
}
Now I want to send special key combinations (e.g. SHIFT + A). The Java code to reach this goal is the following (for the special case of SHIFT + A):
@Override
public final void onKey(final int primaryCode, final int[] keyCodes) {
long eventTime = SystemClock.uptimeMillis();
this.sendDownKeyEvent(KeyEvent.KEYCODE_SHIFT_LEFT);
KeyEvent keyEvent = new KeyEvent(
eventTime,
eventTime,
KeyEvent.ACTION_DOWN,
KeyEvent.KEYCODE_A, // ToDo: How to convert primaryCode to the corresponding KeyEvent constant?
KeyEvent.META_SHIFT_ON
);
this.getCurrentInputConnection().sendKeyEvent(keyEvent);
}
public final void sendDownKeyEvent(final int keyEventCode) {
InputConnection ic = this.getCurrentInputConnection();
if (ic != null) {
long eventTime = SystemClock.uptimeMillis();
ic.sendKeyEvent(
new KeyEvent(
eventTime, eventTime,
KeyEvent.ACTION_DOWN, keyEventCode, 0, 0, 0, 0,
KeyEvent.FLAG_SOFT_KEYBOARD | KeyEvent.FLAG_KEEP_TOUCH_MODE
)
);
}
}
The comment in the previous code sample shows my problem. To send key combinations via a KeyEvent object I have to convert the variable primaryCode (which contains the unicode code of the pressed key) to a constant of the class KeyEvent.
Does a convenient method for this case exist already or do I have to write it by myself? In general: Is the above solution to send combinations of keys elegant or do better approaches exist? (It isn't easy to find examples for Android IMEs on the Internet...)
Thank you in advance!