Fixes dragging divider up in splitscreen puts the docked stack behind

Fixes the regression introduced in ag/1721556 where the docked app would
be placed on top of all the other apps when it should be placed behind
everything.

Change-Id: I63fc3bcfd0ef93f6ac8509a4268b628d9b0eb46b
Fixes: 34697887
Test: manual - split screen and drag up to dismiss
This commit is contained in:
Matthew Ng
2017-02-07 13:15:10 -08:00
parent 3f57d7f7eb
commit 47fa6ae96c

View File

@@ -2301,7 +2301,9 @@ public class ActivityStackSupervisor extends ConfigurationContainer implements D
} else {
for (int i = 0; i < size; i++) {
final TaskRecord task = tasks.get(i);
task.reparent(FULLSCREEN_WORKSPACE_STACK_ID, MAX_VALUE,
final int position = fullscreenStack != null ?
Math.max(fullscreenStack.getAllTasks().size() - 1, 0) : 0;
task.reparent(FULLSCREEN_WORKSPACE_STACK_ID, position,
"moveTasksToFullscreenStack - NOT_onTop");
}
}