diff options
| author | Sujith Ramakrishnan <sujithrk@google.com> | 2017-11-02 09:54:16 -0700 |
|---|---|---|
| committer | Sujith Ramakrishnan <sujithrk@google.com> | 2018-01-11 13:45:48 -0800 |
| commit | d2c9bc8304d9022c5ca030a5737352e88495fcce (patch) | |
| tree | 5beeef020c75ca3207294e8991d69bcb857a57d1 /core/java/android/view/KeyEvent.java | |
| parent | ce35097eb68fd9f3bb2d75507756dc63cfb85521 (diff) | |
Remove @hide for KEYCODE_ALL_APPS
- KEYCODE_ALL_APPS which was introduced late in O is now a
proper & valid keycode in P
Bug: 64935695
Test: Manual: ALL_APPS: adb shell input keyevent 284
Test: also tested with --longpress for these keys
Change-Id: If56c5b87f88e927c52468485b790581fa19ad48b
Diffstat (limited to 'core/java/android/view/KeyEvent.java')
| -rw-r--r-- | core/java/android/view/KeyEvent.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/java/android/view/KeyEvent.java b/core/java/android/view/KeyEvent.java index a2147b714ec6..ed2b8b61fe01 100644 --- a/core/java/android/view/KeyEvent.java +++ b/core/java/android/view/KeyEvent.java @@ -804,8 +804,7 @@ public class KeyEvent extends InputEvent implements Parcelable { public static final int KEYCODE_SYSTEM_NAVIGATION_LEFT = 282; /** Key code constant: Consumed by the system for navigation right */ public static final int KEYCODE_SYSTEM_NAVIGATION_RIGHT = 283; - /** Key code constant: Show all apps - * @hide */ + /** Key code constant: Show all apps */ public static final int KEYCODE_ALL_APPS = 284; private static final int LAST_KEYCODE = KEYCODE_ALL_APPS; |
