blob: f70845e52bb93d64980e0870a43c40d6e44986ea [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;
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;
Winson Chungbe9be7f2017-06-28 10:55:22 -070025import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
26
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080027import static com.android.server.EventLogTags.WM_TASK_REMOVED;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080028import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
Jorim Jaggid53f0922016-04-06 22:16:23 -070029import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
30import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Steven Timotiusaf03df62017-07-18 16:56:43 -070031import static com.android.server.wm.proto.TaskProto.APP_WINDOW_TOKENS;
32import static com.android.server.wm.proto.TaskProto.BOUNDS;
33import static com.android.server.wm.proto.TaskProto.FILLS_PARENT;
34import static com.android.server.wm.proto.TaskProto.ID;
35import static com.android.server.wm.proto.TaskProto.TEMP_INSET_BOUNDS;
Wale Ogunwale0d5609b2017-09-13 05:55:07 -070036import static com.android.server.wm.proto.TaskProto.WINDOW_CONTAINER;
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.DisplayInfo;
47import android.view.Surface;
48
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 // Return value from {@link setBounds} indicating no change was made to the Task bounds.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070057 private static final int BOUNDS_CHANGE_NONE = 0;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070058 // Return value from {@link setBounds} indicating the position of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070059 private static final int BOUNDS_CHANGE_POSITION = 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070060 // Return value from {@link setBounds} indicating the size of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070061 private static final int BOUNDS_CHANGE_SIZE = 1 << 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070062
Wale Ogunwalef6192862016-09-10 13:42:30 -070063 // TODO: Track parent marks like this in WindowContainer.
Craig Mautnerc00204b2013-03-05 15:02:14 -080064 TaskStack mStack;
Craig Mautner83162a92015-01-26 14:43:30 -080065 final int mTaskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070066 final int mUserId;
Wale Ogunwale3eadad72016-10-13 09:16:59 -070067 private boolean mDeferRemoval = false;
Craig Mautnere3119b72015-01-20 15:02:36 -080068 final WindowManagerService mService;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080069
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070070 // Content limits relative to the DisplayContent this sits in.
71 private Rect mBounds = new Rect();
Jorim Jaggi0429f352015-12-22 16:29:16 +010072 final Rect mPreparedFrozenBounds = new Rect();
Jorim Jaggi26c8c422016-05-09 19:57:25 -070073 final Configuration mPreparedFrozenMergedConfig = new Configuration();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070074
Jorim Jaggidc249c42015-12-15 14:57:31 -080075 // Bounds used to calculate the insets.
76 private final Rect mTempInsetBounds = new Rect();
77
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070078 // Device rotation as of the last time {@link #mBounds} was set.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070079 private int mRotation;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070080
81 // Whether mBounds is fullscreen
Wale Ogunwale5a2183d2016-09-19 12:26:13 -070082 private boolean mFillsParent = true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070083
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070084 // For comparison with DisplayContent bounds.
85 private Rect mTmpRect = new Rect();
86 // For handling display rotations.
87 private Rect mTmpRect2 = new Rect();
88
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080089 // Resize mode of the task. See {@link ActivityInfo#resizeMode}
90 private int mResizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -080091
Winson Chungd3395382016-12-13 11:49:09 -080092 // Whether the task supports picture-in-picture.
93 // See {@link ActivityInfo#FLAG_SUPPORTS_PICTURE_IN_PICTURE}
94 private boolean mSupportsPictureInPicture;
95
Chong Zhang3005e752015-09-18 18:46:28 -070096 // Whether the task is currently being drag-resized
97 private boolean mDragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010098 private int mDragResizeMode;
Chong Zhang3005e752015-09-18 18:46:28 -070099
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100100 private TaskDescription mTaskDescription;
101
Robert Carr18f622f2017-05-08 11:20:43 -0700102 // If set to true, the task will report that it is not in the floating
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -0700103 // state regardless of it's stack affiliation. As the floating state drives
Robert Carr18f622f2017-05-08 11:20:43 -0700104 // production of content insets this can be used to preserve them across
105 // stack moves and we in fact do so when moving from full screen to pinned.
106 private boolean mPreserveNonFloatingState = false;
107
Robert Carrf59b8dd2017-10-02 18:58:36 -0700108 private Dimmer mDimmer = new Dimmer(this);
109 private final Rect mTmpDimBoundsRect = new Rect();
110
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700111 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, Rect bounds,
Wale Ogunwale034a8ec2017-09-02 17:14:40 -0700112 int resizeMode, boolean supportsPictureInPicture, TaskDescription taskDescription,
113 TaskWindowContainerController controller) {
Craig Mautner83162a92015-01-26 14:43:30 -0800114 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800115 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -0700116 mUserId = userId;
Craig Mautnere3119b72015-01-20 15:02:36 -0800117 mService = service;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800118 mResizeMode = resizeMode;
Winson Chungd3395382016-12-13 11:49:09 -0800119 mSupportsPictureInPicture = supportsPictureInPicture;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800120 setController(controller);
Wale Ogunwale034a8ec2017-09-02 17:14:40 -0700121 setBounds(bounds, getOverrideConfiguration());
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100122 mTaskDescription = taskDescription;
Bryce Lee61fbcbc2017-03-10 14:14:03 -0800123
124 // Tasks have no set orientation value (including SCREEN_ORIENTATION_UNSPECIFIED).
125 setOrientation(SCREEN_ORIENTATION_UNSET);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800126 }
127
128 DisplayContent getDisplayContent() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800129 return mStack != null ? mStack.getDisplayContent() : null;
130 }
131
Wale Ogunwale069bbd32017-02-03 07:58:14 -0800132 private int getAdjustedAddPosition(int suggestedPosition) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800133 final int size = mChildren.size();
134 if (suggestedPosition >= size) {
135 return Math.min(size, suggestedPosition);
136 }
137
138 for (int pos = 0; pos < size && pos < suggestedPosition; ++pos) {
139 // TODO: Confirm that this is the behavior we want long term.
140 if (mChildren.get(pos).removed) {
141 // suggestedPosition assumes removed tokens are actually gone.
142 ++suggestedPosition;
143 }
144 }
145 return Math.min(size, suggestedPosition);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800146 }
147
Wale Ogunwale72919d22016-12-08 18:58:50 -0800148 @Override
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800149 void addChild(AppWindowToken wtoken, int position) {
150 position = getAdjustedAddPosition(position);
151 super.addChild(wtoken, position);
Craig Mautner42bf39e2014-02-21 16:46:22 -0800152 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800153 }
154
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800155 @Override
156 void positionChildAt(int position, AppWindowToken child, boolean includingParents) {
157 position = getAdjustedAddPosition(position);
158 super.positionChildAt(position, child, includingParents);
159 mDeferRemoval = false;
160 }
161
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700162 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700163 for (int i = mChildren.size() - 1; i >= 0; i--) {
164 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800165 return true;
166 }
167 }
168 return false;
169 }
170
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800171 @VisibleForTesting
172 boolean shouldDeferRemoval() {
Wale Ogunwale2c9f2032017-06-02 06:50:50 -0700173 // TODO: This should probably return false if mChildren.isEmpty() regardless if the stack
174 // is animating...
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800175 return hasWindowsAlive() && mStack.isAnimating();
176 }
177
Wale Ogunwalef6192862016-09-10 13:42:30 -0700178 @Override
179 void removeIfPossible() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800180 if (shouldDeferRemoval()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800181 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800182 mDeferRemoval = true;
183 return;
184 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800185 removeImmediately();
186 }
187
188 @Override
189 void removeImmediately() {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800190 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800191 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800192 mDeferRemoval = false;
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800193
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800194 super.removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800195 }
196
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700197 void reparent(TaskStack stack, int position, boolean moveParents) {
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800198 if (stack == mStack) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800199 throw new IllegalArgumentException(
200 "task=" + this + " already child of stack=" + mStack);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800201 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800202 if (DEBUG_STACK) Slog.i(TAG, "reParentTask: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800203 + " from stack=" + mStack);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800204 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "reParentTask");
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800205 final DisplayContent prevDisplayContent = getDisplayContent();
206
Robert Carr18f622f2017-05-08 11:20:43 -0700207 // If we are moving from the fullscreen stack to the pinned stack
208 // then we want to preserve our insets so that there will not
209 // be a jump in the area covered by system decorations. We rely
210 // on the pinned animation to later unset this value.
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700211 if (stack.inPinnedWindowingMode()) {
Robert Carr18f622f2017-05-08 11:20:43 -0700212 mPreserveNonFloatingState = true;
213 } else {
214 mPreserveNonFloatingState = false;
215 }
216
Andrii Kulian441e4492016-09-29 15:25:00 -0700217 getParent().removeChild(this);
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700218 stack.addTask(this, position, showForAllUsers(), moveParents);
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800219
220 // Relayout display(s).
221 final DisplayContent displayContent = stack.getDisplayContent();
222 displayContent.setLayoutNeeded();
223 if (prevDisplayContent != displayContent) {
224 onDisplayChanged(displayContent);
225 prevDisplayContent.setLayoutNeeded();
226 }
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800227 }
228
Andrii Kuliand2765632016-12-12 22:26:34 -0800229 /** @see com.android.server.am.ActivityManagerService#positionTaskInStack(int, int, int). */
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800230 void positionAt(int position, Rect bounds, Configuration overrideConfig) {
231 mStack.positionChildAt(position, this, false /* includingParents */);
Andrii Kulian1779e612016-10-12 21:58:25 -0700232 resizeLocked(bounds, overrideConfig, false /* force */);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700233 }
234
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700235 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -0800236 void onParentSet() {
Robert Carrb1579c82017-09-05 14:54:47 -0700237 super.onParentSet();
238
Andrii Kuliand2765632016-12-12 22:26:34 -0800239 // Update task bounds if needed.
240 updateDisplayInfo(getDisplayContent());
241
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700242 if (getWindowConfiguration().windowsAreScaleable()) {
Andrii Kuliand2765632016-12-12 22:26:34 -0800243 // 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. */
Wale Ogunwale034a8ec2017-09-02 17:14:40 -0700275 // TODO: There is probably not a need to pass in overrideConfig anymore since any change to it
276 // will be automatically propagated from the AM. Also, mBound is going to be in
277 // WindowConfiguration long term.
Andrii Kulian8072d112016-09-16 11:11:01 -0700278 private int setBounds(Rect bounds, Configuration overrideConfig) {
279 if (overrideConfig == null) {
Wale Ogunwale68278562017-09-23 17:13:55 -0700280 overrideConfig = EMPTY;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700281 }
Wale Ogunwale68278562017-09-23 17:13:55 -0700282
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700283 boolean oldFullscreen = mFillsParent;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700284 int rotation = Surface.ROTATION_0;
285 final DisplayContent displayContent = mStack.getDisplayContent();
286 if (displayContent != null) {
287 displayContent.getLogicalDisplayRect(mTmpRect);
288 rotation = displayContent.getDisplayInfo().rotation;
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700289 mFillsParent = bounds == null;
290 if (mFillsParent) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700291 bounds = mTmpRect;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700292 }
293 }
294
295 if (bounds == null) {
296 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700297 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700298 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700299 if (mBounds.equals(bounds) && oldFullscreen == mFillsParent && mRotation == rotation) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700300 return BOUNDS_CHANGE_NONE;
301 }
302
303 int boundsChange = BOUNDS_CHANGE_NONE;
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700304 if (mBounds.left != bounds.left || mBounds.top != bounds.top) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700305 boundsChange |= BOUNDS_CHANGE_POSITION;
306 }
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700307 if (mBounds.width() != bounds.width() || mBounds.height() != bounds.height()) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700308 boundsChange |= BOUNDS_CHANGE_SIZE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700309 }
310
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700311 mBounds.set(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800312
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700313 mRotation = rotation;
Robert Carrf59b8dd2017-10-02 18:58:36 -0700314
Wale Ogunwale68278562017-09-23 17:13:55 -0700315 onOverrideConfigurationChanged(overrideConfig);
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700316 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700317 }
318
Jorim Jaggidc249c42015-12-15 14:57:31 -0800319 /**
320 * Sets the bounds used to calculate the insets. See
321 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
322 */
323 void setTempInsetBounds(Rect tempInsetBounds) {
324 if (tempInsetBounds != null) {
325 mTempInsetBounds.set(tempInsetBounds);
326 } else {
327 mTempInsetBounds.setEmpty();
328 }
329 }
330
331 /**
332 * Gets the bounds used to calculate the insets. See
333 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
334 */
335 void getTempInsetBounds(Rect out) {
336 out.set(mTempInsetBounds);
337 }
338
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800339 void setResizeable(int resizeMode) {
340 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800341 }
342
343 boolean isResizeable() {
Winson Chungd3395382016-12-13 11:49:09 -0800344 return ActivityInfo.isResizeableMode(mResizeMode) || mSupportsPictureInPicture
345 || mService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800346 }
347
skuhne@google.com322347b2016-12-02 12:54:03 -0800348 /**
349 * Tests if the orientation should be preserved upon user interactive resizig operations.
350
351 * @return true if orientation should not get changed upon resizing operation.
352 */
353 boolean preserveOrientationOnResize() {
354 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
355 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
356 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
357 }
358
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800359 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700360 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800361 }
362
Andrii Kulian8072d112016-09-16 11:11:01 -0700363 boolean resizeLocked(Rect bounds, Configuration overrideConfig, boolean forced) {
364 int boundsChanged = setBounds(bounds, overrideConfig);
Chong Zhang87b21722015-09-21 15:39:51 -0700365 if (forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700366 boundsChanged |= BOUNDS_CHANGE_SIZE;
Chong Zhang3005e752015-09-18 18:46:28 -0700367 }
368 if (boundsChanged == BOUNDS_CHANGE_NONE) {
369 return false;
370 }
371 if ((boundsChanged & BOUNDS_CHANGE_SIZE) == BOUNDS_CHANGE_SIZE) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700372 onResize();
Chong Zhangbd0d9372015-12-28 15:18:29 -0800373 } else {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700374 onMovedByResize();
Chong Zhang3005e752015-09-18 18:46:28 -0700375 }
376 return true;
377 }
378
Jorim Jaggi0429f352015-12-22 16:29:16 +0100379 /**
380 * Prepares the task bounds to be frozen with the current size. See
381 * {@link AppWindowToken#freezeBounds}.
382 */
383 void prepareFreezingBounds() {
384 mPreparedFrozenBounds.set(mBounds);
Andrii Kulian441e4492016-09-29 15:25:00 -0700385 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100386 }
387
Chong Zhang5117e272016-05-03 12:47:34 -0700388 /**
389 * Align the task to the adjusted bounds.
390 *
391 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
392 * @param tempInsetBounds Insets bounds for the task.
393 * @param alignBottom True if the task's bottom should be aligned to the adjusted
394 * bounds's bottom; false if the task's top should be aligned
395 * the adjusted bounds's top.
396 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700397 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Wale Ogunwale68278562017-09-23 17:13:55 -0700398 if (!isResizeable() || EMPTY.equals(getOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700399 return;
400 }
401
402 getBounds(mTmpRect2);
403 if (alignBottom) {
404 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
405 mTmpRect2.offset(0, offsetY);
406 } else {
407 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
408 }
409 setTempInsetBounds(tempInsetBounds);
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700410 resizeLocked(mTmpRect2, getOverrideConfiguration(), false /* forced */);
Chong Zhang5117e272016-05-03 12:47:34 -0700411 }
412
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700413 /** Return true if the current bound can get outputted to the rest of the system as-is. */
414 private boolean useCurrentBounds() {
Wale Ogunwale926aade2017-08-29 11:24:37 -0700415 final DisplayContent displayContent = getDisplayContent();
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700416 return mFillsParent
Wale Ogunwale926aade2017-08-29 11:24:37 -0700417 || !inSplitScreenSecondaryWindowingMode()
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700418 || displayContent == null
Matthew Ng64e77cf2017-10-31 14:01:31 -0700419 || displayContent.getSplitScreenPrimaryStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700420 }
421
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800422 /** Original bounds of the task if applicable, otherwise fullscreen rect. */
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800423 void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700424 if (useCurrentBounds()) {
425 // No need to adjust the output bounds if fullscreen or the docked stack is visible
426 // since it is already what we want to represent to the rest of the system.
427 out.set(mBounds);
428 return;
429 }
430
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800431 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
432 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700433 mStack.getDisplayContent().getLogicalDisplayRect(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700434 }
435
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800436 /**
437 * Calculate the maximum visible area of this task. If the task has only one app,
438 * the result will be visible frame of that app. If the task has more than one apps,
439 * we search from top down if the next app got different visible area.
440 *
441 * This effort is to handle the case where some task (eg. GMail composer) might pop up
442 * a dialog that's different in size from the activity below, in which case we should
443 * be dimming the entire task area behind the dialog.
444 *
445 * @param out Rect containing the max visible bounds.
446 * @return true if the task has some visible app windows; false otherwise.
447 */
448 boolean getMaxVisibleBounds(Rect out) {
449 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700450 for (int i = mChildren.size() - 1; i >= 0; i--) {
451 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800452 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700453 if (token.mIsExiting || token.isClientHidden() || token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800454 continue;
455 }
456 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800457 if (win == null) {
458 continue;
459 }
460 if (!foundTop) {
461 out.set(win.mVisibleFrame);
462 foundTop = true;
463 continue;
464 }
465 if (win.mVisibleFrame.left < out.left) {
466 out.left = win.mVisibleFrame.left;
467 }
468 if (win.mVisibleFrame.top < out.top) {
469 out.top = win.mVisibleFrame.top;
470 }
471 if (win.mVisibleFrame.right > out.right) {
472 out.right = win.mVisibleFrame.right;
473 }
474 if (win.mVisibleFrame.bottom > out.bottom) {
475 out.bottom = win.mVisibleFrame.bottom;
476 }
477 }
478 return foundTop;
479 }
480
481 /** Bounds of the task to be used for dimming, as well as touch related tests. */
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800482 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700483 final DisplayContent displayContent = mStack.getDisplayContent();
484 // It doesn't matter if we in particular are part of the resize, since we couldn't have
485 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700486 final boolean dockedResizing = displayContent != null
487 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800488 if (useCurrentBounds()) {
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700489 if (inFreeformWindowingMode() && getMaxVisibleBounds(out)) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800490 return;
491 }
492
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700493 if (!mFillsParent) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700494 // When minimizing the docked stack when going home, we don't adjust the task bounds
495 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700496 //
497 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
498 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
499 // should keep up with the divider.
500 if (dockedResizing) {
501 mStack.getBounds(out);
502 } else {
503 mStack.getBounds(mTmpRect);
504 mTmpRect.intersect(mBounds);
505 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700506 out.set(mTmpRect);
507 } else {
508 out.set(mBounds);
509 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800510 return;
511 }
512
Wale Ogunwalef6192862016-09-10 13:42:30 -0700513 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
514 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
515 if (displayContent != null) {
516 displayContent.getLogicalDisplayRect(out);
517 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800518 }
519
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100520 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800521 if (mDragResizing != dragResizing) {
Wale Ogunwale68278562017-09-23 17:13:55 -0700522 if (!DragResizeMode.isModeAllowedForStack(mStack, dragResizeMode)) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100523 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
524 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
525 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800526 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100527 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800528 resetDragResizingChangeReported();
529 }
530 }
531
Chong Zhang3005e752015-09-18 18:46:28 -0700532 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700533 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700534 }
535
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100536 int getDragResizeMode() {
537 return mDragResizeMode;
538 }
539
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700540 void updateDisplayInfo(final DisplayContent displayContent) {
541 if (displayContent == null) {
542 return;
543 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700544 if (mFillsParent) {
Wale Ogunwale68278562017-09-23 17:13:55 -0700545 // TODO: Yeah...not sure if this works with WindowConfiguration, but shouldn't be a
546 // problem once we move mBounds into WindowConfiguration.
547 setBounds(null, getOverrideConfiguration());
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700548 return;
549 }
550 final int newRotation = displayContent.getDisplayInfo().rotation;
551 if (mRotation == newRotation) {
552 return;
553 }
554
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800555 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700556 // - We don't want the task to move around on the screen when this happens, so update the
557 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800558 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700559 // from its stack. The stack will take care of task rotation for the other case.
560 mTmpRect2.set(mBounds);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800561
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700562 if (!getWindowConfiguration().canResizeTask()) {
Andrii Kulian441e4492016-09-29 15:25:00 -0700563 setBounds(mTmpRect2, getOverrideConfiguration());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800564 return;
565 }
566
Wale Ogunwale94744212015-09-21 19:01:47 -0700567 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Andrii Kulian441e4492016-09-29 15:25:00 -0700568 if (setBounds(mTmpRect2, getOverrideConfiguration()) != BOUNDS_CHANGE_NONE) {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800569 final TaskWindowContainerController controller = getController();
570 if (controller != null) {
571 controller.requestResize(mBounds, RESIZE_MODE_SYSTEM_SCREEN_ROTATION);
572 }
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700573 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700574 }
575
Wale Ogunwalef6192862016-09-10 13:42:30 -0700576 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700577 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700578 for (int i = mChildren.size() - 1; i >= 0; --i) {
579 mChildren.get(i).mAppAnimator.clearAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700580 }
581 }
582
Wale Ogunwalef6192862016-09-10 13:42:30 -0700583 /** Cancels any running thumbnail transitions associated with the task. */
Winson13d30662015-11-06 15:30:29 -0800584 void cancelTaskThumbnailTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700585 for (int i = mChildren.size() - 1; i >= 0; --i) {
586 mChildren.get(i).mAppAnimator.clearThumbnail();
Winson13d30662015-11-06 15:30:29 -0800587 }
588 }
589
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700590 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700591 final int tokensCount = mChildren.size();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800592 return (tokensCount != 0) && mChildren.get(tokensCount - 1).mShowForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700593 }
594
Robert Carr7e4c90e2017-02-15 19:52:38 -0800595 /**
596 * When we are in a floating stack (Freeform, Pinned, ...) we calculate
597 * insets differently. However if we are animating to the fullscreen stack
598 * we need to begin calculating insets as if we were fullscreen, otherwise
599 * we will have a jump at the end.
600 */
Robert Carre6275582016-02-29 15:45:45 -0800601 boolean isFloating() {
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700602 return getWindowConfiguration().tasksAreFloating()
Robert Carr18f622f2017-05-08 11:20:43 -0700603 && !mStack.isAnimatingBoundsToFullscreen() && !mPreserveNonFloatingState;
Robert Carre6275582016-02-29 15:45:45 -0800604 }
605
Chong Zhangd8ceb852015-11-11 14:53:41 -0800606 WindowState getTopVisibleAppMainWindow() {
607 final AppWindowToken token = getTopVisibleAppToken();
608 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700609 }
610
Jorim Jaggie6c6ecb2017-07-20 18:09:20 +0200611 AppWindowToken getTopFullscreenAppToken() {
612 for (int i = mChildren.size() - 1; i >= 0; i--) {
613 final AppWindowToken token = mChildren.get(i);
614 final WindowState win = token.findMainWindow();
615 if (win != null && win.mAttrs.isFullscreen()) {
616 return token;
617 }
618 }
619 return null;
620 }
621
Chong Zhangd8ceb852015-11-11 14:53:41 -0800622 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700623 for (int i = mChildren.size() - 1; i >= 0; i--) {
624 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800625 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700626 if (!token.mIsExiting && !token.isClientHidden() && !token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800627 return token;
628 }
629 }
630 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700631 }
632
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700633 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700634 if (useCurrentBounds()) {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700635 return mFillsParent;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700636 }
637 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
638 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
639 // system.
640 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700641 }
642
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700643 void forceWindowsScaleable(boolean force) {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700644 mService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700645 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700646 for (int i = mChildren.size() - 1; i >= 0; i--) {
647 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700648 }
649 } finally {
Adrian Roos111aff92017-09-27 18:11:46 +0200650 mService.closeSurfaceTransaction("forceWindowsScaleable");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700651 }
652 }
653
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100654 void setTaskDescription(TaskDescription taskDescription) {
655 mTaskDescription = taskDescription;
656 }
657
658 TaskDescription getTaskDescription() {
659 return mTaskDescription;
660 }
661
Wale Ogunwalef6192862016-09-10 13:42:30 -0700662 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700663 boolean fillsParent() {
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700664 return mFillsParent || !getWindowConfiguration().canResizeTask();
Wale Ogunwale51362492016-09-08 17:49:17 -0700665 }
666
Jorim Jaggi329a5832017-01-05 18:57:12 +0100667 @Override
Jorim Jaggifb9d78a2017-01-05 18:57:12 +0100668 TaskWindowContainerController getController() {
669 return (TaskWindowContainerController) super.getController();
670 }
671
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700672 @Override
Jorim Jaggi51304d72017-05-17 17:25:32 +0200673 void forAllTasks(Consumer<Task> callback) {
674 callback.accept(this);
675 }
676
677 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800678 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700679 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800680 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700681
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700682 String getName() {
683 return toShortString();
684 }
685
Robert Carr18f622f2017-05-08 11:20:43 -0700686 void clearPreserveNonFloatingState() {
687 mPreserveNonFloatingState = false;
688 }
689
Robert Carrf59b8dd2017-10-02 18:58:36 -0700690 Dimmer getDimmer() {
691 return mDimmer;
692 }
693
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700694 @Override
Robert Carrf59b8dd2017-10-02 18:58:36 -0700695 void prepareSurfaces() {
696 mDimmer.resetDimStates();
697 super.prepareSurfaces();
698 getDimBounds(mTmpDimBoundsRect);
699 if (mDimmer.updateDims(getPendingTransaction(), mTmpDimBoundsRect)) {
700 scheduleAnimation();
701 }
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700702 }
703
Wale Ogunwale0d5609b2017-09-13 05:55:07 -0700704 @CallSuper
705 @Override
Adrian Roos4921ccf2017-09-28 16:54:06 +0200706 public void writeToProto(ProtoOutputStream proto, long fieldId, boolean trim) {
Steven Timotiusaf03df62017-07-18 16:56:43 -0700707 final long token = proto.start(fieldId);
Adrian Roos4921ccf2017-09-28 16:54:06 +0200708 super.writeToProto(proto, WINDOW_CONTAINER, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -0700709 proto.write(ID, mTaskId);
710 for (int i = mChildren.size() - 1; i >= 0; i--) {
711 final AppWindowToken appWindowToken = mChildren.get(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +0200712 appWindowToken.writeToProto(proto, APP_WINDOW_TOKENS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -0700713 }
714 proto.write(FILLS_PARENT, mFillsParent);
715 mBounds.writeToProto(proto, BOUNDS);
716 mTempInsetBounds.writeToProto(proto, TEMP_INSET_BOUNDS);
717 proto.end(token);
718 }
719
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800720 public void dump(String prefix, PrintWriter pw) {
721 final String doublePrefix = prefix + " ";
722
723 pw.println(prefix + "taskId=" + mTaskId);
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700724 pw.println(doublePrefix + "mFillsParent=" + mFillsParent);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800725 pw.println(doublePrefix + "mBounds=" + mBounds.toShortString());
726 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700727 pw.println(doublePrefix + "appTokens=" + mChildren);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800728 pw.println(doublePrefix + "mTempInsetBounds=" + mTempInsetBounds.toShortString());
729
730 final String triplePrefix = doublePrefix + " ";
731
Wale Ogunwalef6192862016-09-10 13:42:30 -0700732 for (int i = mChildren.size() - 1; i >= 0; i--) {
733 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800734 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
735 wtoken.dump(pw, triplePrefix);
736 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700737 }
Robert Carrf59b8dd2017-10-02 18:58:36 -0700738
739 String toShortString() {
740 return "Task=" + mTaskId;
741 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800742}