Home | History | Annotate | Download | only in quickstep

Lines Matching refs:taskView

46 import com.android.quickstep.views.TaskView;
83 * Try to find a TaskView that corresponds with the component of the launched view.
85 * If this method returns a non-null TaskView, it will be used in composeRecentsLaunchAnimation.
87 * opening remote target (which we don't get until onAnimationStart) will resolve to a TaskView.
89 public static TaskView findTaskViewToLaunch(
91 if (v instanceof TaskView) {
92 return (TaskView) v;
104 TaskView taskView = recentsView.getPageAt(i);
105 if (recentsView.isTaskViewVisible(taskView)) {
106 Task.TaskKey key = taskView.getTask().key;
108 return taskView;
134 TaskView taskView = recentsView.getTaskView(openingTaskId);
135 if (taskView == null || !recentsView.isTaskViewVisible(taskView)) {
138 return taskView;
145 public static ValueAnimator getRecentsWindowAnimator(TaskView v, boolean skipViewChanges,