LatinKeyboardViewpublic class LatinKeyboardView extends android.inputmethodservice.KeyboardView
Fields Summary |
---|
static final int | KEYCODE_OPTIONS |
Methods Summary |
---|
protected boolean | onLongPress(android.inputmethodservice.Keyboard.Key key)
if (key.codes[0] == Keyboard.KEYCODE_CANCEL) {
getOnKeyboardActionListener().onKey(KEYCODE_OPTIONS, null);
return true;
} else {
return super.onLongPress(key);
}
|
|