From f40262a617b63cd44df411c590a89957e73749d4 Mon Sep 17 00:00:00 2001 From: Vinit Nayak Date: Sat, 17 Jul 2021 17:26:01 -0700 Subject: [PATCH] End recents animation when entering split select Allow starting split selection from live tile task. Animation is still funky, but that's in a separate CL altogether. Fixes: 193212975 Test: Repro steps in bug no longer happen Change-Id: I507628d3ef474936694dfbabfef5e0acf9f55b5d --- .../com/android/quickstep/SystemUiProxy.java | 2 +- .../android/quickstep/views/RecentsView.java | 3 +++ .../com/android/quickstep/views/TaskView.java | 20 ++++++++++++------- 3 files changed, 17 insertions(+), 8 deletions(-) diff --git a/quickstep/src/com/android/quickstep/SystemUiProxy.java b/quickstep/src/com/android/quickstep/SystemUiProxy.java index dac6981583..11ca4b1550 100644 --- a/quickstep/src/com/android/quickstep/SystemUiProxy.java +++ b/quickstep/src/com/android/quickstep/SystemUiProxy.java @@ -358,7 +358,7 @@ public class SystemUiProxy implements ISystemUiProxy, try { mSystemUiProxy.setSplitScreenMinimized(minimized); } catch (RemoteException e) { - Log.w(TAG, "Failed call stopScreenPinning", e); + Log.w(TAG, "Failed call setSplitScreenMinimized", e); } } } diff --git a/quickstep/src/com/android/quickstep/views/RecentsView.java b/quickstep/src/com/android/quickstep/views/RecentsView.java index 6844f9f785..07776af10e 100644 --- a/quickstep/src/com/android/quickstep/views/RecentsView.java +++ b/quickstep/src/com/android/quickstep/views/RecentsView.java @@ -3088,6 +3088,9 @@ public abstract class RecentsView