Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d2c9bc83 authored by Sujith Ramakrishnan's avatar Sujith Ramakrishnan
Browse files

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
parent ce35097e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -45247,6 +45247,7 @@ package android.view {
    field public static final int KEYCODE_8 = 15; // 0xf
    field public static final int KEYCODE_9 = 16; // 0x10
    field public static final int KEYCODE_A = 29; // 0x1d
    field public static final int KEYCODE_ALL_APPS = 284; // 0x11c
    field public static final int KEYCODE_ALT_LEFT = 57; // 0x39
    field public static final int KEYCODE_ALT_RIGHT = 58; // 0x3a
    field public static final int KEYCODE_APOSTROPHE = 75; // 0x4b
+1 −2
Original line number Diff line number Diff line
@@ -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;