blob: e5055e92828e4a5d1058b0335ebcb8502c175fb5 [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
Jorim Jaggid53f0922016-04-06 22:16:23 -070019import static android.app.ActivityManager.RESIZE_MODE_SYSTEM_SCREEN_ROTATION;
Jason Monkba53d8a2017-04-06 18:28:19 +000020import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
Jorim Jaggi30d64f32017-04-07 16:33:17 +020021import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
skuhne@google.com322347b2016-12-02 12:54:03 -080022import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY;
Jason Monkba53d8a2017-04-06 18:28:19 +000023import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY;
Jorim Jaggi30d64f32017-04-07 16:33:17 +020024import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
Bryce Lee61fbcbc2017-03-10 14:14:03 -080025import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
Winson Chungbe9be7f2017-06-28 10:55:22 -070026import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
27
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080028import static com.android.server.EventLogTags.WM_TASK_REMOVED;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080029import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
Jorim Jaggid53f0922016-04-06 22:16:23 -070030import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
31import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Wale Ogunwale99db1862015-10-23 20:08:22 -070032
Wale Ogunwale3797c222015-10-27 14:21:58 -070033import android.app.ActivityManager.StackId;
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010034import android.app.ActivityManager.TaskDescription;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080035import android.content.pm.ActivityInfo;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070036import android.content.res.Configuration;
37import android.graphics.Rect;
Craig Mautner2c2549c2013-11-12 08:31:15 -080038import android.util.EventLog;
Craig Mautner42bf39e2014-02-21 16:46:22 -080039import android.util.Slog;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070040import android.view.DisplayInfo;
41import android.view.Surface;
42
Wale Ogunwalec5cc3012017-01-13 13:26:16 -080043import com.android.internal.annotations.VisibleForTesting;
Winson Chungbe9be7f2017-06-28 10:55:22 -070044import com.android.server.wm.DimLayer.DimLayerUser;
Craig Mautner2c2549c2013-11-12 08:31:15 -080045
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070046import java.io.PrintWriter;
Jorim Jaggi51304d72017-05-17 17:25:32 +020047import java.util.function.Consumer;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070048
Wale Ogunwalef6192862016-09-10 13:42:30 -070049class Task extends WindowContainer<AppWindowToken> implements DimLayer.DimLayerUser {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -080050 static final String TAG = TAG_WITH_CLASS_NAME ? "Task" : TAG_WM;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070051 // Return value from {@link setBounds} indicating no change was made to the Task bounds.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070052 private static final int BOUNDS_CHANGE_NONE = 0;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070053 // Return value from {@link setBounds} indicating the position of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070054 private static final int BOUNDS_CHANGE_POSITION = 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070055 // Return value from {@link setBounds} indicating the size of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070056 private static final int BOUNDS_CHANGE_SIZE = 1 << 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070057
Wale Ogunwalef6192862016-09-10 13:42:30 -070058 // TODO: Track parent marks like this in WindowContainer.
Craig Mautnerc00204b2013-03-05 15:02:14 -080059 TaskStack mStack;
Craig Mautner83162a92015-01-26 14:43:30 -080060 final int mTaskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070061 final int mUserId;
Wale Ogunwale3eadad72016-10-13 09:16:59 -070062 private boolean mDeferRemoval = false;
Craig Mautnere3119b72015-01-20 15:02:36 -080063 final WindowManagerService mService;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080064
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070065 // Content limits relative to the DisplayContent this sits in.
66 private Rect mBounds = new Rect();
Jorim Jaggi0429f352015-12-22 16:29:16 +010067 final Rect mPreparedFrozenBounds = new Rect();
Jorim Jaggi26c8c422016-05-09 19:57:25 -070068 final Configuration mPreparedFrozenMergedConfig = new Configuration();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070069
Jorim Jaggidc249c42015-12-15 14:57:31 -080070 // Bounds used to calculate the insets.
71 private final Rect mTempInsetBounds = new Rect();
72
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070073 // Device rotation as of the last time {@link #mBounds} was set.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070074 private int mRotation;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070075
76 // Whether mBounds is fullscreen
Wale Ogunwale5a2183d2016-09-19 12:26:13 -070077 private boolean mFillsParent = true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070078
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070079 // For comparison with DisplayContent bounds.
80 private Rect mTmpRect = new Rect();
81 // For handling display rotations.
82 private Rect mTmpRect2 = new Rect();
83
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080084 // Resize mode of the task. See {@link ActivityInfo#resizeMode}
85 private int mResizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -080086
Winson Chungd3395382016-12-13 11:49:09 -080087 // Whether the task supports picture-in-picture.
88 // See {@link ActivityInfo#FLAG_SUPPORTS_PICTURE_IN_PICTURE}
89 private boolean mSupportsPictureInPicture;
90
Chong Zhang3005e752015-09-18 18:46:28 -070091 // Whether the task is currently being drag-resized
92 private boolean mDragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010093 private int mDragResizeMode;
Chong Zhang3005e752015-09-18 18:46:28 -070094
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080095 private boolean mHomeTask;
96
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010097 private TaskDescription mTaskDescription;
98
Robert Carr18f622f2017-05-08 11:20:43 -070099 // If set to true, the task will report that it is not in the floating
100 // state regardless of it's stack affilation. As the floating state drives
101 // production of content insets this can be used to preserve them across
102 // stack moves and we in fact do so when moving from full screen to pinned.
103 private boolean mPreserveNonFloatingState = false;
104
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700105 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, Rect bounds,
Wale Ogunwale069bbd32017-02-03 07:58:14 -0800106 Configuration overrideConfig, int resizeMode, boolean supportsPictureInPicture,
107 boolean homeTask, TaskDescription taskDescription,
Winson Chungd3395382016-12-13 11:49:09 -0800108 TaskWindowContainerController controller) {
Craig Mautner83162a92015-01-26 14:43:30 -0800109 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800110 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -0700111 mUserId = userId;
Craig Mautnere3119b72015-01-20 15:02:36 -0800112 mService = service;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800113 mResizeMode = resizeMode;
Winson Chungd3395382016-12-13 11:49:09 -0800114 mSupportsPictureInPicture = supportsPictureInPicture;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800115 mHomeTask = homeTask;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800116 setController(controller);
Andrii Kulian8072d112016-09-16 11:11:01 -0700117 setBounds(bounds, overrideConfig);
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100118 mTaskDescription = taskDescription;
Bryce Lee61fbcbc2017-03-10 14:14:03 -0800119
120 // Tasks have no set orientation value (including SCREEN_ORIENTATION_UNSPECIFIED).
121 setOrientation(SCREEN_ORIENTATION_UNSET);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800122 }
123
124 DisplayContent getDisplayContent() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800125 return mStack != null ? mStack.getDisplayContent() : null;
126 }
127
Wale Ogunwale069bbd32017-02-03 07:58:14 -0800128 private int getAdjustedAddPosition(int suggestedPosition) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800129 final int size = mChildren.size();
130 if (suggestedPosition >= size) {
131 return Math.min(size, suggestedPosition);
132 }
133
134 for (int pos = 0; pos < size && pos < suggestedPosition; ++pos) {
135 // TODO: Confirm that this is the behavior we want long term.
136 if (mChildren.get(pos).removed) {
137 // suggestedPosition assumes removed tokens are actually gone.
138 ++suggestedPosition;
139 }
140 }
141 return Math.min(size, suggestedPosition);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800142 }
143
Wale Ogunwale72919d22016-12-08 18:58:50 -0800144 @Override
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800145 void addChild(AppWindowToken wtoken, int position) {
146 position = getAdjustedAddPosition(position);
147 super.addChild(wtoken, position);
Craig Mautner42bf39e2014-02-21 16:46:22 -0800148 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800149 }
150
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800151 @Override
152 void positionChildAt(int position, AppWindowToken child, boolean includingParents) {
153 position = getAdjustedAddPosition(position);
154 super.positionChildAt(position, child, includingParents);
155 mDeferRemoval = false;
156 }
157
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700158 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700159 for (int i = mChildren.size() - 1; i >= 0; i--) {
160 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800161 return true;
162 }
163 }
164 return false;
165 }
166
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800167 @VisibleForTesting
168 boolean shouldDeferRemoval() {
Wale Ogunwale2c9f2032017-06-02 06:50:50 -0700169 // TODO: This should probably return false if mChildren.isEmpty() regardless if the stack
170 // is animating...
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800171 return hasWindowsAlive() && mStack.isAnimating();
172 }
173
Wale Ogunwalef6192862016-09-10 13:42:30 -0700174 @Override
175 void removeIfPossible() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800176 if (shouldDeferRemoval()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800177 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800178 mDeferRemoval = true;
179 return;
180 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800181 removeImmediately();
182 }
183
184 @Override
185 void removeImmediately() {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800186 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800187 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800188 mDeferRemoval = false;
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800189
190 // Make sure to remove dim layer user first before removing task its from parent.
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700191 DisplayContent content = getDisplayContent();
192 if (content != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800193 content.mDimLayerController.removeDimLayerUser(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700194 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800195
196 super.removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800197 }
198
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700199 void reparent(TaskStack stack, int position, boolean moveParents) {
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800200 if (stack == mStack) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800201 throw new IllegalArgumentException(
202 "task=" + this + " already child of stack=" + mStack);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800203 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800204 if (DEBUG_STACK) Slog.i(TAG, "reParentTask: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800205 + " from stack=" + mStack);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800206 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "reParentTask");
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800207 final DisplayContent prevDisplayContent = getDisplayContent();
208
Robert Carr18f622f2017-05-08 11:20:43 -0700209 // If we are moving from the fullscreen stack to the pinned stack
210 // then we want to preserve our insets so that there will not
211 // be a jump in the area covered by system decorations. We rely
212 // on the pinned animation to later unset this value.
213 if (stack.mStackId == PINNED_STACK_ID) {
214 mPreserveNonFloatingState = true;
215 } else {
216 mPreserveNonFloatingState = false;
217 }
218
Andrii Kulian441e4492016-09-29 15:25:00 -0700219 getParent().removeChild(this);
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700220 stack.addTask(this, position, showForAllUsers(), moveParents);
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800221
222 // Relayout display(s).
223 final DisplayContent displayContent = stack.getDisplayContent();
224 displayContent.setLayoutNeeded();
225 if (prevDisplayContent != displayContent) {
226 onDisplayChanged(displayContent);
227 prevDisplayContent.setLayoutNeeded();
228 }
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800229 }
230
Andrii Kuliand2765632016-12-12 22:26:34 -0800231 /** @see com.android.server.am.ActivityManagerService#positionTaskInStack(int, int, int). */
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800232 void positionAt(int position, Rect bounds, Configuration overrideConfig) {
233 mStack.positionChildAt(position, this, false /* includingParents */);
Andrii Kulian1779e612016-10-12 21:58:25 -0700234 resizeLocked(bounds, overrideConfig, false /* force */);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700235 }
236
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700237 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -0800238 void onParentSet() {
239 // Update task bounds if needed.
240 updateDisplayInfo(getDisplayContent());
241
242 if (StackId.windowsAreScaleable(mStack.mStackId)) {
243 // We force windows out of SCALING_MODE_FREEZE so that we can continue to animate them
244 // while a resize is pending.
245 forceWindowsScaleable(true /* force */);
246 } else {
247 forceWindowsScaleable(false /* force */);
248 }
249 }
250
251 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700252 void removeChild(AppWindowToken token) {
253 if (!mChildren.contains(token)) {
254 Slog.e(TAG, "removeChild: token=" + this + " not found.");
255 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700256 }
257
Wale Ogunwalef6192862016-09-10 13:42:30 -0700258 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700259
Wale Ogunwalef6192862016-09-10 13:42:30 -0700260 if (mChildren.isEmpty()) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800261 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800262 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700263 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800264 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800265 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800266 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800267
Craig Mautnercbd84af2014-10-22 13:21:22 -0700268 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700269 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
270 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700271 }
272 }
273
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700274 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
Andrii Kulian8072d112016-09-16 11:11:01 -0700275 private int setBounds(Rect bounds, Configuration overrideConfig) {
276 if (overrideConfig == null) {
277 overrideConfig = Configuration.EMPTY;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700278 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700279 if (bounds == null && !Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700280 throw new IllegalArgumentException("null bounds but non empty configuration: "
Andrii Kulian8072d112016-09-16 11:11:01 -0700281 + overrideConfig);
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700282 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700283 if (bounds != null && Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700284 throw new IllegalArgumentException("non null bounds, but empty configuration");
285 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700286 boolean oldFullscreen = mFillsParent;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700287 int rotation = Surface.ROTATION_0;
288 final DisplayContent displayContent = mStack.getDisplayContent();
289 if (displayContent != null) {
290 displayContent.getLogicalDisplayRect(mTmpRect);
291 rotation = displayContent.getDisplayInfo().rotation;
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700292 mFillsParent = bounds == null;
293 if (mFillsParent) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700294 bounds = mTmpRect;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700295 }
296 }
297
298 if (bounds == null) {
299 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700300 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700301 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700302 if (mBounds.equals(bounds) && oldFullscreen == mFillsParent && mRotation == rotation) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700303 return BOUNDS_CHANGE_NONE;
304 }
305
306 int boundsChange = BOUNDS_CHANGE_NONE;
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700307 if (mBounds.left != bounds.left || mBounds.top != bounds.top) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700308 boundsChange |= BOUNDS_CHANGE_POSITION;
309 }
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700310 if (mBounds.width() != bounds.width() || mBounds.height() != bounds.height()) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700311 boundsChange |= BOUNDS_CHANGE_SIZE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700312 }
313
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700314 mBounds.set(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800315
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700316 mRotation = rotation;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700317 if (displayContent != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800318 displayContent.mDimLayerController.updateDimLayer(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700319 }
Andrii Kulian441e4492016-09-29 15:25:00 -0700320 onOverrideConfigurationChanged(mFillsParent ? Configuration.EMPTY : overrideConfig);
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700321 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700322 }
323
Jorim Jaggidc249c42015-12-15 14:57:31 -0800324 /**
325 * Sets the bounds used to calculate the insets. See
326 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
327 */
328 void setTempInsetBounds(Rect tempInsetBounds) {
329 if (tempInsetBounds != null) {
330 mTempInsetBounds.set(tempInsetBounds);
331 } else {
332 mTempInsetBounds.setEmpty();
333 }
334 }
335
336 /**
337 * Gets the bounds used to calculate the insets. See
338 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
339 */
340 void getTempInsetBounds(Rect out) {
341 out.set(mTempInsetBounds);
342 }
343
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800344 void setResizeable(int resizeMode) {
345 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800346 }
347
348 boolean isResizeable() {
Winson Chungd3395382016-12-13 11:49:09 -0800349 return ActivityInfo.isResizeableMode(mResizeMode) || mSupportsPictureInPicture
350 || mService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800351 }
352
skuhne@google.com322347b2016-12-02 12:54:03 -0800353 /**
354 * Tests if the orientation should be preserved upon user interactive resizig operations.
355
356 * @return true if orientation should not get changed upon resizing operation.
357 */
358 boolean preserveOrientationOnResize() {
359 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
360 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
361 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
362 }
363
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800364 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700365 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800366 }
367
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800368 boolean isHomeTask() {
369 return mHomeTask;
370 }
371
Andrii Kulian8072d112016-09-16 11:11:01 -0700372 boolean resizeLocked(Rect bounds, Configuration overrideConfig, boolean forced) {
373 int boundsChanged = setBounds(bounds, overrideConfig);
Chong Zhang87b21722015-09-21 15:39:51 -0700374 if (forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700375 boundsChanged |= BOUNDS_CHANGE_SIZE;
Chong Zhang3005e752015-09-18 18:46:28 -0700376 }
377 if (boundsChanged == BOUNDS_CHANGE_NONE) {
378 return false;
379 }
380 if ((boundsChanged & BOUNDS_CHANGE_SIZE) == BOUNDS_CHANGE_SIZE) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700381 onResize();
Chong Zhangbd0d9372015-12-28 15:18:29 -0800382 } else {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700383 onMovedByResize();
Chong Zhang3005e752015-09-18 18:46:28 -0700384 }
385 return true;
386 }
387
Jorim Jaggi0429f352015-12-22 16:29:16 +0100388 /**
389 * Prepares the task bounds to be frozen with the current size. See
390 * {@link AppWindowToken#freezeBounds}.
391 */
392 void prepareFreezingBounds() {
393 mPreparedFrozenBounds.set(mBounds);
Andrii Kulian441e4492016-09-29 15:25:00 -0700394 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100395 }
396
Chong Zhang5117e272016-05-03 12:47:34 -0700397 /**
398 * Align the task to the adjusted bounds.
399 *
400 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
401 * @param tempInsetBounds Insets bounds for the task.
402 * @param alignBottom True if the task's bottom should be aligned to the adjusted
403 * bounds's bottom; false if the task's top should be aligned
404 * the adjusted bounds's top.
405 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700406 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Andrii Kulian94251162017-04-26 11:07:52 -0700407 if (!isResizeable() || Configuration.EMPTY.equals(getOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700408 return;
409 }
410
411 getBounds(mTmpRect2);
412 if (alignBottom) {
413 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
414 mTmpRect2.offset(0, offsetY);
415 } else {
416 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
417 }
418 setTempInsetBounds(tempInsetBounds);
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700419 resizeLocked(mTmpRect2, getOverrideConfiguration(), false /* forced */);
Chong Zhang5117e272016-05-03 12:47:34 -0700420 }
421
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700422 /** Return true if the current bound can get outputted to the rest of the system as-is. */
423 private boolean useCurrentBounds() {
424 final DisplayContent displayContent = mStack.getDisplayContent();
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700425 return mFillsParent
Wale Ogunwale3797c222015-10-27 14:21:58 -0700426 || !StackId.isTaskResizeableByDockedStack(mStack.mStackId)
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700427 || displayContent == null
Jorim Jaggife762342016-10-13 14:33:27 +0200428 || displayContent.getDockedStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700429 }
430
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800431 /** Original bounds of the task if applicable, otherwise fullscreen rect. */
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800432 void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700433 if (useCurrentBounds()) {
434 // No need to adjust the output bounds if fullscreen or the docked stack is visible
435 // since it is already what we want to represent to the rest of the system.
436 out.set(mBounds);
437 return;
438 }
439
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800440 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
441 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700442 mStack.getDisplayContent().getLogicalDisplayRect(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700443 }
444
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800445 /**
446 * Calculate the maximum visible area of this task. If the task has only one app,
447 * the result will be visible frame of that app. If the task has more than one apps,
448 * we search from top down if the next app got different visible area.
449 *
450 * This effort is to handle the case where some task (eg. GMail composer) might pop up
451 * a dialog that's different in size from the activity below, in which case we should
452 * be dimming the entire task area behind the dialog.
453 *
454 * @param out Rect containing the max visible bounds.
455 * @return true if the task has some visible app windows; false otherwise.
456 */
457 boolean getMaxVisibleBounds(Rect out) {
458 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700459 for (int i = mChildren.size() - 1; i >= 0; i--) {
460 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800461 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700462 if (token.mIsExiting || token.isClientHidden() || token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800463 continue;
464 }
465 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800466 if (win == null) {
467 continue;
468 }
469 if (!foundTop) {
470 out.set(win.mVisibleFrame);
471 foundTop = true;
472 continue;
473 }
474 if (win.mVisibleFrame.left < out.left) {
475 out.left = win.mVisibleFrame.left;
476 }
477 if (win.mVisibleFrame.top < out.top) {
478 out.top = win.mVisibleFrame.top;
479 }
480 if (win.mVisibleFrame.right > out.right) {
481 out.right = win.mVisibleFrame.right;
482 }
483 if (win.mVisibleFrame.bottom > out.bottom) {
484 out.bottom = win.mVisibleFrame.bottom;
485 }
486 }
487 return foundTop;
488 }
489
490 /** Bounds of the task to be used for dimming, as well as touch related tests. */
491 @Override
492 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700493 final DisplayContent displayContent = mStack.getDisplayContent();
494 // It doesn't matter if we in particular are part of the resize, since we couldn't have
495 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700496 final boolean dockedResizing = displayContent != null
497 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800498 if (useCurrentBounds()) {
499 if (inFreeformWorkspace() && getMaxVisibleBounds(out)) {
500 return;
501 }
502
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700503 if (!mFillsParent) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700504 // When minimizing the docked stack when going home, we don't adjust the task bounds
505 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700506 //
507 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
508 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
509 // should keep up with the divider.
510 if (dockedResizing) {
511 mStack.getBounds(out);
512 } else {
513 mStack.getBounds(mTmpRect);
514 mTmpRect.intersect(mBounds);
515 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700516 out.set(mTmpRect);
517 } else {
518 out.set(mBounds);
519 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800520 return;
521 }
522
Wale Ogunwalef6192862016-09-10 13:42:30 -0700523 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
524 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
525 if (displayContent != null) {
526 displayContent.getLogicalDisplayRect(out);
527 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800528 }
529
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100530 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800531 if (mDragResizing != dragResizing) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100532 if (!DragResizeMode.isModeAllowedForStack(mStack.mStackId, dragResizeMode)) {
533 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
534 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
535 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800536 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100537 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800538 resetDragResizingChangeReported();
539 }
540 }
541
Chong Zhang3005e752015-09-18 18:46:28 -0700542 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700543 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700544 }
545
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100546 int getDragResizeMode() {
547 return mDragResizeMode;
548 }
549
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700550 void updateDisplayInfo(final DisplayContent displayContent) {
551 if (displayContent == null) {
552 return;
553 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700554 if (mFillsParent) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700555 setBounds(null, Configuration.EMPTY);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700556 return;
557 }
558 final int newRotation = displayContent.getDisplayInfo().rotation;
559 if (mRotation == newRotation) {
560 return;
561 }
562
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800563 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700564 // - We don't want the task to move around on the screen when this happens, so update the
565 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800566 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700567 // from its stack. The stack will take care of task rotation for the other case.
568 mTmpRect2.set(mBounds);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800569
570 if (!StackId.isTaskResizeAllowed(mStack.mStackId)) {
Andrii Kulian441e4492016-09-29 15:25:00 -0700571 setBounds(mTmpRect2, getOverrideConfiguration());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800572 return;
573 }
574
Wale Ogunwale94744212015-09-21 19:01:47 -0700575 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Andrii Kulian441e4492016-09-29 15:25:00 -0700576 if (setBounds(mTmpRect2, getOverrideConfiguration()) != BOUNDS_CHANGE_NONE) {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800577 final TaskWindowContainerController controller = getController();
578 if (controller != null) {
579 controller.requestResize(mBounds, RESIZE_MODE_SYSTEM_SCREEN_ROTATION);
580 }
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700581 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700582 }
583
Wale Ogunwalef6192862016-09-10 13:42:30 -0700584 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700585 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700586 for (int i = mChildren.size() - 1; i >= 0; --i) {
587 mChildren.get(i).mAppAnimator.clearAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700588 }
589 }
590
Wale Ogunwalef6192862016-09-10 13:42:30 -0700591 /** Cancels any running thumbnail transitions associated with the task. */
Winson13d30662015-11-06 15:30:29 -0800592 void cancelTaskThumbnailTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700593 for (int i = mChildren.size() - 1; i >= 0; --i) {
594 mChildren.get(i).mAppAnimator.clearThumbnail();
Winson13d30662015-11-06 15:30:29 -0800595 }
596 }
597
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700598 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700599 final int tokensCount = mChildren.size();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800600 return (tokensCount != 0) && mChildren.get(tokensCount - 1).mShowForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700601 }
602
Chong Zhang09b21ef2015-09-14 10:20:21 -0700603 boolean inFreeformWorkspace() {
604 return mStack != null && mStack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
605 }
606
Robert Carr03138452016-05-18 14:53:16 -0700607 boolean inPinnedWorkspace() {
608 return mStack != null && mStack.mStackId == PINNED_STACK_ID;
609 }
610
Robert Carr7e4c90e2017-02-15 19:52:38 -0800611 /**
612 * When we are in a floating stack (Freeform, Pinned, ...) we calculate
613 * insets differently. However if we are animating to the fullscreen stack
614 * we need to begin calculating insets as if we were fullscreen, otherwise
615 * we will have a jump at the end.
616 */
Robert Carre6275582016-02-29 15:45:45 -0800617 boolean isFloating() {
Robert Carr18f622f2017-05-08 11:20:43 -0700618 return StackId.tasksAreFloating(mStack.mStackId)
619 && !mStack.isAnimatingBoundsToFullscreen() && !mPreserveNonFloatingState;
Robert Carre6275582016-02-29 15:45:45 -0800620 }
621
Chong Zhangd8ceb852015-11-11 14:53:41 -0800622 WindowState getTopVisibleAppMainWindow() {
623 final AppWindowToken token = getTopVisibleAppToken();
624 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700625 }
626
Jorim Jaggie6c6ecb2017-07-20 18:09:20 +0200627 AppWindowToken getTopFullscreenAppToken() {
628 for (int i = mChildren.size() - 1; i >= 0; i--) {
629 final AppWindowToken token = mChildren.get(i);
630 final WindowState win = token.findMainWindow();
631 if (win != null && win.mAttrs.isFullscreen()) {
632 return token;
633 }
634 }
635 return null;
636 }
637
Chong Zhangd8ceb852015-11-11 14:53:41 -0800638 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700639 for (int i = mChildren.size() - 1; i >= 0; i--) {
640 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800641 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700642 if (!token.mIsExiting && !token.isClientHidden() && !token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800643 return token;
644 }
645 }
646 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700647 }
648
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800649 @Override
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700650 public boolean dimFullscreen() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700651 return isFullscreen();
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700652 }
653
Winson Chungbe9be7f2017-06-28 10:55:22 -0700654 @Override
655 public int getLayerForDim(WindowStateAnimator animator, int layerOffset, int defaultLayer) {
656 // If the dim layer is for a starting window, move the dim layer back in the z-order behind
657 // the lowest activity window to ensure it does not occlude the main window if it is
658 // translucent
659 final AppWindowToken appToken = animator.mWin.mAppToken;
660 if (animator.mAttrType == TYPE_APPLICATION_STARTING && hasChild(appToken) ) {
661 return Math.min(defaultLayer, appToken.getLowestAnimLayer() - layerOffset);
662 }
663 return defaultLayer;
664 }
665
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700666 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700667 if (useCurrentBounds()) {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700668 return mFillsParent;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700669 }
670 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
671 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
672 // system.
673 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700674 }
675
676 @Override
677 public DisplayInfo getDisplayInfo() {
Wale Ogunwalef0a60a92017-01-19 09:44:40 -0800678 return getDisplayContent().getDisplayInfo();
679 }
680
681 @Override
682 public boolean isAttachedToDisplay() {
683 return getDisplayContent() != null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700684 }
685
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700686 void forceWindowsScaleable(boolean force) {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700687 mService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700688 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700689 for (int i = mChildren.size() - 1; i >= 0; i--) {
690 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700691 }
692 } finally {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700693 mService.closeSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700694 }
695 }
696
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100697 void setTaskDescription(TaskDescription taskDescription) {
698 mTaskDescription = taskDescription;
699 }
700
701 TaskDescription getTaskDescription() {
702 return mTaskDescription;
703 }
704
Wale Ogunwalef6192862016-09-10 13:42:30 -0700705 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700706 boolean fillsParent() {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700707 return mFillsParent || !StackId.isTaskResizeAllowed(mStack.mStackId);
Wale Ogunwale51362492016-09-08 17:49:17 -0700708 }
709
Jorim Jaggi329a5832017-01-05 18:57:12 +0100710 @Override
Jorim Jaggifb9d78a2017-01-05 18:57:12 +0100711 TaskWindowContainerController getController() {
712 return (TaskWindowContainerController) super.getController();
713 }
714
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700715 @Override
Jorim Jaggi51304d72017-05-17 17:25:32 +0200716 void forAllTasks(Consumer<Task> callback) {
717 callback.accept(this);
718 }
719
720 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800721 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700722 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800723 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700724
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700725 String getName() {
726 return toShortString();
727 }
728
Robert Carr18f622f2017-05-08 11:20:43 -0700729 void clearPreserveNonFloatingState() {
730 mPreserveNonFloatingState = false;
731 }
732
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700733 @Override
734 public String toShortString() {
735 return "Task=" + mTaskId;
736 }
737
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800738 public void dump(String prefix, PrintWriter pw) {
739 final String doublePrefix = prefix + " ";
740
741 pw.println(prefix + "taskId=" + mTaskId);
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700742 pw.println(doublePrefix + "mFillsParent=" + mFillsParent);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800743 pw.println(doublePrefix + "mBounds=" + mBounds.toShortString());
744 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700745 pw.println(doublePrefix + "appTokens=" + mChildren);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800746 pw.println(doublePrefix + "mTempInsetBounds=" + mTempInsetBounds.toShortString());
747
748 final String triplePrefix = doublePrefix + " ";
749
Wale Ogunwalef6192862016-09-10 13:42:30 -0700750 for (int i = mChildren.size() - 1; i >= 0; i--) {
751 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800752 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
753 wtoken.dump(pw, triplePrefix);
754 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700755 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800756}