diff options
author | Winson Chung <winsonc@google.com> | 2021-05-20 13:17:44 -0700 |
---|---|---|
committer | Winson Chung <winsonc@google.com> | 2021-05-20 14:50:33 -0700 |
commit | bd2fa26bdaa2e80f31eaef7ad6cdea83d5bd111c (patch) | |
tree | 9c08cc3cd1204baf93d05e69991c05e3ce380ed0 /quickstep/src/com/android/launcher3/BaseQuickstepLauncher.java | |
parent | 631767d919f30e4a6ff71e867fcab90e6f2a85bd (diff) |
Tweak ordering of first match search
- Tweak iteration for finding first match, go by operator priority and
check each cell layout by order to return the first view that matches
- Also reset the launch cookie in cases where we're launching a task
that doesn't support cookies (ie. via prediction), otherwise we may
still try to associate it with the last launched cookie later
Fixes: 187720286
Test: Swipe up from various icon types across hotseat/workspace
Change-Id: I71c4c13c442b0884b2247589685f976eaaeb30a4
Signed-off-by: Winson Chung <winsonc@google.com>
Diffstat (limited to 'quickstep/src/com/android/launcher3/BaseQuickstepLauncher.java')
-rw-r--r-- | quickstep/src/com/android/launcher3/BaseQuickstepLauncher.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/quickstep/src/com/android/launcher3/BaseQuickstepLauncher.java b/quickstep/src/com/android/launcher3/BaseQuickstepLauncher.java index e777ee7354..25e23594ac 100644 --- a/quickstep/src/com/android/launcher3/BaseQuickstepLauncher.java +++ b/quickstep/src/com/android/launcher3/BaseQuickstepLauncher.java @@ -20,6 +20,7 @@ import static com.android.launcher3.AbstractFloatingView.TYPE_HIDE_BACK_BUTTON; import static com.android.launcher3.LauncherState.FLAG_HIDE_BACK_BUTTON; import static com.android.launcher3.LauncherState.NORMAL; import static com.android.launcher3.LauncherState.NO_OFFSET; +import static com.android.launcher3.model.data.ItemInfo.NO_MATCHING_ID; import static com.android.launcher3.util.DisplayController.CHANGE_ACTIVE_SCREEN; import static com.android.launcher3.util.Executors.UI_HELPER_EXECUTOR; import static com.android.quickstep.SysUINavigationMode.Mode.TWO_BUTTONS; @@ -499,6 +500,8 @@ public abstract class BaseQuickstepLauncher extends Launcher // Also allow swiping to folders break; } + // Reset any existing launch cookies associated with the cookie + opts.setLaunchCookie(ObjectWrapper.wrap(NO_MATCHING_ID)); return; } switch (info.itemType) { @@ -509,6 +512,8 @@ public abstract class BaseQuickstepLauncher extends Launcher // Fall through and continue if it's an app, shortcut, or widget break; default: + // Reset any existing launch cookies associated with the cookie + opts.setLaunchCookie(ObjectWrapper.wrap(NO_MATCHING_ID)); return; } opts.setLaunchCookie(ObjectWrapper.wrap(new Integer(info.id))); |