commit | 9c5ece3eec7aa9790c4e851f2e1a7ba5d5c698dd | [log] [tgz] |
---|---|---|
author | Vadim Tryshev <vadimt@google.com> | Tue Apr 03 11:54:50 2018 -0700 |
committer | Vadim Tryshev <vadimt@google.com> | Tue Apr 03 19:18:59 2018 +0000 |
tree | 3a1c53b8f2552af16aa725c3bfc4398d6f6c47d0 | |
parent | b518981124abaeaae47b52c4936cbe3b8241bcd4 [diff] |
Invoking onOverviewShown() on showRecents(false) If a CTS test wants to show Recents in split-screen mode, we call this and the test passes :) This is good enough for now. Bug: 77275679 Test: atest android.server.am.ActivityManagerSplitScreenTests#testDockedStackToMinimizeWhenUnlocked Change-Id: I5ac1b2890f70a48d86b7b0e85b6ebb8263843484
diff --git a/quickstep/src/com/android/quickstep/TouchInteractionService.java b/quickstep/src/com/android/quickstep/TouchInteractionService.java index 1ded4dd..b610f4d 100644 --- a/quickstep/src/com/android/quickstep/TouchInteractionService.java +++ b/quickstep/src/com/android/quickstep/TouchInteractionService.java
@@ -134,6 +134,8 @@ if (triggeredFromAltTab) { setupTouchConsumer(HIT_TARGET_NONE); mEventQueue.onOverviewShownFromAltTab(); + } else { + mOverviewCommandHelper.onOverviewShown(); } }