Add new keycodes for the convenience of Japanese IMEs

Change-Id: Ibd308cef11261147856258595f6ca0137e03e05c
This commit is contained in:
mogimo
2009-10-03 03:13:56 +09:00
committed by Jean-Baptiste Queru
parent f1fdf3c7e8
commit b032bc0373
4 changed files with 34 additions and 2 deletions

6
core/java/android/view/KeyEvent.java Normal file → Executable file
View File

@@ -122,6 +122,8 @@ public class KeyEvent implements Parcelable {
public static final int KEYCODE_MUTE = 91;
public static final int KEYCODE_PAGE_UP = 92;
public static final int KEYCODE_PAGE_DOWN = 93;
public static final int KEYCODE_PICTSYMBOLS = 94; // switch symbol-sets (Emoji,Kao-moji)
public static final int KEYCODE_SWITCH_CHARSET = 95; // switch char-sets (Kanji,Katakana)
// NOTE: If you add a new keycode here you must also add it to:
// isSystem()
@@ -137,7 +139,7 @@ public class KeyEvent implements Parcelable {
// those new codes. This is intended to maintain a consistent
// set of key code definitions across all Android devices.
private static final int LAST_KEYCODE = KEYCODE_PAGE_DOWN;
private static final int LAST_KEYCODE = KEYCODE_SWITCH_CHARSET;
/**
* @deprecated There are now more than MAX_KEYCODE keycodes.
@@ -694,6 +696,8 @@ public class KeyEvent implements Parcelable {
case KEYCODE_CAMERA:
case KEYCODE_FOCUS:
case KEYCODE_SEARCH:
case KEYCODE_PICTSYMBOLS:
case KEYCODE_SWITCH_CHARSET:
return true;
default:
return false;