blob: eb419c9684f5c55a0e729b02342efafe1d7a2b33 [file] [log] [blame]
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08001/*
2 * Copyright (C) 2013 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.server.wm;
18
Wale Ogunwale65ebd952018-04-25 15:41:44 -070019import static android.app.ActivityTaskManager.RESIZE_MODE_SYSTEM_SCREEN_ROTATION;
skuhne@google.com322347b2016-12-02 12:54:03 -080020import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY;
Jason Monkba53d8a2017-04-06 18:28:19 +000021import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY;
Jorim Jaggi30d64f32017-04-07 16:33:17 +020022import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
Bryce Lee61fbcbc2017-03-10 14:14:03 -080023import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
Wale Ogunwale68278562017-09-23 17:13:55 -070024import static android.content.res.Configuration.EMPTY;
chaviw8c9d1f52018-07-25 14:56:07 -070025
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080026import static com.android.server.EventLogTags.WM_TASK_REMOVED;
Yi Jin6c6e9ca2018-03-20 16:53:35 -070027import static com.android.server.wm.TaskProto.APP_WINDOW_TOKENS;
28import static com.android.server.wm.TaskProto.BOUNDS;
29import static com.android.server.wm.TaskProto.DEFER_REMOVAL;
30import static com.android.server.wm.TaskProto.FILLS_PARENT;
31import static com.android.server.wm.TaskProto.ID;
32import static com.android.server.wm.TaskProto.TEMP_INSET_BOUNDS;
33import static com.android.server.wm.TaskProto.WINDOW_CONTAINER;
chaviw8c9d1f52018-07-25 14:56:07 -070034import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
35import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
36import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Wale Ogunwale99db1862015-10-23 20:08:22 -070037
Wale Ogunwale0d5609b2017-09-13 05:55:07 -070038import android.annotation.CallSuper;
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010039import android.app.ActivityManager.TaskDescription;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080040import android.content.pm.ActivityInfo;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070041import android.content.res.Configuration;
42import android.graphics.Rect;
Craig Mautner2c2549c2013-11-12 08:31:15 -080043import android.util.EventLog;
Craig Mautner42bf39e2014-02-21 16:46:22 -080044import android.util.Slog;
Steven Timotiusaf03df62017-07-18 16:56:43 -070045import android.util.proto.ProtoOutputStream;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070046import android.view.Surface;
Winson Chungd41f71d2018-03-16 15:26:07 -070047import android.view.SurfaceControl;
chaviw8c9d1f52018-07-25 14:56:07 -070048
Wale Ogunwalec5cc3012017-01-13 13:26:16 -080049import com.android.internal.annotations.VisibleForTesting;
Craig Mautner2c2549c2013-11-12 08:31:15 -080050
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070051import java.io.PrintWriter;
Jorim Jaggi51304d72017-05-17 17:25:32 +020052import java.util.function.Consumer;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070053
Robert Carrf59b8dd2017-10-02 18:58:36 -070054class Task extends WindowContainer<AppWindowToken> {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -080055 static final String TAG = TAG_WITH_CLASS_NAME ? "Task" : TAG_WM;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070056
Wale Ogunwalef6192862016-09-10 13:42:30 -070057 // TODO: Track parent marks like this in WindowContainer.
Craig Mautnerc00204b2013-03-05 15:02:14 -080058 TaskStack mStack;
Craig Mautner83162a92015-01-26 14:43:30 -080059 final int mTaskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070060 final int mUserId;
Wale Ogunwale3eadad72016-10-13 09:16:59 -070061 private boolean mDeferRemoval = false;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080062
Jorim Jaggi0429f352015-12-22 16:29:16 +010063 final Rect mPreparedFrozenBounds = new Rect();
Jorim Jaggi26c8c422016-05-09 19:57:25 -070064 final Configuration mPreparedFrozenMergedConfig = new Configuration();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070065
Jorim Jaggidc249c42015-12-15 14:57:31 -080066 // Bounds used to calculate the insets.
67 private final Rect mTempInsetBounds = new Rect();
68
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070069 // Device rotation as of the last time {@link #mBounds} was set.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070070 private int mRotation;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070071
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070072 // For comparison with DisplayContent bounds.
73 private Rect mTmpRect = new Rect();
74 // For handling display rotations.
75 private Rect mTmpRect2 = new Rect();
Bryce Leef3c6a472017-11-14 14:53:06 -080076 // For retrieving dim bounds
77 private Rect mTmpRect3 = new Rect();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070078
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080079 // Resize mode of the task. See {@link ActivityInfo#resizeMode}
80 private int mResizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -080081
Winson Chungd3395382016-12-13 11:49:09 -080082 // Whether the task supports picture-in-picture.
83 // See {@link ActivityInfo#FLAG_SUPPORTS_PICTURE_IN_PICTURE}
84 private boolean mSupportsPictureInPicture;
85
Chong Zhang3005e752015-09-18 18:46:28 -070086 // Whether the task is currently being drag-resized
87 private boolean mDragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010088 private int mDragResizeMode;
Chong Zhang3005e752015-09-18 18:46:28 -070089
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010090 private TaskDescription mTaskDescription;
91
Robert Carr18f622f2017-05-08 11:20:43 -070092 // If set to true, the task will report that it is not in the floating
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -070093 // state regardless of it's stack affiliation. As the floating state drives
Robert Carr18f622f2017-05-08 11:20:43 -070094 // production of content insets this can be used to preserve them across
95 // stack moves and we in fact do so when moving from full screen to pinned.
96 private boolean mPreserveNonFloatingState = false;
97
Robert Carrf59b8dd2017-10-02 18:58:36 -070098 private Dimmer mDimmer = new Dimmer(this);
99 private final Rect mTmpDimBoundsRect = new Rect();
100
Jorim Jaggi50bf59c2018-03-09 17:29:48 +0100101 /** @see #setCanAffectSystemUiFlags */
102 private boolean mCanAffectSystemUiFlags = true;
103
Bryce Leef3c6a472017-11-14 14:53:06 -0800104 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, int resizeMode,
105 boolean supportsPictureInPicture, TaskDescription taskDescription,
Wale Ogunwale034a8ec2017-09-02 17:14:40 -0700106 TaskWindowContainerController controller) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100107 super(service);
Craig Mautner83162a92015-01-26 14:43:30 -0800108 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800109 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -0700110 mUserId = userId;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800111 mResizeMode = resizeMode;
Winson Chungd3395382016-12-13 11:49:09 -0800112 mSupportsPictureInPicture = supportsPictureInPicture;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800113 setController(controller);
Bryce Leef3c6a472017-11-14 14:53:06 -0800114 setBounds(getOverrideBounds());
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100115 mTaskDescription = taskDescription;
Bryce Lee61fbcbc2017-03-10 14:14:03 -0800116
117 // Tasks have no set orientation value (including SCREEN_ORIENTATION_UNSPECIFIED).
118 setOrientation(SCREEN_ORIENTATION_UNSET);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800119 }
120
121 DisplayContent getDisplayContent() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800122 return mStack != null ? mStack.getDisplayContent() : null;
123 }
124
Wale Ogunwale069bbd32017-02-03 07:58:14 -0800125 private int getAdjustedAddPosition(int suggestedPosition) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800126 final int size = mChildren.size();
127 if (suggestedPosition >= size) {
128 return Math.min(size, suggestedPosition);
129 }
130
131 for (int pos = 0; pos < size && pos < suggestedPosition; ++pos) {
132 // TODO: Confirm that this is the behavior we want long term.
133 if (mChildren.get(pos).removed) {
134 // suggestedPosition assumes removed tokens are actually gone.
135 ++suggestedPosition;
136 }
137 }
138 return Math.min(size, suggestedPosition);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800139 }
140
Wale Ogunwale72919d22016-12-08 18:58:50 -0800141 @Override
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800142 void addChild(AppWindowToken wtoken, int position) {
143 position = getAdjustedAddPosition(position);
144 super.addChild(wtoken, position);
Craig Mautner42bf39e2014-02-21 16:46:22 -0800145 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800146 }
147
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800148 @Override
149 void positionChildAt(int position, AppWindowToken child, boolean includingParents) {
150 position = getAdjustedAddPosition(position);
151 super.positionChildAt(position, child, includingParents);
152 mDeferRemoval = false;
153 }
154
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700155 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700156 for (int i = mChildren.size() - 1; i >= 0; i--) {
157 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800158 return true;
159 }
160 }
161 return false;
162 }
163
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800164 @VisibleForTesting
165 boolean shouldDeferRemoval() {
Wale Ogunwale2c9f2032017-06-02 06:50:50 -0700166 // TODO: This should probably return false if mChildren.isEmpty() regardless if the stack
167 // is animating...
Jorim Jaggia5e10572017-11-15 14:36:26 +0100168 return hasWindowsAlive() && mStack.isSelfOrChildAnimating();
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800169 }
170
Wale Ogunwalef6192862016-09-10 13:42:30 -0700171 @Override
172 void removeIfPossible() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800173 if (shouldDeferRemoval()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800174 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800175 mDeferRemoval = true;
176 return;
177 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800178 removeImmediately();
179 }
180
181 @Override
182 void removeImmediately() {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800183 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800184 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800185 mDeferRemoval = false;
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800186
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800187 super.removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800188 }
189
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700190 void reparent(TaskStack stack, int position, boolean moveParents) {
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800191 if (stack == mStack) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800192 throw new IllegalArgumentException(
193 "task=" + this + " already child of stack=" + mStack);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800194 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800195 if (DEBUG_STACK) Slog.i(TAG, "reParentTask: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800196 + " from stack=" + mStack);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800197 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "reParentTask");
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800198 final DisplayContent prevDisplayContent = getDisplayContent();
199
Robert Carr18f622f2017-05-08 11:20:43 -0700200 // If we are moving from the fullscreen stack to the pinned stack
201 // then we want to preserve our insets so that there will not
202 // be a jump in the area covered by system decorations. We rely
203 // on the pinned animation to later unset this value.
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700204 if (stack.inPinnedWindowingMode()) {
Robert Carr18f622f2017-05-08 11:20:43 -0700205 mPreserveNonFloatingState = true;
206 } else {
207 mPreserveNonFloatingState = false;
208 }
209
Andrii Kulian441e4492016-09-29 15:25:00 -0700210 getParent().removeChild(this);
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700211 stack.addTask(this, position, showForAllUsers(), moveParents);
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800212
213 // Relayout display(s).
214 final DisplayContent displayContent = stack.getDisplayContent();
215 displayContent.setLayoutNeeded();
216 if (prevDisplayContent != displayContent) {
217 onDisplayChanged(displayContent);
218 prevDisplayContent.setLayoutNeeded();
219 }
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800220 }
221
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700222 /** @see com.android.server.am.ActivityTaskManagerService#positionTaskInStack(int, int, int). */
Bryce Leef3c6a472017-11-14 14:53:06 -0800223 void positionAt(int position) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800224 mStack.positionChildAt(position, this, false /* includingParents */);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700225 }
226
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700227 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -0800228 void onParentSet() {
Robert Carrb1579c82017-09-05 14:54:47 -0700229 super.onParentSet();
230
Andrii Kuliand2765632016-12-12 22:26:34 -0800231 // Update task bounds if needed.
232 updateDisplayInfo(getDisplayContent());
233
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700234 if (getWindowConfiguration().windowsAreScaleable()) {
Andrii Kuliand2765632016-12-12 22:26:34 -0800235 // We force windows out of SCALING_MODE_FREEZE so that we can continue to animate them
236 // while a resize is pending.
237 forceWindowsScaleable(true /* force */);
238 } else {
239 forceWindowsScaleable(false /* force */);
240 }
241 }
242
243 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700244 void removeChild(AppWindowToken token) {
245 if (!mChildren.contains(token)) {
246 Slog.e(TAG, "removeChild: token=" + this + " not found.");
247 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700248 }
249
Wale Ogunwalef6192862016-09-10 13:42:30 -0700250 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700251
Wale Ogunwalef6192862016-09-10 13:42:30 -0700252 if (mChildren.isEmpty()) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800253 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800254 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700255 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800256 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800257 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800258 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800259
Craig Mautnercbd84af2014-10-22 13:21:22 -0700260 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700261 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
262 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700263 }
264 }
265
Bryce Leef3c6a472017-11-14 14:53:06 -0800266 public int setBounds(Rect bounds, boolean forceResize) {
267 final int boundsChanged = setBounds(bounds);
268
269 if (forceResize && (boundsChanged & BOUNDS_CHANGE_SIZE) != BOUNDS_CHANGE_SIZE) {
270 onResize();
271 return BOUNDS_CHANGE_SIZE | boundsChanged;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700272 }
Wale Ogunwale68278562017-09-23 17:13:55 -0700273
Bryce Leef3c6a472017-11-14 14:53:06 -0800274 return boundsChanged;
275 }
276
277 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
278 @Override
279 public int setBounds(Rect bounds) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700280 int rotation = Surface.ROTATION_0;
281 final DisplayContent displayContent = mStack.getDisplayContent();
282 if (displayContent != null) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700283 rotation = displayContent.getDisplayInfo().rotation;
Bryce Leef3c6a472017-11-14 14:53:06 -0800284 } else if (bounds == null) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700285 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700286 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700287 }
Bryce Leef3c6a472017-11-14 14:53:06 -0800288
289 if (equivalentOverrideBounds(bounds)) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700290 return BOUNDS_CHANGE_NONE;
291 }
292
Bryce Leef3c6a472017-11-14 14:53:06 -0800293 final int boundsChange = super.setBounds(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800294
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700295 mRotation = rotation;
Robert Carrf59b8dd2017-10-02 18:58:36 -0700296
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700297 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700298 }
299
Jorim Jaggidc249c42015-12-15 14:57:31 -0800300 /**
301 * Sets the bounds used to calculate the insets. See
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700302 * {@link android.app.IActivityTaskManager#resizeDockedStack} why this is needed.
Jorim Jaggidc249c42015-12-15 14:57:31 -0800303 */
304 void setTempInsetBounds(Rect tempInsetBounds) {
305 if (tempInsetBounds != null) {
306 mTempInsetBounds.set(tempInsetBounds);
307 } else {
308 mTempInsetBounds.setEmpty();
309 }
310 }
311
312 /**
313 * Gets the bounds used to calculate the insets. See
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700314 * {@link android.app.IActivityTaskManager#resizeDockedStack} why this is needed.
Jorim Jaggidc249c42015-12-15 14:57:31 -0800315 */
316 void getTempInsetBounds(Rect out) {
317 out.set(mTempInsetBounds);
318 }
319
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800320 void setResizeable(int resizeMode) {
321 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800322 }
323
324 boolean isResizeable() {
Winson Chungd3395382016-12-13 11:49:09 -0800325 return ActivityInfo.isResizeableMode(mResizeMode) || mSupportsPictureInPicture
326 || mService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800327 }
328
skuhne@google.com322347b2016-12-02 12:54:03 -0800329 /**
330 * Tests if the orientation should be preserved upon user interactive resizig operations.
331
332 * @return true if orientation should not get changed upon resizing operation.
333 */
334 boolean preserveOrientationOnResize() {
335 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
336 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
337 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
338 }
339
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800340 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700341 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800342 }
343
Jorim Jaggi0429f352015-12-22 16:29:16 +0100344 /**
345 * Prepares the task bounds to be frozen with the current size. See
346 * {@link AppWindowToken#freezeBounds}.
347 */
348 void prepareFreezingBounds() {
Bryce Leef3c6a472017-11-14 14:53:06 -0800349 mPreparedFrozenBounds.set(getBounds());
Andrii Kulian441e4492016-09-29 15:25:00 -0700350 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100351 }
352
Chong Zhang5117e272016-05-03 12:47:34 -0700353 /**
354 * Align the task to the adjusted bounds.
355 *
356 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
357 * @param tempInsetBounds Insets bounds for the task.
358 * @param alignBottom True if the task's bottom should be aligned to the adjusted
359 * bounds's bottom; false if the task's top should be aligned
360 * the adjusted bounds's top.
361 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700362 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Wale Ogunwale68278562017-09-23 17:13:55 -0700363 if (!isResizeable() || EMPTY.equals(getOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700364 return;
365 }
366
367 getBounds(mTmpRect2);
368 if (alignBottom) {
369 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
370 mTmpRect2.offset(0, offsetY);
371 } else {
372 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
373 }
374 setTempInsetBounds(tempInsetBounds);
Bryce Leef3c6a472017-11-14 14:53:06 -0800375 setBounds(mTmpRect2, false /* forced */);
Chong Zhang5117e272016-05-03 12:47:34 -0700376 }
377
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700378 /** Return true if the current bound can get outputted to the rest of the system as-is. */
379 private boolean useCurrentBounds() {
Wale Ogunwale926aade2017-08-29 11:24:37 -0700380 final DisplayContent displayContent = getDisplayContent();
Bryce Leef3c6a472017-11-14 14:53:06 -0800381 return matchParentBounds()
Wale Ogunwale926aade2017-08-29 11:24:37 -0700382 || !inSplitScreenSecondaryWindowingMode()
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700383 || displayContent == null
Matthew Ng64e77cf2017-10-31 14:01:31 -0700384 || displayContent.getSplitScreenPrimaryStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700385 }
386
Bryce Leef3c6a472017-11-14 14:53:06 -0800387 @Override
388 public void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700389 if (useCurrentBounds()) {
390 // No need to adjust the output bounds if fullscreen or the docked stack is visible
391 // since it is already what we want to represent to the rest of the system.
Bryce Leef3c6a472017-11-14 14:53:06 -0800392 super.getBounds(out);
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700393 return;
394 }
395
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800396 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
397 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Bryce Leef3c6a472017-11-14 14:53:06 -0800398 mStack.getDisplayContent().getBounds(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700399 }
400
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800401 /**
402 * Calculate the maximum visible area of this task. If the task has only one app,
403 * the result will be visible frame of that app. If the task has more than one apps,
404 * we search from top down if the next app got different visible area.
405 *
406 * This effort is to handle the case where some task (eg. GMail composer) might pop up
407 * a dialog that's different in size from the activity below, in which case we should
408 * be dimming the entire task area behind the dialog.
409 *
410 * @param out Rect containing the max visible bounds.
411 * @return true if the task has some visible app windows; false otherwise.
412 */
chaviw553b0212018-07-12 13:37:01 -0700413 private boolean getMaxVisibleBounds(Rect out) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800414 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700415 for (int i = mChildren.size() - 1; i >= 0; i--) {
416 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800417 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700418 if (token.mIsExiting || token.isClientHidden() || token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800419 continue;
420 }
421 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800422 if (win == null) {
423 continue;
424 }
425 if (!foundTop) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800426 foundTop = true;
chaviw553b0212018-07-12 13:37:01 -0700427 out.setEmpty();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800428 }
chaviw553b0212018-07-12 13:37:01 -0700429
430 win.getMaxVisibleBounds(out);
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800431 }
432 return foundTop;
433 }
434
435 /** Bounds of the task to be used for dimming, as well as touch related tests. */
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800436 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700437 final DisplayContent displayContent = mStack.getDisplayContent();
438 // It doesn't matter if we in particular are part of the resize, since we couldn't have
439 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700440 final boolean dockedResizing = displayContent != null
441 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800442 if (useCurrentBounds()) {
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700443 if (inFreeformWindowingMode() && getMaxVisibleBounds(out)) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800444 return;
445 }
446
Bryce Leef3c6a472017-11-14 14:53:06 -0800447 if (!matchParentBounds()) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700448 // When minimizing the docked stack when going home, we don't adjust the task bounds
449 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700450 //
451 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
452 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
453 // should keep up with the divider.
454 if (dockedResizing) {
455 mStack.getBounds(out);
456 } else {
457 mStack.getBounds(mTmpRect);
Bryce Leef3c6a472017-11-14 14:53:06 -0800458 mTmpRect.intersect(getBounds());
chaviw2fb06bc2018-01-19 17:09:15 -0800459 out.set(mTmpRect);
Robert Carra86a6bf2016-04-08 17:34:16 -0700460 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700461 } else {
Bryce Leef3c6a472017-11-14 14:53:06 -0800462 out.set(getBounds());
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700463 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800464 return;
465 }
466
Wale Ogunwalef6192862016-09-10 13:42:30 -0700467 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
468 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
469 if (displayContent != null) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800470 displayContent.getBounds(out);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700471 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800472 }
473
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100474 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800475 if (mDragResizing != dragResizing) {
chaviw8c9d1f52018-07-25 14:56:07 -0700476 // No need to check if the mode is allowed if it's leaving dragResize
477 if (dragResizing && !DragResizeMode.isModeAllowedForStack(mStack, dragResizeMode)) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100478 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
479 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
480 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800481 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100482 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800483 resetDragResizingChangeReported();
484 }
485 }
486
Chong Zhang3005e752015-09-18 18:46:28 -0700487 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700488 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700489 }
490
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100491 int getDragResizeMode() {
492 return mDragResizeMode;
493 }
494
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700495 void updateDisplayInfo(final DisplayContent displayContent) {
496 if (displayContent == null) {
497 return;
498 }
Bryce Leef3c6a472017-11-14 14:53:06 -0800499 if (matchParentBounds()) {
Wale Ogunwale68278562017-09-23 17:13:55 -0700500 // TODO: Yeah...not sure if this works with WindowConfiguration, but shouldn't be a
501 // problem once we move mBounds into WindowConfiguration.
Bryce Leef3c6a472017-11-14 14:53:06 -0800502 setBounds(null);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700503 return;
504 }
505 final int newRotation = displayContent.getDisplayInfo().rotation;
506 if (mRotation == newRotation) {
507 return;
508 }
509
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800510 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700511 // - We don't want the task to move around on the screen when this happens, so update the
512 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800513 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700514 // from its stack. The stack will take care of task rotation for the other case.
Bryce Leef3c6a472017-11-14 14:53:06 -0800515 mTmpRect2.set(getBounds());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800516
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700517 if (!getWindowConfiguration().canResizeTask()) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800518 setBounds(mTmpRect2);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800519 return;
520 }
521
Wale Ogunwale94744212015-09-21 19:01:47 -0700522 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Bryce Leef3c6a472017-11-14 14:53:06 -0800523 if (setBounds(mTmpRect2) != BOUNDS_CHANGE_NONE) {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800524 final TaskWindowContainerController controller = getController();
525 if (controller != null) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800526 controller.requestResize(getBounds(), RESIZE_MODE_SYSTEM_SCREEN_ROTATION);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800527 }
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700528 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700529 }
530
Wale Ogunwalef6192862016-09-10 13:42:30 -0700531 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700532 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700533 for (int i = mChildren.size() - 1; i >= 0; --i) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200534 mChildren.get(i).cancelAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700535 }
536 }
537
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700538 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700539 final int tokensCount = mChildren.size();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800540 return (tokensCount != 0) && mChildren.get(tokensCount - 1).mShowForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700541 }
542
Robert Carr7e4c90e2017-02-15 19:52:38 -0800543 /**
544 * When we are in a floating stack (Freeform, Pinned, ...) we calculate
545 * insets differently. However if we are animating to the fullscreen stack
546 * we need to begin calculating insets as if we were fullscreen, otherwise
547 * we will have a jump at the end.
548 */
Robert Carre6275582016-02-29 15:45:45 -0800549 boolean isFloating() {
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700550 return getWindowConfiguration().tasksAreFloating()
Robert Carr18f622f2017-05-08 11:20:43 -0700551 && !mStack.isAnimatingBoundsToFullscreen() && !mPreserveNonFloatingState;
Robert Carre6275582016-02-29 15:45:45 -0800552 }
553
Winson Chungd41f71d2018-03-16 15:26:07 -0700554 @Override
555 public SurfaceControl getAnimationLeashParent() {
556 // Reparent to the animation layer so that we aren't clipped by the non-minimized
557 // stack bounds, currently we only animate the task for the recents animation
Jorim Jaggi391790622018-04-18 15:30:44 +0200558 return getAppAnimationLayer(ANIMATION_LAYER_STANDARD);
Winson Chungd41f71d2018-03-16 15:26:07 -0700559 }
560
561 boolean isTaskAnimating() {
562 final RecentsAnimationController recentsAnim = mService.getRecentsAnimationController();
563 if (recentsAnim != null) {
564 if (recentsAnim.isAnimatingTask(this)) {
565 return true;
566 }
567 }
568 return false;
569 }
570
Chong Zhangd8ceb852015-11-11 14:53:41 -0800571 WindowState getTopVisibleAppMainWindow() {
572 final AppWindowToken token = getTopVisibleAppToken();
573 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700574 }
575
Jorim Jaggie6c6ecb2017-07-20 18:09:20 +0200576 AppWindowToken getTopFullscreenAppToken() {
577 for (int i = mChildren.size() - 1; i >= 0; i--) {
578 final AppWindowToken token = mChildren.get(i);
579 final WindowState win = token.findMainWindow();
580 if (win != null && win.mAttrs.isFullscreen()) {
581 return token;
582 }
583 }
584 return null;
585 }
586
Chong Zhangd8ceb852015-11-11 14:53:41 -0800587 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700588 for (int i = mChildren.size() - 1; i >= 0; i--) {
589 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800590 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700591 if (!token.mIsExiting && !token.isClientHidden() && !token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800592 return token;
593 }
594 }
595 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700596 }
597
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700598 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700599 if (useCurrentBounds()) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800600 return matchParentBounds();
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700601 }
602 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
603 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
604 // system.
605 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700606 }
607
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700608 void forceWindowsScaleable(boolean force) {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700609 mService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700610 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700611 for (int i = mChildren.size() - 1; i >= 0; i--) {
612 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700613 }
614 } finally {
Adrian Roos111aff92017-09-27 18:11:46 +0200615 mService.closeSurfaceTransaction("forceWindowsScaleable");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700616 }
617 }
618
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100619 void setTaskDescription(TaskDescription taskDescription) {
620 mTaskDescription = taskDescription;
621 }
622
623 TaskDescription getTaskDescription() {
624 return mTaskDescription;
625 }
626
Wale Ogunwalef6192862016-09-10 13:42:30 -0700627 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700628 boolean fillsParent() {
Bryce Leef3c6a472017-11-14 14:53:06 -0800629 return matchParentBounds() || !getWindowConfiguration().canResizeTask();
Wale Ogunwale51362492016-09-08 17:49:17 -0700630 }
631
Jorim Jaggi329a5832017-01-05 18:57:12 +0100632 @Override
Jorim Jaggifb9d78a2017-01-05 18:57:12 +0100633 TaskWindowContainerController getController() {
634 return (TaskWindowContainerController) super.getController();
635 }
636
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700637 @Override
Jorim Jaggi51304d72017-05-17 17:25:32 +0200638 void forAllTasks(Consumer<Task> callback) {
639 callback.accept(this);
640 }
641
Jorim Jaggi50bf59c2018-03-09 17:29:48 +0100642 /**
643 * @param canAffectSystemUiFlags If false, all windows in this task can not affect SystemUI
644 * flags. See {@link WindowState#canAffectSystemUiFlags()}.
645 */
646 void setCanAffectSystemUiFlags(boolean canAffectSystemUiFlags) {
647 mCanAffectSystemUiFlags = canAffectSystemUiFlags;
648 }
649
650 /**
651 * @see #setCanAffectSystemUiFlags
652 */
653 boolean canAffectSystemUiFlags() {
654 return mCanAffectSystemUiFlags;
655 }
656
chaviw87ca63a2018-03-26 14:06:17 -0700657 void dontAnimateDimExit() {
658 mDimmer.dontAnimateExit();
659 }
660
Jorim Jaggi51304d72017-05-17 17:25:32 +0200661 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800662 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700663 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800664 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700665
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700666 String getName() {
667 return toShortString();
668 }
669
Robert Carr18f622f2017-05-08 11:20:43 -0700670 void clearPreserveNonFloatingState() {
671 mPreserveNonFloatingState = false;
672 }
673
chaviw2fb06bc2018-01-19 17:09:15 -0800674 @Override
Robert Carrf59b8dd2017-10-02 18:58:36 -0700675 Dimmer getDimmer() {
676 return mDimmer;
677 }
678
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700679 @Override
Robert Carrf59b8dd2017-10-02 18:58:36 -0700680 void prepareSurfaces() {
681 mDimmer.resetDimStates();
682 super.prepareSurfaces();
683 getDimBounds(mTmpDimBoundsRect);
chaviwe07246a2017-12-12 16:18:29 -0800684
685 // Bounds need to be relative, as the dim layer is a child.
686 mTmpDimBoundsRect.offsetTo(0, 0);
Robert Carrf59b8dd2017-10-02 18:58:36 -0700687 if (mDimmer.updateDims(getPendingTransaction(), mTmpDimBoundsRect)) {
688 scheduleAnimation();
689 }
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700690 }
691
Wale Ogunwale0d5609b2017-09-13 05:55:07 -0700692 @CallSuper
693 @Override
Adrian Roos4921ccf2017-09-28 16:54:06 +0200694 public void writeToProto(ProtoOutputStream proto, long fieldId, boolean trim) {
Steven Timotiusaf03df62017-07-18 16:56:43 -0700695 final long token = proto.start(fieldId);
Adrian Roos4921ccf2017-09-28 16:54:06 +0200696 super.writeToProto(proto, WINDOW_CONTAINER, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -0700697 proto.write(ID, mTaskId);
698 for (int i = mChildren.size() - 1; i >= 0; i--) {
699 final AppWindowToken appWindowToken = mChildren.get(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +0200700 appWindowToken.writeToProto(proto, APP_WINDOW_TOKENS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -0700701 }
Bryce Leef3c6a472017-11-14 14:53:06 -0800702 proto.write(FILLS_PARENT, matchParentBounds());
703 getBounds().writeToProto(proto, BOUNDS);
Steven Timotiusaf03df62017-07-18 16:56:43 -0700704 mTempInsetBounds.writeToProto(proto, TEMP_INSET_BOUNDS);
Vishnu Nair04ab4392018-01-10 11:00:06 -0800705 proto.write(DEFER_REMOVAL, mDeferRemoval);
Steven Timotiusaf03df62017-07-18 16:56:43 -0700706 proto.end(token);
707 }
708
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200709 @Override
710 public void dump(PrintWriter pw, String prefix, boolean dumpAll) {
711 super.dump(pw, prefix, dumpAll);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800712 final String doublePrefix = prefix + " ";
713
714 pw.println(prefix + "taskId=" + mTaskId);
Bryce Leef3c6a472017-11-14 14:53:06 -0800715 pw.println(doublePrefix + "mBounds=" + getBounds().toShortString());
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800716 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700717 pw.println(doublePrefix + "appTokens=" + mChildren);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800718 pw.println(doublePrefix + "mTempInsetBounds=" + mTempInsetBounds.toShortString());
719
720 final String triplePrefix = doublePrefix + " ";
Jorim Jaggi153dc9d2018-02-23 13:28:15 +0100721 final String quadruplePrefix = triplePrefix + " ";
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800722
Wale Ogunwalef6192862016-09-10 13:42:30 -0700723 for (int i = mChildren.size() - 1; i >= 0; i--) {
724 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800725 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
Jorim Jaggi153dc9d2018-02-23 13:28:15 +0100726 wtoken.dump(pw, quadruplePrefix, dumpAll);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800727 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700728 }
Robert Carrf59b8dd2017-10-02 18:58:36 -0700729
730 String toShortString() {
731 return "Task=" + mTaskId;
732 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800733}