diff options
Diffstat (limited to 'include/android/keycodes.h')
-rw-r--r-- | include/android/keycodes.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/android/keycodes.h b/include/android/keycodes.h index 67e28da815..e202060f16 100644 --- a/include/android/keycodes.h +++ b/include/android/keycodes.h @@ -757,7 +757,15 @@ enum { /** Copy key. */ AKEYCODE_COPY = 278, /** Paste key. */ - AKEYCODE_PASTE = 279 + AKEYCODE_PASTE = 279, + /** fingerprint navigation key, up. */ + AKEYCODE_SYSTEM_NAVIGATION_UP = 280, + /** fingerprint navigation key, down. */ + AKEYCODE_SYSTEM_NAVIGATION_DOWN = 281, + /** fingerprint navigation key, left. */ + AKEYCODE_SYSTEM_NAVIGATION_LEFT = 282, + /** fingerprint navigation key, right. */ + AKEYCODE_SYSTEM_NAVIGATION_RIGHT = 283 // NOTE: If you add a new keycode here you must also add it to several other files. // Refer to frameworks/base/core/java/android/view/KeyEvent.java for the full list. |