blob: a8a8259e79e5754c65a52a370fde64a8c12a4dbc [file] [log] [blame]
Winson Chung303e1ff2014-03-07 15:06:19 -08001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.systemui.recents.views;
18
Filip Gruszczynski170192a2015-08-16 17:46:34 -070019import android.app.ActivityManager;
Winson Chung303e1ff2014-03-07 15:06:19 -080020import android.app.ActivityOptions;
21import android.content.Context;
Winson Chung303e1ff2014-03-07 15:06:19 -080022import android.graphics.Bitmap;
23import android.graphics.Canvas;
24import android.graphics.Rect;
Winson4165d3362015-10-10 14:40:35 -070025import android.graphics.drawable.Drawable;
Jorim Jaggi6e18e002015-06-02 17:07:39 -070026import android.os.Bundle;
27import android.os.IRemoteCallback;
28import android.os.RemoteException;
Winson882072b2015-10-12 11:26:33 -070029import android.util.ArraySet;
Winson Chung8e548f72014-06-24 14:40:53 -070030import android.util.AttributeSet;
Jorim Jaggi6e18e002015-06-02 17:07:39 -070031import android.util.Log;
Filip Gruszczynski170192a2015-08-16 17:46:34 -070032import android.util.SparseArray;
33import android.view.AppTransitionAnimationSpec;
Winson Chungecd9b302014-04-16 17:07:18 -070034import android.view.LayoutInflater;
Winsonbe7607a2015-10-01 17:24:51 -070035import android.view.MotionEvent;
Winson Chung303e1ff2014-03-07 15:06:19 -080036import android.view.View;
Winson Chung653f70c22014-05-19 14:49:42 -070037import android.view.WindowInsets;
Jorim Jaggi6e18e002015-06-02 17:07:39 -070038import android.view.WindowManagerGlobal;
Winson35f30502015-09-28 11:24:36 -070039import android.view.animation.AnimationUtils;
40import android.view.animation.Interpolator;
Winson Chung303e1ff2014-03-07 15:06:19 -080041import android.widget.FrameLayout;
Winson Chung5c9f4b92015-06-25 16:16:46 -070042import com.android.internal.logging.MetricsLogger;
Winson Chungd16c5652015-01-26 16:11:07 -080043import com.android.systemui.R;
Winson Chung303e1ff2014-03-07 15:06:19 -080044import com.android.systemui.recents.Constants;
Winsone7f138c2015-10-22 16:15:21 -070045import com.android.systemui.recents.Recents;
Winsonbe7607a2015-10-01 17:24:51 -070046import com.android.systemui.recents.RecentsActivity;
Winson Chungaee097c2015-04-02 18:16:02 -070047import com.android.systemui.recents.RecentsAppWidgetHostView;
Winson Chung303e1ff2014-03-07 15:06:19 -080048import com.android.systemui.recents.RecentsConfiguration;
Winson2536c7e2015-10-01 15:49:31 -070049import com.android.systemui.recents.events.EventBus;
Winson412e1802015-10-20 16:57:57 -070050import com.android.systemui.recents.events.activity.DismissRecentsToHomeAnimationStarted;
51import com.android.systemui.recents.events.component.ScreenPinningRequestEvent;
Winson0d14d4d2015-10-26 17:05:04 -070052import com.android.systemui.recents.events.ui.DismissTaskViewEvent;
Winsonbe7607a2015-10-01 17:24:51 -070053import com.android.systemui.recents.events.ui.dragndrop.DragDockStateChangedEvent;
54import com.android.systemui.recents.events.ui.dragndrop.DragEndEvent;
55import com.android.systemui.recents.events.ui.dragndrop.DragStartEvent;
Winson Chung1f24c7e2014-07-11 17:06:48 -070056import com.android.systemui.recents.misc.SystemServicesProxy;
Winson Chung303e1ff2014-03-07 15:06:19 -080057import com.android.systemui.recents.model.Task;
58import com.android.systemui.recents.model.TaskStack;
59
60import java.util.ArrayList;
Winson Chung6ac8bd62015-01-07 16:38:35 -080061import java.util.List;
Winson Chung303e1ff2014-03-07 15:06:19 -080062
Winson412e1802015-10-20 16:57:57 -070063import static android.app.ActivityManager.INVALID_STACK_ID;
64
Winson Chung303e1ff2014-03-07 15:06:19 -080065/**
66 * This view is the the top level layout that contains TaskStacks (which are laid out according
67 * to their SpaceNode bounds.
68 */
Winsone6c90732015-09-24 16:06:29 -070069public class RecentsView extends FrameLayout implements TaskStackView.TaskStackViewCallbacks {
Winson Chung47c4c692014-03-17 10:17:11 -070070
Jorim Jaggi6e18e002015-06-02 17:07:39 -070071 private static final String TAG = "RecentsView";
Winson0d14d4d2015-10-26 17:05:04 -070072 private static final boolean DEBUG = false;
Jorim Jaggi6e18e002015-06-02 17:07:39 -070073
Filip Gruszczynski170192a2015-08-16 17:46:34 -070074 private static final boolean ADD_HEADER_BITMAP = true;
75
Winson Chung47c4c692014-03-17 10:17:11 -070076 /** The RecentsView callbacks */
77 public interface RecentsViewCallbacks {
Winson Chung7aceb9a2014-07-03 13:38:01 -070078 public void onTaskViewClicked();
Winson Chung4e96eb72014-09-17 15:16:09 +020079 public void onTaskLaunchFailed();
Winson Chung7aceb9a2014-07-03 13:38:01 -070080 public void onAllTaskViewsDismissed();
Jorim Jaggi6e18e002015-06-02 17:07:39 -070081 public void runAfterPause(Runnable r);
Winson Chung47c4c692014-03-17 10:17:11 -070082 }
83
Winson Chungd42a6cf2014-06-03 16:24:04 -070084 LayoutInflater mInflater;
85
Winson Chungdcfa7972014-07-22 12:27:13 -070086 ArrayList<TaskStack> mStacks;
Winson147ecaf2015-09-16 16:49:55 -070087 TaskStackView mTaskStackView;
Winson Chungaee097c2015-04-02 18:16:02 -070088 RecentsAppWidgetHostView mSearchBar;
Winson Chung47c4c692014-03-17 10:17:11 -070089 RecentsViewCallbacks mCb;
Winsonbe7607a2015-10-01 17:24:51 -070090
91 RecentsViewTouchHandler mTouchHandler;
92 DragView mDragView;
Winson882072b2015-10-12 11:26:33 -070093 TaskStack.DockState[] mVisibleDockStates = {
94 TaskStack.DockState.LEFT,
95 TaskStack.DockState.TOP,
96 TaskStack.DockState.RIGHT,
97 TaskStack.DockState.BOTTOM,
98 };
Winsonbe7607a2015-10-01 17:24:51 -070099
Winson35f30502015-09-28 11:24:36 -0700100 Interpolator mFastOutSlowInInterpolator;
101
102 Rect mSystemInsets = new Rect();
Winson Chung303e1ff2014-03-07 15:06:19 -0800103
104 public RecentsView(Context context) {
105 super(context);
Winson Chung8e548f72014-06-24 14:40:53 -0700106 }
107
108 public RecentsView(Context context, AttributeSet attrs) {
109 this(context, attrs, 0);
110 }
111
112 public RecentsView(Context context, AttributeSet attrs, int defStyleAttr) {
113 this(context, attrs, defStyleAttr, 0);
114 }
115
116 public RecentsView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
117 super(context, attrs, defStyleAttr, defStyleRes);
Winsonbe7607a2015-10-01 17:24:51 -0700118 setWillNotDraw(false);
Winson Chungecd9b302014-04-16 17:07:18 -0700119 mInflater = LayoutInflater.from(context);
Winson35f30502015-09-28 11:24:36 -0700120 mFastOutSlowInInterpolator = AnimationUtils.loadInterpolator(context,
121 com.android.internal.R.interpolator.fast_out_slow_in);
Winsonbe7607a2015-10-01 17:24:51 -0700122 mTouchHandler = new RecentsViewTouchHandler(this);
Winson Chungd16c5652015-01-26 16:11:07 -0800123 }
124
Winson Chung47c4c692014-03-17 10:17:11 -0700125 /** Sets the callbacks */
126 public void setCallbacks(RecentsViewCallbacks cb) {
127 mCb = cb;
128 }
129
Winson Chungdcfa7972014-07-22 12:27:13 -0700130 /** Set/get the bsp root node */
Winson147ecaf2015-09-16 16:49:55 -0700131 public void setTaskStack(TaskStack stack) {
Winson53ec42c2015-10-28 15:55:35 -0700132 RecentsConfiguration config = Recents.getConfiguration();
133 if (config.getLaunchState().launchedReuseTaskStackViews) {
Winson147ecaf2015-09-16 16:49:55 -0700134 if (mTaskStackView != null) {
135 // If onRecentsHidden is not triggered, we need to the stack view again here
136 mTaskStackView.reset();
137 mTaskStackView.setStack(stack);
138 } else {
139 mTaskStackView = new TaskStackView(getContext(), stack);
140 mTaskStackView.setCallbacks(this);
141 addView(mTaskStackView);
142 }
143 } else {
144 if (mTaskStackView != null) {
145 removeView(mTaskStackView);
146 }
147 mTaskStackView = new TaskStackView(getContext(), stack);
148 mTaskStackView.setCallbacks(this);
149 addView(mTaskStackView);
Winson Chung303e1ff2014-03-07 15:06:19 -0800150 }
Winson Chung02d49272014-08-29 13:57:29 -0700151
Winson Chungb0a28ea2014-10-28 15:21:35 -0700152 // Trigger a new layout
153 requestLayout();
Winson Chung19fc1172014-07-31 18:40:03 -0700154 }
155
Skuhne8aa7d162015-03-20 13:40:53 -0700156 /** Gets the next task in the stack - or if the last - the top task */
157 public Task getNextTaskOrTopTask(Task taskToSearch) {
Chong Zhang0fa656b2015-08-31 15:17:21 -0700158 Task returnTask = null;
Skuhne8aa7d162015-03-20 13:40:53 -0700159 boolean found = false;
Winson147ecaf2015-09-16 16:49:55 -0700160 if (mTaskStackView != null) {
161 TaskStack stack = mTaskStackView.getStack();
Skuhne8aa7d162015-03-20 13:40:53 -0700162 ArrayList<Task> taskList = stack.getTasks();
163 // Iterate the stack views and try and find the focused task
164 for (int j = taskList.size() - 1; j >= 0; --j) {
165 Task task = taskList.get(j);
166 // Return the next task in the line.
167 if (found)
168 return task;
169 // Remember the first possible task as the top task.
170 if (returnTask == null)
171 returnTask = task;
172 if (task == taskToSearch)
173 found = true;
174 }
175 }
176 return returnTask;
177 }
178
Winson Chung1e8d71b2014-05-16 17:05:22 -0700179 /** Launches the focused task from the first stack if possible */
180 public boolean launchFocusedTask() {
Winson147ecaf2015-09-16 16:49:55 -0700181 if (mTaskStackView != null) {
182 TaskStack stack = mTaskStackView.getStack();
Winson Chungd16c5652015-01-26 16:11:07 -0800183 // Iterate the stack views and try and find the focused task
Winson147ecaf2015-09-16 16:49:55 -0700184 List<TaskView> taskViews = mTaskStackView.getTaskViews();
Winson Chungd16c5652015-01-26 16:11:07 -0800185 int taskViewCount = taskViews.size();
186 for (int j = 0; j < taskViewCount; j++) {
187 TaskView tv = taskViews.get(j);
188 Task task = tv.getTask();
189 if (tv.isFocusedTask()) {
Filip Gruszczynskif48b5852015-10-13 10:28:22 -0700190 onTaskViewClicked(mTaskStackView, tv, stack, task, false, false, null,
191 INVALID_STACK_ID);
Winson Chungd16c5652015-01-26 16:11:07 -0800192 return true;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700193 }
194 }
195 }
Winson Chung1e8d71b2014-05-16 17:05:22 -0700196 return false;
197 }
198
Skuhne8aa7d162015-03-20 13:40:53 -0700199 /** Launches a given task. */
Filip Gruszczynskif48b5852015-10-13 10:28:22 -0700200 public boolean launchTask(Task task, Rect taskBounds, int destinationStack) {
Winson147ecaf2015-09-16 16:49:55 -0700201 if (mTaskStackView != null) {
202 TaskStack stack = mTaskStackView.getStack();
Skuhne8aa7d162015-03-20 13:40:53 -0700203 // Iterate the stack views and try and find the given task.
Winson147ecaf2015-09-16 16:49:55 -0700204 List<TaskView> taskViews = mTaskStackView.getTaskViews();
Skuhne8aa7d162015-03-20 13:40:53 -0700205 int taskViewCount = taskViews.size();
206 for (int j = 0; j < taskViewCount; j++) {
207 TaskView tv = taskViews.get(j);
208 if (tv.getTask() == task) {
Winsonb1bbaed2015-09-23 15:45:11 -0700209 onTaskViewClicked(mTaskStackView, tv, stack, task, false, taskBounds != null,
Filip Gruszczynskif48b5852015-10-13 10:28:22 -0700210 taskBounds, destinationStack);
Skuhne8aa7d162015-03-20 13:40:53 -0700211 return true;
212 }
213 }
214 }
215 return false;
216 }
217
Winson Chungdcfa7972014-07-22 12:27:13 -0700218 /** Launches the task that Recents was launched from, if possible */
219 public boolean launchPreviousTask() {
Winson147ecaf2015-09-16 16:49:55 -0700220 if (mTaskStackView != null) {
221 TaskStack stack = mTaskStackView.getStack();
Winson Chungd16c5652015-01-26 16:11:07 -0800222 ArrayList<Task> tasks = stack.getTasks();
Winson Chung47c4c692014-03-17 10:17:11 -0700223
Winson Chungd16c5652015-01-26 16:11:07 -0800224 // Find the launch task in the stack
Winsonbe7607a2015-10-01 17:24:51 -0700225 // TODO: replace this with an event from RecentsActivity
Winson Chungd16c5652015-01-26 16:11:07 -0800226 if (!tasks.isEmpty()) {
227 int taskCount = tasks.size();
228 for (int j = 0; j < taskCount; j++) {
229 if (tasks.get(j).isLaunchTarget) {
230 Task task = tasks.get(j);
Winson147ecaf2015-09-16 16:49:55 -0700231 TaskView tv = mTaskStackView.getChildViewForTask(task);
Filip Gruszczynskif48b5852015-10-13 10:28:22 -0700232 onTaskViewClicked(mTaskStackView, tv, stack, task, false, false, null,
233 INVALID_STACK_ID);
Winson Chungd16c5652015-01-26 16:11:07 -0800234 return true;
Winson Chung303e1ff2014-03-07 15:06:19 -0800235 }
236 }
Winson Chung303e1ff2014-03-07 15:06:19 -0800237 }
238 }
239 return false;
240 }
241
Winson Chung24cf1522014-05-29 12:03:33 -0700242 /** Requests all task stacks to start their enter-recents animation */
Winson Chung969f5862014-06-16 17:08:24 -0700243 public void startEnterRecentsAnimation(ViewAnimation.TaskViewEnterContext ctx) {
Winson Chung740c3ac2014-11-12 16:14:38 -0800244 // We have to increment/decrement the post animation trigger in case there are no children
245 // to ensure that it runs
246 ctx.postAnimationTrigger.increment();
Winson147ecaf2015-09-16 16:49:55 -0700247 if (mTaskStackView != null) {
248 mTaskStackView.startEnterRecentsAnimation(ctx);
Winson Chung24cf1522014-05-29 12:03:33 -0700249 }
Winson Chung740c3ac2014-11-12 16:14:38 -0800250 ctx.postAnimationTrigger.decrement();
Winson Chung24cf1522014-05-29 12:03:33 -0700251 }
252
Winson Chungd42a6cf2014-06-03 16:24:04 -0700253 /** Requests all task stacks to start their exit-recents animation */
Winson Chung969f5862014-06-16 17:08:24 -0700254 public void startExitToHomeAnimation(ViewAnimation.TaskViewExitContext ctx) {
Winson Chunga91c2932014-11-07 15:02:38 -0800255 // We have to increment/decrement the post animation trigger in case there are no children
256 // to ensure that it runs
257 ctx.postAnimationTrigger.increment();
Winson147ecaf2015-09-16 16:49:55 -0700258 if (mTaskStackView != null) {
259 mTaskStackView.startExitToHomeAnimation(ctx);
Winson Chungd42a6cf2014-06-03 16:24:04 -0700260 }
Winson Chunga91c2932014-11-07 15:02:38 -0800261 ctx.postAnimationTrigger.decrement();
Winson Chungd42a6cf2014-06-03 16:24:04 -0700262
Winson Chung969f5862014-06-16 17:08:24 -0700263 // Notify of the exit animation
Winson412e1802015-10-20 16:57:57 -0700264 EventBus.getDefault().send(new DismissRecentsToHomeAnimationStarted());
Winson Chungd42a6cf2014-06-03 16:24:04 -0700265 }
266
Winson Chungf7bca432014-04-30 17:11:13 -0700267 /** Adds the search bar */
Winson Chungaee097c2015-04-02 18:16:02 -0700268 public void setSearchBar(RecentsAppWidgetHostView searchBar) {
Winson Chungaf3bb692015-06-03 17:31:39 -0700269 // Remove the previous search bar if one exists
270 if (mSearchBar != null && indexOfChild(mSearchBar) > -1) {
271 removeView(mSearchBar);
272 }
273 // Add the new search bar
274 if (searchBar != null) {
275 mSearchBar = searchBar;
276 addView(mSearchBar);
Winson Chungf7bca432014-04-30 17:11:13 -0700277 }
Winson Chungecd9b302014-04-16 17:07:18 -0700278 }
279
Winson Chung772b6b12014-07-03 15:54:02 -0700280 /** Returns whether there is currently a search bar */
Winson Chungaee097c2015-04-02 18:16:02 -0700281 public boolean hasValidSearchBar() {
282 return mSearchBar != null && !mSearchBar.isReinflateRequired();
Winson Chung772b6b12014-07-03 15:54:02 -0700283 }
284
285 /** Sets the visibility of the search bar */
286 public void setSearchBarVisibility(int visibility) {
287 if (mSearchBar != null) {
288 mSearchBar.setVisibility(visibility);
Winson Chung012ef362014-07-31 18:36:25 -0700289 // Always bring the search bar to the top
290 mSearchBar.bringToFront();
Winson Chung772b6b12014-07-03 15:54:02 -0700291 }
292 }
293
Winsonbe7607a2015-10-01 17:24:51 -0700294 @Override
295 protected void onAttachedToWindow() {
296 EventBus.getDefault().register(this, RecentsActivity.EVENT_BUS_PRIORITY + 1);
297 EventBus.getDefault().register(mTouchHandler, RecentsActivity.EVENT_BUS_PRIORITY + 1);
298 super.onAttachedToWindow();
299 }
300
301 @Override
302 protected void onDetachedFromWindow() {
303 super.onDetachedFromWindow();
304 EventBus.getDefault().unregister(this);
305 EventBus.getDefault().unregister(mTouchHandler);
306 }
307
Winson Chungf7bca432014-04-30 17:11:13 -0700308 /**
309 * This is called with the full size of the window since we are handling our own insets.
310 */
Winson Chung303e1ff2014-03-07 15:06:19 -0800311 @Override
312 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
Winson53ec42c2015-10-28 15:55:35 -0700313 RecentsConfiguration config = Recents.getConfiguration();
Winson Chung303e1ff2014-03-07 15:06:19 -0800314 int width = MeasureSpec.getSize(widthMeasureSpec);
315 int height = MeasureSpec.getSize(heightMeasureSpec);
Winson Chungbd912972014-03-18 14:36:35 -0700316
Winson Chungf7bca432014-04-30 17:11:13 -0700317 // Get the search bar bounds and measure the search bar layout
Winson Chungaf3bb692015-06-03 17:31:39 -0700318 Rect searchBarSpaceBounds = new Rect();
Winson Chungecd9b302014-04-16 17:07:18 -0700319 if (mSearchBar != null) {
Winson53ec42c2015-10-28 15:55:35 -0700320 config.getSearchBarBounds(new Rect(0, 0, width, height), mSystemInsets.top,
Winson147ecaf2015-09-16 16:49:55 -0700321 searchBarSpaceBounds);
Winson Chungf7bca432014-04-30 17:11:13 -0700322 mSearchBar.measure(
323 MeasureSpec.makeMeasureSpec(searchBarSpaceBounds.width(), MeasureSpec.EXACTLY),
324 MeasureSpec.makeMeasureSpec(searchBarSpaceBounds.height(), MeasureSpec.EXACTLY));
Winson Chungecd9b302014-04-16 17:07:18 -0700325 }
326
Winson Chungf7bca432014-04-30 17:11:13 -0700327 Rect taskStackBounds = new Rect();
Winson53ec42c2015-10-28 15:55:35 -0700328 config.getTaskStackBounds(new Rect(0, 0, width, height), mSystemInsets.top,
Winson35f30502015-09-28 11:24:36 -0700329 mSystemInsets.right, searchBarSpaceBounds, taskStackBounds);
Winson147ecaf2015-09-16 16:49:55 -0700330 if (mTaskStackView != null && mTaskStackView.getVisibility() != GONE) {
Winson88f00ab2015-10-05 17:24:00 -0700331 mTaskStackView.setTaskStackBounds(taskStackBounds, mSystemInsets);
Winson147ecaf2015-09-16 16:49:55 -0700332 mTaskStackView.measure(widthMeasureSpec, heightMeasureSpec);
Winson Chung303e1ff2014-03-07 15:06:19 -0800333 }
334
Winsonbe7607a2015-10-01 17:24:51 -0700335 if (mDragView != null) {
336 mDragView.measure(
337 MeasureSpec.makeMeasureSpec(width, MeasureSpec.AT_MOST),
338 MeasureSpec.makeMeasureSpec(height, MeasureSpec.AT_MOST));
339 }
340
Winson Chung303e1ff2014-03-07 15:06:19 -0800341 setMeasuredDimension(width, height);
342 }
343
Winson Chungf7bca432014-04-30 17:11:13 -0700344 /**
345 * This is called with the full size of the window since we are handling our own insets.
346 */
Winson Chung303e1ff2014-03-07 15:06:19 -0800347 @Override
348 protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
Winson53ec42c2015-10-28 15:55:35 -0700349 RecentsConfiguration config = Recents.getConfiguration();
350
Winson Chungf7bca432014-04-30 17:11:13 -0700351 // Get the search bar bounds so that we lay it out
Winson147ecaf2015-09-16 16:49:55 -0700352 Rect measuredRect = new Rect(0, 0, getMeasuredWidth(), getMeasuredHeight());
353 Rect searchBarSpaceBounds = new Rect();
Winson Chungecd9b302014-04-16 17:07:18 -0700354 if (mSearchBar != null) {
Winson53ec42c2015-10-28 15:55:35 -0700355 config.getSearchBarBounds(measuredRect,
Winson35f30502015-09-28 11:24:36 -0700356 mSystemInsets.top, searchBarSpaceBounds);
Winson Chungdcfa7972014-07-22 12:27:13 -0700357 mSearchBar.layout(searchBarSpaceBounds.left, searchBarSpaceBounds.top,
358 searchBarSpaceBounds.right, searchBarSpaceBounds.bottom);
Winson Chungecd9b302014-04-16 17:07:18 -0700359 }
360
Winson147ecaf2015-09-16 16:49:55 -0700361 if (mTaskStackView != null && mTaskStackView.getVisibility() != GONE) {
362 mTaskStackView.layout(left, top, left + getMeasuredWidth(), top + getMeasuredHeight());
Winson Chung303e1ff2014-03-07 15:06:19 -0800363 }
Winsonbe7607a2015-10-01 17:24:51 -0700364
365 if (mDragView != null) {
366 mDragView.layout(left, top, left + mDragView.getMeasuredWidth(),
367 top + mDragView.getMeasuredHeight());
368 }
Winson Chung303e1ff2014-03-07 15:06:19 -0800369 }
370
Winson Chung8eaeb7d2014-06-25 15:10:59 -0700371 @Override
Winson Chung8eaeb7d2014-06-25 15:10:59 -0700372 public WindowInsets onApplyWindowInsets(WindowInsets insets) {
Winson35f30502015-09-28 11:24:36 -0700373 mSystemInsets.set(insets.getSystemWindowInsets());
Winson Chung8eaeb7d2014-06-25 15:10:59 -0700374 requestLayout();
Winson Chungdcfa7972014-07-22 12:27:13 -0700375 return insets.consumeSystemWindowInsets();
Winson Chung8eaeb7d2014-06-25 15:10:59 -0700376 }
377
Winsonbe7607a2015-10-01 17:24:51 -0700378 @Override
379 public boolean onInterceptTouchEvent(MotionEvent ev) {
380 return mTouchHandler.onInterceptTouchEvent(ev);
381 }
382
383 @Override
384 public boolean onTouchEvent(MotionEvent ev) {
385 return mTouchHandler.onTouchEvent(ev);
386 }
387
388 @Override
389 protected void dispatchDraw(Canvas canvas) {
390 super.dispatchDraw(canvas);
Winson882072b2015-10-12 11:26:33 -0700391 for (int i = mVisibleDockStates.length - 1; i >= 0; i--) {
392 Drawable d = mVisibleDockStates[i].viewState.dockAreaOverlay;
393 if (d.getAlpha() > 0) {
394 d.draw(canvas);
395 }
Winsonbe7607a2015-10-01 17:24:51 -0700396 }
397 }
398
Winson4165d3362015-10-10 14:40:35 -0700399 @Override
400 protected boolean verifyDrawable(Drawable who) {
Winson882072b2015-10-12 11:26:33 -0700401 for (int i = mVisibleDockStates.length - 1; i >= 0; i--) {
402 Drawable d = mVisibleDockStates[i].viewState.dockAreaOverlay;
403 if (d == who) {
404 return true;
405 }
406 }
407 return super.verifyDrawable(who);
Winson4165d3362015-10-10 14:40:35 -0700408 }
409
Winson Chung303e1ff2014-03-07 15:06:19 -0800410 /** Unfilters any filtered stacks */
411 public boolean unfilterFilteredStacks() {
Winson Chungdcfa7972014-07-22 12:27:13 -0700412 if (mStacks != null) {
Winson Chung303e1ff2014-03-07 15:06:19 -0800413 // Check if there are any filtered stacks and unfilter them before we back out of Recents
414 boolean stacksUnfiltered = false;
Winson Chungdcfa7972014-07-22 12:27:13 -0700415 int numStacks = mStacks.size();
416 for (int i = 0; i < numStacks; i++) {
417 TaskStack stack = mStacks.get(i);
Winson Chung303e1ff2014-03-07 15:06:19 -0800418 if (stack.hasFilteredTasks()) {
419 stack.unfilterTasks();
420 stacksUnfiltered = true;
421 }
422 }
423 return stacksUnfiltered;
424 }
425 return false;
426 }
427
Jorim Jaggi900fb482015-06-02 15:07:33 -0700428 public void disableLayersForOneFrame() {
Winson147ecaf2015-09-16 16:49:55 -0700429 if (mTaskStackView != null) {
430 mTaskStackView.disableLayersForOneFrame();
Jorim Jaggi900fb482015-06-02 15:07:33 -0700431 }
432 }
433
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700434 private void postDrawHeaderThumbnailTransitionRunnable(final TaskStackView view,
435 final TaskView clickedView, final int offsetX, final int offsetY,
436 final float stackScroll,
Filip Gruszczynskif48b5852015-10-13 10:28:22 -0700437 final ActivityOptions.OnAnimationStartedListener animStartedListener,
438 final int destinationStack) {
Jorim Jaggi6e18e002015-06-02 17:07:39 -0700439 Runnable r = new Runnable() {
440 @Override
441 public void run() {
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700442 overrideDrawHeaderThumbnailTransition(view, clickedView, offsetX, offsetY,
Filip Gruszczynskif48b5852015-10-13 10:28:22 -0700443 stackScroll, animStartedListener, destinationStack);
Jorim Jaggi6e18e002015-06-02 17:07:39 -0700444
Jorim Jaggi6e18e002015-06-02 17:07:39 -0700445 }
446 };
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700447
Jorim Jaggi6e18e002015-06-02 17:07:39 -0700448 mCb.runAfterPause(r);
449 }
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700450
451 private void overrideDrawHeaderThumbnailTransition(TaskStackView stackView,
452 TaskView clickedTask, int offsetX, int offsetY, float stackScroll,
Filip Gruszczynskif48b5852015-10-13 10:28:22 -0700453 final ActivityOptions.OnAnimationStartedListener animStartedListener,
454 int destinationStack) {
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700455 List<AppTransitionAnimationSpec> specs = getAppTransitionAnimationSpecs(stackView,
Filip Gruszczynskif48b5852015-10-13 10:28:22 -0700456 clickedTask, offsetX, offsetY, stackScroll, destinationStack);
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700457 if (specs == null) {
458 return;
459 }
460
461 IRemoteCallback.Stub callback = new IRemoteCallback.Stub() {
462 @Override
463 public void sendResult(Bundle data) throws RemoteException {
464 post(new Runnable() {
465 @Override
466 public void run() {
467 if (animStartedListener != null) {
468 animStartedListener.onAnimationStarted();
469 }
470 }
471 });
472 }
473 };
474
475 AppTransitionAnimationSpec[] specsArray =
476 new AppTransitionAnimationSpec[specs.size()];
477 try {
478 WindowManagerGlobal.getWindowManagerService().overridePendingAppTransitionMultiThumb(
479 specs.toArray(specsArray), callback, true /* scaleUp */);
480
481 } catch (RemoteException e) {
482 Log.w(TAG, "Error overriding app transition", e);
483 }
484 }
485
486 private List<AppTransitionAnimationSpec> getAppTransitionAnimationSpecs(TaskStackView stackView,
Filip Gruszczynskif48b5852015-10-13 10:28:22 -0700487 TaskView clickedTask, int offsetX, int offsetY, float stackScroll,
488 int destinationStack) {
489 final int targetStackId = destinationStack != INVALID_STACK_ID ?
490 destinationStack : clickedTask.getTask().key.stackId;
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700491 if (targetStackId != ActivityManager.FREEFORM_WORKSPACE_STACK_ID
492 && targetStackId != ActivityManager.FULLSCREEN_WORKSPACE_STACK_ID) {
493 return null;
494 }
495 // If this is a full screen stack, the transition will be towards the single, full screen
496 // task. We only need the transition spec for this task.
497 List<AppTransitionAnimationSpec> specs = new ArrayList<>();
498 if (targetStackId == ActivityManager.FULLSCREEN_WORKSPACE_STACK_ID) {
499 specs.add(createThumbnailHeaderAnimationSpec(
500 stackView, offsetX, offsetY, stackScroll, clickedTask,
501 clickedTask.getTask().key.id, ADD_HEADER_BITMAP));
502 return specs;
503 }
504 // This is a free form stack or full screen stack, so there will be multiple windows
505 // animating from thumbnails. We need transition animation specs for all of them.
506
507 // We will use top and bottom task views as a base for tasks, that aren't visible on the
508 // screen. This is necessary for cascade recents list, where some of the tasks might be
509 // hidden.
510 List<TaskView> taskViews = stackView.getTaskViews();
511 int childCount = taskViews.size();
512 TaskView topChild = taskViews.get(0);
513 TaskView bottomChild = taskViews.get(childCount - 1);
514 SparseArray<TaskView> taskViewsByTaskId = new SparseArray<>();
515 for (int i = 0; i < childCount; i++) {
516 TaskView taskView = taskViews.get(i);
517 taskViewsByTaskId.put(taskView.getTask().key.id, taskView);
518 }
519
520 TaskStack stack = stackView.getStack();
521 // We go through all tasks now and for each generate transition animation spec. If there is
522 // a view associated with a task, we use that view as a base for the animation. If there
523 // isn't, we use bottom or top view, depending on which one would be closer to the task
524 // view if it existed.
525 ArrayList<Task> tasks = stack.getTasks();
526 boolean passedClickedTask = false;
527 for (int i = 0, n = tasks.size(); i < n; i++) {
528 Task task = tasks.get(i);
529 TaskView taskView = taskViewsByTaskId.get(task.key.id);
530 if (taskView != null) {
531 specs.add(createThumbnailHeaderAnimationSpec(stackView, offsetX, offsetY,
532 stackScroll, taskView, taskView.getTask().key.id, ADD_HEADER_BITMAP));
533 if (taskView == clickedTask) {
534 passedClickedTask = true;
535 }
536 } else {
537 taskView = passedClickedTask ? bottomChild : topChild;
538 specs.add(createThumbnailHeaderAnimationSpec(stackView, offsetX, offsetY,
539 stackScroll, taskView, task.key.id, !ADD_HEADER_BITMAP));
540 }
541 }
542
543 return specs;
544 }
545
546 private AppTransitionAnimationSpec createThumbnailHeaderAnimationSpec(TaskStackView stackView,
547 int offsetX, int offsetY, float stackScroll, TaskView tv, int taskId,
548 boolean addHeaderBitmap) {
549 // Disable any focused state before we draw the header
550 // Upfront the processing of the thumbnail
551 if (tv.isFocusedTask()) {
Winson0d14d4d2015-10-26 17:05:04 -0700552 tv.setFocusedState(false, false /* animated */, false /* requestViewFocus */);
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700553 }
554 TaskViewTransform transform = new TaskViewTransform();
555 transform = stackView.getStackAlgorithm().getStackTransform(tv.mTask, stackScroll,
556 transform, null);
557
558 float scale = tv.getScaleX();
559 int fromHeaderWidth = (int) (tv.mHeaderView.getMeasuredWidth() * scale);
560 int fromHeaderHeight = (int) (tv.mHeaderView.getMeasuredHeight() * scale);
561
562 Bitmap b = null;
563 if (addHeaderBitmap) {
564 b = Bitmap.createBitmap(fromHeaderWidth, fromHeaderHeight,
565 Bitmap.Config.ARGB_8888);
566
567 if (Constants.DebugFlags.App.EnableTransitionThumbnailDebugMode) {
568 b.eraseColor(0xFFff0000);
569 } else {
570 Canvas c = new Canvas(b);
571 c.scale(tv.getScaleX(), tv.getScaleY());
572 tv.mHeaderView.draw(c);
573 c.setBitmap(null);
574
575 }
576 b = b.createAshmemBitmap();
577 }
578
579 int[] pts = new int[2];
580 tv.getLocationOnScreen(pts);
581
582 final int left = pts[0] + offsetX;
583 final int top = pts[1] + offsetY;
Winson3150e572015-10-23 15:07:24 -0700584 final Rect rect = new Rect(left, top, left + (int) transform.rect.width(),
585 top + (int) transform.rect.height());
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700586
587 return new AppTransitionAnimationSpec(taskId, b, rect);
588 }
589
Winson Chung47c4c692014-03-17 10:17:11 -0700590 /**** TaskStackView.TaskStackCallbacks Implementation ****/
Winson Chung303e1ff2014-03-07 15:06:19 -0800591
592 @Override
Winson Chung7aceb9a2014-07-03 13:38:01 -0700593 public void onTaskViewClicked(final TaskStackView stackView, final TaskView tv,
Filip Gruszczynskif48b5852015-10-13 10:28:22 -0700594 final TaskStack stack, final Task task, final boolean lockToTask,
595 final boolean boundsValid, final Rect bounds, int destinationStack) {
Winson Chung47c4c692014-03-17 10:17:11 -0700596 // Notify any callbacks of the launching of a new task
597 if (mCb != null) {
Winson Chung7aceb9a2014-07-03 13:38:01 -0700598 mCb.onTaskViewClicked();
Winson Chung47c4c692014-03-17 10:17:11 -0700599 }
600
Winson Chunge0e45bc2014-06-17 17:56:17 -0700601 // Upfront the processing of the thumbnail
Winson Chungffa2ec62014-07-03 15:54:42 -0700602 TaskViewTransform transform = new TaskViewTransform();
Jorim Jaggicb557032014-09-16 23:09:24 +0200603 View sourceView;
Winson Chunge0e45bc2014-06-17 17:56:17 -0700604 int offsetX = 0;
605 int offsetY = 0;
Winson Chung012ef362014-07-31 18:36:25 -0700606 float stackScroll = stackView.getScroller().getStackScroll();
Winson Chunge0e45bc2014-06-17 17:56:17 -0700607 if (tv == null) {
608 // If there is no actual task view, then use the stack view as the source view
609 // and then offset to the expected transform rect, but bound this to just
610 // outside the display rect (to ensure we don't animate from too far away)
611 sourceView = stackView;
Winson3150e572015-10-23 15:07:24 -0700612 offsetX = (int) transform.rect.left;
Winson35f30502015-09-28 11:24:36 -0700613 offsetY = getMeasuredHeight();
Winson Chunge0e45bc2014-06-17 17:56:17 -0700614 } else {
Jorim Jaggicb557032014-09-16 23:09:24 +0200615 sourceView = tv.mThumbnailView;
Winson Chunge0e45bc2014-06-17 17:56:17 -0700616 }
617
618 // Compute the thumbnail to scale up from
Winsone7f138c2015-10-22 16:15:21 -0700619 final SystemServicesProxy ssp = Recents.getSystemServices();
Winson Chunge0e45bc2014-06-17 17:56:17 -0700620 ActivityOptions opts = null;
Chong Zhang0fa656b2015-08-31 15:17:21 -0700621 ActivityOptions.OnAnimationStartedListener animStartedListener = null;
Winson Chung2e7f3bd2014-09-05 13:17:22 +0200622 if (task.thumbnail != null && task.thumbnail.getWidth() > 0 &&
623 task.thumbnail.getHeight() > 0) {
Winson Chung1f24c7e2014-07-11 17:06:48 -0700624 if (lockToTask) {
625 animStartedListener = new ActivityOptions.OnAnimationStartedListener() {
626 boolean mTriggered = false;
627 @Override
628 public void onAnimationStarted() {
629 if (!mTriggered) {
630 postDelayed(new Runnable() {
631 @Override
632 public void run() {
Winson412e1802015-10-20 16:57:57 -0700633 EventBus.getDefault().send(new ScreenPinningRequestEvent(
634 getContext(), ssp));
Winson Chung1f24c7e2014-07-11 17:06:48 -0700635 }
636 }, 350);
637 mTriggered = true;
638 }
639 }
640 };
641 }
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700642 postDrawHeaderThumbnailTransitionRunnable(stackView, tv, offsetX, offsetY, stackScroll,
Filip Gruszczynskif48b5852015-10-13 10:28:22 -0700643 animStartedListener, destinationStack);
Winsonec417e42015-09-29 12:42:29 -0700644 opts = ActivityOptions.makeThumbnailAspectScaleUpAnimation(sourceView,
645 Bitmap.createBitmap(1, 1, Bitmap.Config.ALPHA_8).createAshmemBitmap(),
Winson3150e572015-10-23 15:07:24 -0700646 offsetX, offsetY, (int) transform.rect.width(), (int) transform.rect.height(),
Winsonec417e42015-09-29 12:42:29 -0700647 sourceView.getHandler(), animStartedListener);
Chong Zhang0fa656b2015-08-31 15:17:21 -0700648 } else {
649 opts = ActivityOptions.makeBasic();
Winson Chunge0e45bc2014-06-17 17:56:17 -0700650 }
Chong Zhang0fa656b2015-08-31 15:17:21 -0700651 if (boundsValid) {
Winsonb1bbaed2015-09-23 15:45:11 -0700652 opts.setBounds(bounds.isEmpty() ? null : bounds);
Chong Zhang0fa656b2015-08-31 15:17:21 -0700653 }
Winson Chunge0e45bc2014-06-17 17:56:17 -0700654 final ActivityOptions launchOpts = opts;
Chong Zhang0fa656b2015-08-31 15:17:21 -0700655 final boolean screenPinningRequested = (animStartedListener == null) && lockToTask;
Winson Chung303e1ff2014-03-07 15:06:19 -0800656 final Runnable launchRunnable = new Runnable() {
657 @Override
658 public void run() {
Winson Chung4be04452014-03-24 17:22:30 -0700659 if (task.isActive) {
660 // Bring an active task to the foreground
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700661 ssp.moveTaskToFront(task.key.id, launchOpts);
Winson Chung4be04452014-03-24 17:22:30 -0700662 } else {
Winson Chung4e96eb72014-09-17 15:16:09 +0200663 if (ssp.startActivityFromRecents(getContext(), task.key.id,
664 task.activityLabel, launchOpts)) {
Chong Zhang0fa656b2015-08-31 15:17:21 -0700665 if (screenPinningRequested) {
Winson412e1802015-10-20 16:57:57 -0700666 EventBus.getDefault().send(new ScreenPinningRequestEvent(
667 getContext(), ssp));
Winson Chung4be04452014-03-24 17:22:30 -0700668 }
Winson Chung4e96eb72014-09-17 15:16:09 +0200669 } else {
670 // Dismiss the task and return the user to home if we fail to
671 // launch the task
Winson0d14d4d2015-10-26 17:05:04 -0700672 EventBus.getDefault().send(new DismissTaskViewEvent(task, tv));
Winson Chung4e96eb72014-09-17 15:16:09 +0200673 if (mCb != null) {
674 mCb.onTaskLaunchFailed();
675 }
Winson Chung5c9f4b92015-06-25 16:16:46 -0700676
677 // Keep track of failed launches
678 MetricsLogger.count(getContext(), "overview_task_launch_failed", 1);
Winson Chung4be04452014-03-24 17:22:30 -0700679 }
Winson Chung303e1ff2014-03-07 15:06:19 -0800680 }
681 }
682 };
683
Winson Chung5c9f4b92015-06-25 16:16:46 -0700684 // Keep track of the index of the task launch
685 int taskIndexFromFront = 0;
686 int taskIndex = stack.indexOfTask(task);
687 if (taskIndex > -1) {
688 taskIndexFromFront = stack.getTaskCount() - taskIndex - 1;
689 }
690 MetricsLogger.histogram(getContext(), "overview_task_launch_index", taskIndexFromFront);
691
Winson Chung303e1ff2014-03-07 15:06:19 -0800692 // Launch the app right away if there is no task view, otherwise, animate the icon out first
Winson Chung814086d2014-05-07 15:01:14 -0700693 if (tv == null) {
Winson Chunga91c2932014-11-07 15:02:38 -0800694 launchRunnable.run();
Winson Chung303e1ff2014-03-07 15:06:19 -0800695 } else {
Winson Chunge1e20e12015-06-02 14:11:49 -0700696 if (task.group != null && !task.group.isFrontMostTask(task)) {
Winson Chunga4ccb862014-08-22 15:26:27 -0700697 // For affiliated tasks that are behind other tasks, we must animate the front cards
698 // out of view before starting the task transition
Winson Chungebfc6982014-08-26 12:25:34 -0700699 stackView.startLaunchTaskAnimation(tv, launchRunnable, lockToTask);
Winson Chunga4ccb862014-08-22 15:26:27 -0700700 } else {
701 // Otherwise, we can start the task transition immediately
Winson Chungebfc6982014-08-26 12:25:34 -0700702 stackView.startLaunchTaskAnimation(tv, null, lockToTask);
Winson Chunga91c2932014-11-07 15:02:38 -0800703 launchRunnable.run();
Winson Chunga4ccb862014-08-22 15:26:27 -0700704 }
Winson Chung303e1ff2014-03-07 15:06:19 -0800705 }
706 }
Winson Chung9f9679d2014-04-11 16:49:09 -0700707
708 @Override
Winson Chung6ac8bd62015-01-07 16:38:35 -0800709 public void onAllTaskViewsDismissed(ArrayList<Task> removedTasks) {
Winson2536c7e2015-10-01 15:49:31 -0700710 /* TODO: Not currently enabled
Winson Chung6ac8bd62015-01-07 16:38:35 -0800711 if (removedTasks != null) {
712 int taskCount = removedTasks.size();
713 for (int i = 0; i < taskCount; i++) {
714 onTaskViewDismissed(removedTasks.get(i));
715 }
716 }
Winson2536c7e2015-10-01 15:49:31 -0700717 */
Winson Chung6ac8bd62015-01-07 16:38:35 -0800718
Winson Chung7aceb9a2014-07-03 13:38:01 -0700719 mCb.onAllTaskViewsDismissed();
Winson Chung5c9f4b92015-06-25 16:16:46 -0700720
721 // Keep track of all-deletions
722 MetricsLogger.count(getContext(), "overview_task_all_dismissed", 1);
Winson Chungd7b2cb12014-06-26 15:08:50 -0700723 }
724
725 @Override
Winson Chung8e548f72014-06-24 14:40:53 -0700726 public void onTaskStackFilterTriggered() {
727 // Hide the search bar
728 if (mSearchBar != null) {
Winson35f30502015-09-28 11:24:36 -0700729 int filterDuration = getResources().getInteger(
730 R.integer.recents_filter_animate_current_views_duration);
Winson Chung8e548f72014-06-24 14:40:53 -0700731 mSearchBar.animate()
732 .alpha(0f)
733 .setStartDelay(0)
Winson35f30502015-09-28 11:24:36 -0700734 .setInterpolator(mFastOutSlowInInterpolator)
735 .setDuration(filterDuration)
Winson Chung8e548f72014-06-24 14:40:53 -0700736 .withLayer()
737 .start();
738 }
739 }
740
741 @Override
742 public void onTaskStackUnfilterTriggered() {
743 // Show the search bar
744 if (mSearchBar != null) {
Winson35f30502015-09-28 11:24:36 -0700745 int filterDuration = getResources().getInteger(
746 R.integer.recents_filter_animate_new_views_duration);
Winson Chung8e548f72014-06-24 14:40:53 -0700747 mSearchBar.animate()
748 .alpha(1f)
749 .setStartDelay(0)
Winson35f30502015-09-28 11:24:36 -0700750 .setInterpolator(mFastOutSlowInInterpolator)
751 .setDuration(filterDuration)
Winson Chung8e548f72014-06-24 14:40:53 -0700752 .withLayer()
753 .start();
754 }
755 }
Winsonbe7607a2015-10-01 17:24:51 -0700756
757 /**** EventBus Events ****/
758
759 public final void onBusEvent(DragStartEvent event) {
760 // Add the drag view
761 mDragView = event.dragView;
762 addView(mDragView);
Winson4165d3362015-10-10 14:40:35 -0700763
Winson882072b2015-10-12 11:26:33 -0700764 updateVisibleDockRegions(mTouchHandler.getDockStatesForCurrentOrientation(),
765 TaskStack.DockState.NONE.viewState.dockAreaAlpha);
Winsonbe7607a2015-10-01 17:24:51 -0700766 }
767
768 public final void onBusEvent(DragDockStateChangedEvent event) {
Winson882072b2015-10-12 11:26:33 -0700769 if (event.dockState == TaskStack.DockState.NONE) {
770 updateVisibleDockRegions(mTouchHandler.getDockStatesForCurrentOrientation(),
771 TaskStack.DockState.NONE.viewState.dockAreaAlpha);
772 } else {
773 updateVisibleDockRegions(new TaskStack.DockState[] {event.dockState}, -1);
774 }
Winsonbe7607a2015-10-01 17:24:51 -0700775 }
776
777 public final void onBusEvent(final DragEndEvent event) {
778 event.postAnimationTrigger.increment();
779 event.postAnimationTrigger.addLastDecrementRunnable(new Runnable() {
780 @Override
781 public void run() {
782 // Remove the drag view
783 removeView(mDragView);
784 mDragView = null;
Winson882072b2015-10-12 11:26:33 -0700785 updateVisibleDockRegions(null, -1);
Winsonbe7607a2015-10-01 17:24:51 -0700786
787 // Dock the new task if we are hovering over a valid dock state
Winson4165d3362015-10-10 14:40:35 -0700788 if (event.dockState != TaskStack.DockState.NONE) {
Winsone7f138c2015-10-22 16:15:21 -0700789 SystemServicesProxy ssp = Recents.getSystemServices();
Jorim Jaggi75b25972015-10-21 14:51:10 +0200790 ssp.startTaskInDockedMode(event.task.key.id, event.dockState.createMode);
Filip Gruszczynskif48b5852015-10-13 10:28:22 -0700791 launchTask(event.task, null, INVALID_STACK_ID);
Winsonbe7607a2015-10-01 17:24:51 -0700792 }
793 }
794 });
Winson4165d3362015-10-10 14:40:35 -0700795 if (event.dockState == TaskStack.DockState.NONE) {
Winsonbe7607a2015-10-01 17:24:51 -0700796 // Animate the alpha back to what it was before
797 Rect taskBounds = mTaskStackView.getStackAlgorithm().getUntransformedTaskViewBounds();
798 int left = taskBounds.left + (int) ((1f - event.taskView.getScaleX()) * taskBounds.width()) / 2;
799 int top = taskBounds.top + (int) ((1f - event.taskView.getScaleY()) * taskBounds.height()) / 2;
800 event.dragView.animate()
Winson4165d3362015-10-10 14:40:35 -0700801 .scaleX(1f)
802 .scaleY(1f)
Winsonbe7607a2015-10-01 17:24:51 -0700803 .translationX(left + event.taskView.getTranslationX())
804 .translationY(top + event.taskView.getTranslationY())
805 .setDuration(175)
Winson4165d3362015-10-10 14:40:35 -0700806 .setInterpolator(mFastOutSlowInInterpolator)
Winsonbe7607a2015-10-01 17:24:51 -0700807 .withEndAction(event.postAnimationTrigger.decrementAsRunnable())
Winsonbe7607a2015-10-01 17:24:51 -0700808 .start();
Winson4165d3362015-10-10 14:40:35 -0700809
810 // Animate the overlay alpha back to 0
Winson882072b2015-10-12 11:26:33 -0700811 updateVisibleDockRegions(null, -1);
Winsonbe7607a2015-10-01 17:24:51 -0700812 } else {
813 event.postAnimationTrigger.decrement();
814 }
815 }
Winson4165d3362015-10-10 14:40:35 -0700816
817 /**
818 * Updates the dock region to match the specified dock state.
819 */
Winson882072b2015-10-12 11:26:33 -0700820 private void updateVisibleDockRegions(TaskStack.DockState[] newDockStates, int overrideAlpha) {
821 ArraySet<TaskStack.DockState> newDockStatesSet = new ArraySet<>();
822 if (newDockStates != null) {
823 for (TaskStack.DockState dockState : newDockStates) {
824 newDockStatesSet.add(dockState);
825 }
Winson4165d3362015-10-10 14:40:35 -0700826 }
Winson882072b2015-10-12 11:26:33 -0700827 for (TaskStack.DockState dockState : mVisibleDockStates) {
828 TaskStack.DockState.ViewState viewState = dockState.viewState;
829 if (newDockStates == null || !newDockStatesSet.contains(dockState)) {
830 // This is no longer visible, so hide it
831 viewState.startAlphaAnimation(0, 150);
832 } else {
833 // This state is now visible, update the bounds and show it
834 int alpha = (overrideAlpha != -1 ? overrideAlpha : viewState.dockAreaAlpha);
835 viewState.dockAreaOverlay.setBounds(
836 dockState.getDockedBounds(getMeasuredWidth(), getMeasuredHeight()));
837 viewState.dockAreaOverlay.setCallback(this);
838 viewState.startAlphaAnimation(alpha, 150);
839 }
Winson4165d3362015-10-10 14:40:35 -0700840 }
Winson4165d3362015-10-10 14:40:35 -0700841 }
Winson Chung303e1ff2014-03-07 15:06:19 -0800842}