Merge "Fix recents thumbnail wrong while swipe up" into tm-dev

This commit is contained in:
Tony Huang
2022-04-18 03:44:15 +00:00
committed by Android (Google) Code Review
2 changed files with 3 additions and 3 deletions

View File

@@ -414,7 +414,7 @@ public class SplitScreenController implements DragAndDropPolicy.Starter,
}
RemoteAnimationTarget[] onGoingToRecentsLegacy(boolean cancel, RemoteAnimationTarget[] apps) {
if (ENABLE_SHELL_TRANSITIONS || apps.length < 2) return null;
if (ENABLE_SHELL_TRANSITIONS || !isSplitScreenVisible()) return null;
// TODO(b/206487881): Integrate this with shell transition.
SurfaceControl.Transaction transaction = new SurfaceControl.Transaction();
if (mSplitTasksContainerLayer != null) {

View File

@@ -445,7 +445,7 @@ public class RecentsAnimationController implements DeathRecipient {
}
final int taskCount = visibleTasks.size();
for (int i = 0; i < taskCount; i++) {
for (int i = taskCount - 1; i >= 0; i--) {
final Task task = visibleTasks.get(i);
if (skipAnimation(task)) {
continue;
@@ -746,7 +746,7 @@ public class RecentsAnimationController implements DeathRecipient {
ProtoLog.d(WM_DEBUG_RECENTS_ANIMATIONS,
"collectTaskRemoteAnimations, target: %s", target);
}
}, true);
}, false /* traverseTopToBottom */);
}
void logRecentsAnimationStartTime(int durationMs) {