Fix overview cmd launching wrong task in landscape

Previously we used the bottom most view in recents list to launch the
recent task when the user pressed the overview button. However, if
the user is in landscape and scrolls up so the bottom view is not
attached, pressing overview command will launch whatever the bottom task
is visually which is incorrect. Instead, we get the actual task from the
model to launch and only use the "view => app" animation if the view for
that task is attached. If it isn't, we use the basic animation.

Bug: 130735711
Test: Go to landscape, scroll up, hit command, launches correct task
Change-Id: Idff88054443259e917bbec1b47d78efbb1544283
This commit is contained in:
Kevin 2019-04-24 17:03:28 -07:00
parent 5caa017236
commit 71d3e30fd1
3 changed files with 39 additions and 13 deletions

View File

@ -20,6 +20,8 @@ import static com.android.quickstep.TaskAdapter.TASKS_START_POSITION;
import android.app.ActivityOptions; import android.app.ActivityOptions;
import android.view.View; import android.view.View;
import androidx.annotation.NonNull;
import com.android.quickstep.views.TaskItemView; import com.android.quickstep.views.TaskItemView;
import com.android.systemui.shared.recents.model.Task; import com.android.systemui.shared.recents.model.Task;
import com.android.systemui.shared.system.ActivityManagerWrapper; import com.android.systemui.shared.system.ActivityManagerWrapper;
@ -39,11 +41,11 @@ public final class TaskActionController {
} }
/** /**
* Launch the task associated with the task holder, animating into the app. * Launch the task associated with the task holder, animating into the app from the task view.
* *
* @param viewHolder the task view holder to launch * @param viewHolder the task view holder to launch
*/ */
public void launchTask(TaskHolder viewHolder) { public void launchTaskFromView(@NonNull TaskHolder viewHolder) {
if (!viewHolder.getTask().isPresent()) { if (!viewHolder.getTask().isPresent()) {
return; return;
} }
@ -60,6 +62,17 @@ public final class TaskActionController {
null /* resultCallbackHandler */); null /* resultCallbackHandler */);
} }
/**
* Launch the task directly with a basic animation.
*
* @param task the task to launch
*/
public void launchTask(@NonNull Task task) {
ActivityOptions opts = ActivityOptions.makeBasic();
ActivityManagerWrapper.getInstance().startActivityFromRecentsAsync(task.key, opts,
null /* resultCallback */, null /* resultCallbackHandler */);
}
/** /**
* Removes the task holder and the task, updating the model and the view. * Removes the task holder and the task, updating the model and the view.
* *

View File

@ -83,7 +83,8 @@ public final class TaskAdapter extends Adapter<ViewHolder> {
TaskItemView itemView = (TaskItemView) LayoutInflater.from(parent.getContext()) TaskItemView itemView = (TaskItemView) LayoutInflater.from(parent.getContext())
.inflate(R.layout.task_item_view, parent, false); .inflate(R.layout.task_item_view, parent, false);
TaskHolder taskHolder = new TaskHolder(itemView); TaskHolder taskHolder = new TaskHolder(itemView);
itemView.setOnClickListener(view -> mTaskActionController.launchTask(taskHolder)); itemView.setOnClickListener(
view -> mTaskActionController.launchTaskFromView(taskHolder));
return taskHolder; return taskHolder;
case ITEM_TYPE_CLEAR_ALL: case ITEM_TYPE_CLEAR_ALL:
View clearView = LayoutInflater.from(parent.getContext()) View clearView = LayoutInflater.from(parent.getContext())

View File

@ -59,6 +59,8 @@ import com.android.quickstep.TaskSwipeCallback;
import com.android.systemui.shared.recents.model.Task; import com.android.systemui.shared.recents.model.Task;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.Optional; import java.util.Optional;
/** /**
@ -263,23 +265,33 @@ public final class IconRecentsView extends FrameLayout {
* the app. In that case, we launch the next most recent. * the app. In that case, we launch the next most recent.
*/ */
public void handleOverviewCommand() { public void handleOverviewCommand() {
// TODO(130735711): Need to address case where most recent task is off screen/unattached. List<Task> tasks = mTaskLoader.getCurrentTaskList();
ArrayList<TaskItemView> taskViews = getTaskViews(); int tasksSize = tasks.size();
int taskViewsSize = taskViews.size(); if (tasksSize == 0) {
if (taskViewsSize <= 1) {
// Do nothing // Do nothing
return; return;
} }
TaskHolder taskToLaunch; Task taskToLaunch;
if (mTransitionedFromApp && taskViewsSize > 1) { if (mTransitionedFromApp && tasksSize > 1) {
// Launch the next most recent app // Launch the next most recent app
TaskItemView itemView = taskViews.get(1); taskToLaunch = tasks.get(1);
taskToLaunch = (TaskHolder) mTaskRecyclerView.getChildViewHolder(itemView);
} else { } else {
// Launch the most recent app // Launch the most recent app
TaskItemView itemView = taskViews.get(0); taskToLaunch = tasks.get(0);
taskToLaunch = (TaskHolder) mTaskRecyclerView.getChildViewHolder(itemView);
} }
// See if view for this task is attached, and if so, animate launch from that view.
ArrayList<TaskItemView> itemViews = getTaskViews();
for (int i = 0, size = itemViews.size(); i < size; i++) {
TaskItemView taskView = itemViews.get(i);
TaskHolder holder = (TaskHolder) mTaskRecyclerView.getChildViewHolder(taskView);
if (Objects.equals(holder.getTask(), Optional.of(taskToLaunch))) {
mTaskActionController.launchTaskFromView(holder);
return;
}
}
// Otherwise, just use a basic launch animation.
mTaskActionController.launchTask(taskToLaunch); mTaskActionController.launchTask(taskToLaunch);
} }