blob: 914309765b964e95de0b4cff53f36f1349084bba [file] [log] [blame]
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001/*
2 * Copyright (C) 2011 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
19import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
Chong Zhangbef461f2015-10-27 11:38:24 -070020import static com.android.server.wm.WindowManagerService.DEBUG_ANIM;
21import static com.android.server.wm.WindowManagerService.DEBUG_APP_TRANSITIONS;
22import static com.android.server.wm.WindowManagerService.TAG;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080023
Jeff Brown4532e612012-04-05 14:27:12 -070024import com.android.server.input.InputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080025import com.android.server.wm.WindowManagerService.H;
26
27import android.content.pm.ActivityInfo;
28import android.os.Message;
29import android.os.RemoteException;
30import android.util.Slog;
31import android.view.IApplicationToken;
32import android.view.View;
33import android.view.WindowManager;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080034
35import java.io.PrintWriter;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080036import java.util.ArrayList;
37
38class AppTokenList extends ArrayList<AppWindowToken> {
39}
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080040
41/**
42 * Version of WindowToken that is specifically for a particular application (or
43 * really activity) that is displaying windows.
44 */
Craig Mautnere32c3072012-03-12 15:25:35 -070045class AppWindowToken extends WindowToken {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080046 // Non-null only for application tokens.
47 final IApplicationToken appToken;
48
49 // All of the windows and child windows that are included in this
50 // application token. Note this list is NOT sorted!
Craig Mautner96868332012-12-04 14:29:11 -080051 final WindowList allAppWindows = new WindowList();
Craig Mautner59431632012-04-04 11:56:44 -070052 final AppWindowAnimator mAppAnimator;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080053
Craig Mautnerd09cc4b2012-04-04 10:23:31 -070054 final WindowAnimator mAnimator;
55
Dianne Hackborne30e02f2014-05-27 18:24:45 -070056 final boolean voiceInteraction;
57
Chong Zhangdb20b5f2015-10-23 14:01:43 -070058 // Whether the window has a saved surface from last pause, which can be
59 // used to start an entering animation earlier.
60 boolean mHasSavedSurface;
61
62 // Whether we're performing an entering animation with a saved surface.
63 boolean mAnimatingWithSavedSurface;
64
Craig Mautner83162a92015-01-26 14:43:30 -080065 Task mTask;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080066 boolean appFullscreen;
67 int requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
Craig Mautner4c5eb222013-11-18 12:59:05 -080068 boolean layoutConfigChanges;
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -070069 boolean showForAllUsers;
Craig Mautnera2c77052012-03-26 12:14:43 -070070
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080071 // The input dispatching timeout for this application token in nanoseconds.
72 long inputDispatchingTimeoutNanos;
73
74 // These are used for determining when all windows associated with
75 // an activity have been drawn, so they can be made visible together
76 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -070077 // initialize so that it doesn't match mTransactionSequence which is an int.
78 long lastTransactionSequence = Long.MIN_VALUE;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080079 int numInterestingWindows;
80 int numDrawnWindows;
81 boolean inPendingTransaction;
82 boolean allDrawn;
Craig Mautner7636dfb2012-11-16 15:24:11 -080083 // Set to true when this app creates a surface while in the middle of an animation. In that
84 // case do not clear allDrawn until the animation completes.
85 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080086
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080087 // Is this window's surface needed? This is almost like hidden, except
88 // it will sometimes be true a little earlier: when the token has
89 // been shown, but is still waiting for its app transition to execute
90 // before making its windows shown.
91 boolean hiddenRequested;
92
93 // Have we told the window clients to hide themselves?
94 boolean clientHidden;
95
96 // Last visibility state we reported to the app token.
97 boolean reportedVisible;
98
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -070099 // Last drawn state we reported to the app token.
100 boolean reportedDrawn;
101
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800102 // Set to true when the token has been removed from the window mgr.
103 boolean removed;
104
Chong Zhang112eb8c2015-11-02 11:17:00 -0800105 boolean appDied;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800106 // Information about an application starting window if displayed.
107 StartingData startingData;
108 WindowState startingWindow;
109 View startingView;
110 boolean startingDisplayed;
111 boolean startingMoved;
112 boolean firstWindowDrawn;
113
114 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700115 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800116
Craig Mautner799bc1d2015-01-14 10:33:48 -0800117 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800118
Craig Mautnerbb742462014-07-07 15:28:55 -0700119 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700120 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700121
Wale Ogunwale61b009e2015-09-16 15:43:05 -0700122 // True if the windows associated with this token should be cropped to their stack bounds.
123 boolean mCropWindowsToStack;
124
Filip Gruszczynski76cc44f2015-09-03 16:03:10 -0700125 // This application will have its window replaced due to relaunch. This allows window manager
126 // to differentiate between simple removal of a window and replacement. In the latter case it
127 // will preserve the old window until the new one is drawn.
Filip Gruszczynskib6e66622015-10-25 16:05:27 -0700128 boolean mWillReplaceWindow;
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700129 // If true, the replaced window was already requested to be removed.
130 boolean mReplacingRemoveRequested;
131 // Whether the replacement of the window should trigger app transition animation.
132 boolean mAnimateReplacingWindow;
Filip Gruszczynskib6e66622015-10-25 16:05:27 -0700133 // If not null, the window that will be used to replace the old one. This is being set when
134 // the window is added and unset when this window reports its first draw.
135 WindowState mReplacingWindow;
Filip Gruszczynski76cc44f2015-09-03 16:03:10 -0700136
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700137 AppWindowToken(WindowManagerService _service, IApplicationToken _token,
138 boolean _voiceInteraction) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800139 super(_service, _token.asBinder(),
140 WindowManager.LayoutParams.TYPE_APPLICATION, true);
141 appWindowToken = this;
142 appToken = _token;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700143 voiceInteraction = _voiceInteraction;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800144 mInputApplicationHandle = new InputApplicationHandle(this);
Craig Mautnerd09cc4b2012-04-04 10:23:31 -0700145 mAnimator = service.mAnimator;
Craig Mautner322e4032012-07-13 13:35:20 -0700146 mAppAnimator = new AppWindowAnimator(this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800147 }
148
149 void sendAppVisibilityToClients() {
150 final int N = allAppWindows.size();
151 for (int i=0; i<N; i++) {
152 WindowState win = allAppWindows.get(i);
153 if (win == startingWindow && clientHidden) {
154 // Don't hide the starting window.
155 continue;
156 }
157 try {
158 if (WindowManagerService.DEBUG_VISIBILITY) Slog.v(WindowManagerService.TAG,
159 "Setting visibility of " + win + ": " + (!clientHidden));
160 win.mClient.dispatchAppVisibility(!clientHidden);
161 } catch (RemoteException e) {
162 }
163 }
164 }
165
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800166 void updateReportedVisibilityLocked() {
167 if (appToken == null) {
168 return;
169 }
170
171 int numInteresting = 0;
172 int numVisible = 0;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700173 int numDrawn = 0;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800174 boolean nowGone = true;
175
Craig Mautnerc8bc97e2012-04-02 12:54:54 -0700176 if (WindowManagerService.DEBUG_VISIBILITY) Slog.v(WindowManagerService.TAG,
177 "Update reported visibility: " + this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800178 final int N = allAppWindows.size();
179 for (int i=0; i<N; i++) {
180 WindowState win = allAppWindows.get(i);
181 if (win == startingWindow || win.mAppFreezing
182 || win.mViewVisibility != View.VISIBLE
183 || win.mAttrs.type == TYPE_APPLICATION_STARTING
184 || win.mDestroying) {
185 continue;
186 }
187 if (WindowManagerService.DEBUG_VISIBILITY) {
188 Slog.v(WindowManagerService.TAG, "Win " + win + ": isDrawn="
189 + win.isDrawnLw()
Craig Mautnera2c77052012-03-26 12:14:43 -0700190 + ", isAnimating=" + win.mWinAnimator.isAnimating());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800191 if (!win.isDrawnLw()) {
Mathias Agopian29479eb2013-02-14 14:36:04 -0800192 Slog.v(WindowManagerService.TAG, "Not displayed: s=" + win.mWinAnimator.mSurfaceControl
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800193 + " pv=" + win.mPolicyVisibility
Craig Mautner749a7bb2012-04-02 13:49:53 -0700194 + " mDrawState=" + win.mWinAnimator.mDrawState
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800195 + " ah=" + win.mAttachedHidden
196 + " th="
197 + (win.mAppToken != null
198 ? win.mAppToken.hiddenRequested : false)
Craig Mautnera2c77052012-03-26 12:14:43 -0700199 + " a=" + win.mWinAnimator.mAnimating);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800200 }
201 }
202 numInteresting++;
203 if (win.isDrawnLw()) {
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700204 numDrawn++;
Craig Mautnera2c77052012-03-26 12:14:43 -0700205 if (!win.mWinAnimator.isAnimating()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800206 numVisible++;
207 }
208 nowGone = false;
Craig Mautnera2c77052012-03-26 12:14:43 -0700209 } else if (win.mWinAnimator.isAnimating()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800210 nowGone = false;
211 }
212 }
213
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700214 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800215 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700216 if (!nowGone) {
217 // If the app is not yet gone, then it can only become visible/drawn.
218 if (!nowDrawn) {
219 nowDrawn = reportedDrawn;
220 }
221 if (!nowVisible) {
222 nowVisible = reportedVisible;
223 }
224 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800225 if (WindowManagerService.DEBUG_VISIBILITY) Slog.v(WindowManagerService.TAG, "VIS " + this + ": interesting="
226 + numInteresting + " visible=" + numVisible);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700227 if (nowDrawn != reportedDrawn) {
228 if (nowDrawn) {
229 Message m = service.mH.obtainMessage(
230 H.REPORT_APPLICATION_TOKEN_DRAWN, this);
231 service.mH.sendMessage(m);
232 }
233 reportedDrawn = nowDrawn;
234 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800235 if (nowVisible != reportedVisible) {
236 if (WindowManagerService.DEBUG_VISIBILITY) Slog.v(
237 WindowManagerService.TAG, "Visibility changed in " + this
238 + ": vis=" + nowVisible);
239 reportedVisible = nowVisible;
240 Message m = service.mH.obtainMessage(
241 H.REPORT_APPLICATION_TOKEN_WINDOWS,
242 nowVisible ? 1 : 0,
243 nowGone ? 1 : 0,
244 this);
245 service.mH.sendMessage(m);
246 }
247 }
248
249 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700250 WindowState candidate = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800251 int j = windows.size();
252 while (j > 0) {
253 j--;
254 WindowState win = windows.get(j);
255 if (win.mAttrs.type == WindowManager.LayoutParams.TYPE_BASE_APPLICATION
256 || win.mAttrs.type == WindowManager.LayoutParams.TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700257 // In cases where there are multiple windows, we prefer the non-exiting window. This
258 // happens for example when when replacing windows during an activity relaunch. When
259 // constructing the animation, we want the new window, not the exiting one.
260 if (win.mExiting) {
261 candidate = win;
262 } else {
263 return win;
264 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800265 }
266 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700267 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800268 }
269
Craig Mautner72669d12012-12-18 17:23:54 -0800270 boolean isVisible() {
271 final int N = allAppWindows.size();
Craig Mautner72669d12012-12-18 17:23:54 -0800272 for (int i=0; i<N; i++) {
273 WindowState win = allAppWindows.get(i);
Chong Zhangdb20b5f2015-10-23 14:01:43 -0700274 // If we're animating with a saved surface, we're already visible.
275 // Return true so that the alpha doesn't get cleared.
Craig Mautner72669d12012-12-18 17:23:54 -0800276 if (!win.mAppFreezing
Chong Zhangdb20b5f2015-10-23 14:01:43 -0700277 && (win.mViewVisibility == View.VISIBLE
278 || mAnimatingWithSavedSurface
279 || (win.mWinAnimator.isAnimating() &&
280 !service.mAppTransition.isTransitionSet()))
Craig Mautner72669d12012-12-18 17:23:54 -0800281 && !win.mDestroying && win.isDrawnLw()) {
282 return true;
283 }
284 }
285 return false;
286 }
287
Craig Mautnere3119b72015-01-20 15:02:36 -0800288 void removeAppFromTaskLocked() {
289 mIsExiting = false;
290 removeAllWindows();
291
Craig Mautner83162a92015-01-26 14:43:30 -0800292 // Use local variable because removeAppToken will null out mTask.
293 final Task task = mTask;
Craig Mautnere3119b72015-01-20 15:02:36 -0800294 if (task != null) {
295 if (!task.removeAppToken(this)) {
296 Slog.e(WindowManagerService.TAG, "removeAppFromTaskLocked: token=" + this
297 + " not found.");
298 }
299 task.mStack.mExitingAppTokens.remove(this);
300 }
301 }
302
Chong Zhangbef461f2015-10-27 11:38:24 -0700303 /**
304 * Checks whether we should save surfaces for this app.
305 *
306 * @return true if the surfaces should be saved, false otherwise.
307 */
308 boolean shouldSaveSurface() {
309 // We want to save surface if the app's windows are "allDrawn", or if we're
310 // currently animating with save surfaces. (If the app didn't even finish
311 // drawing when the user exits, but we have a saved surface from last time,
312 // we still want to keep that surface.)
313 mHasSavedSurface = allDrawn || mAnimatingWithSavedSurface;
314 if (mHasSavedSurface) {
315 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
316 "Saving surface: " + this);
317 return true;
318 }
319 return false;
320 }
321
322 void restoreSavedSurfaces() {
323 if (!mHasSavedSurface) {
324 return;
325 }
326
327 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
328 "Restoring saved surfaces: " + this + ", allDrawn=" + allDrawn);
329
330 mHasSavedSurface = false;
331 mAnimatingWithSavedSurface = true;
332 for (int i = windows.size() - 1; i >= 0; i--) {
333 WindowState ws = windows.get(i);
334 ws.mWinAnimator.mDrawState = WindowStateAnimator.READY_TO_SHOW;
335 }
336 }
337
338 void destroySavedSurfaces() {
339 if (mHasSavedSurface) {
340 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
341 "Destroying saved surface: " + this);
342 for (int i = windows.size() - 1; i >= 0; i--) {
343 final WindowState win = windows.get(i);
344 win.mWinAnimator.destroySurfaceLocked();
345 }
346 }
347 }
348
Wale Ogunwale98e70d02014-11-10 12:12:27 -0800349 @Override
Craig Mautner7c9ee192014-08-14 16:08:26 -0700350 void removeAllWindows() {
Craig Mautner7b4655d2014-11-20 12:13:22 -0800351 for (int winNdx = allAppWindows.size() - 1; winNdx >= 0;
352 // removeWindowLocked at bottom of loop may remove multiple entries from
353 // allAppWindows if the window to be removed has child windows. It also may
354 // not remove any windows from allAppWindows at all if win is exiting and
355 // currently animating away. This ensures that winNdx is monotonically decreasing
356 // and never beyond allAppWindows bounds.
357 winNdx = Math.min(winNdx - 1, allAppWindows.size() - 1)) {
358 WindowState win = allAppWindows.get(winNdx);
Wale Ogunwale98e70d02014-11-10 12:12:27 -0800359 if (WindowManagerService.DEBUG_WINDOW_MOVEMENT) {
360 Slog.w(WindowManagerService.TAG, "removeAllWindows: removing win=" + win);
361 }
362
Wale Ogunwalea6ab5c42015-04-24 09:00:25 -0700363 service.removeWindowLocked(win);
Craig Mautner7c9ee192014-08-14 16:08:26 -0700364 }
Craig Mautnere3119b72015-01-20 15:02:36 -0800365 allAppWindows.clear();
366 windows.clear();
Craig Mautner7c9ee192014-08-14 16:08:26 -0700367 }
368
Chong Zhang112eb8c2015-11-02 11:17:00 -0800369 void removeAllDeadWindows() {
370 for (int winNdx = allAppWindows.size() - 1; winNdx >= 0;
371 // removeWindowLocked at bottom of loop may remove multiple entries from
372 // allAppWindows if the window to be removed has child windows. It also may
373 // not remove any windows from allAppWindows at all if win is exiting and
374 // currently animating away. This ensures that winNdx is monotonically decreasing
375 // and never beyond allAppWindows bounds.
376 winNdx = Math.min(winNdx - 1, allAppWindows.size() - 1)) {
377 WindowState win = allAppWindows.get(winNdx);
378 if (win.mAppDied) {
379 if (WindowManagerService.DEBUG_WINDOW_MOVEMENT) {
380 Slog.w(WindowManagerService.TAG, "removeAllDeadWindows: " + win);
381 }
382 // Set mDestroying, we don't want any animation or delayed removal here.
383 win.mDestroying = true;
384 service.removeWindowLocked(win);
385 }
386 }
387 }
388
Craig Mautnerdbb79912012-03-01 18:59:14 -0800389 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800390 void dump(PrintWriter pw, String prefix) {
391 super.dump(pw, prefix);
392 if (appToken != null) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700393 pw.print(prefix); pw.print("app=true voiceInteraction="); pw.println(voiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800394 }
395 if (allAppWindows.size() > 0) {
396 pw.print(prefix); pw.print("allAppWindows="); pw.println(allAppWindows);
397 }
Craig Mautner83162a92015-01-26 14:43:30 -0800398 pw.print(prefix); pw.print("task="); pw.println(mTask);
399 pw.print(prefix); pw.print(" appFullscreen="); pw.print(appFullscreen);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800400 pw.print(" requestedOrientation="); pw.println(requestedOrientation);
401 pw.print(prefix); pw.print("hiddenRequested="); pw.print(hiddenRequested);
402 pw.print(" clientHidden="); pw.print(clientHidden);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700403 pw.print(" reportedDrawn="); pw.print(reportedDrawn);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800404 pw.print(" reportedVisible="); pw.println(reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -0700405 if (paused) {
406 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800407 }
408 if (numInterestingWindows != 0 || numDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -0700409 || allDrawn || mAppAnimator.allDrawn) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800410 pw.print(prefix); pw.print("numInterestingWindows=");
411 pw.print(numInterestingWindows);
412 pw.print(" numDrawnWindows="); pw.print(numDrawnWindows);
413 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -0700414 pw.print(" allDrawn="); pw.print(allDrawn);
415 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
416 pw.println(")");
417 }
418 if (inPendingTransaction) {
419 pw.print(prefix); pw.print("inPendingTransaction=");
420 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800421 }
Craig Mautner799bc1d2015-01-14 10:33:48 -0800422 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800423 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
424 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -0800425 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -0800426 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800427 }
428 if (startingWindow != null || startingView != null
429 || startingDisplayed || startingMoved) {
430 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
431 pw.print(" startingView="); pw.print(startingView);
432 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
433 pw.print(" startingMoved"); pw.println(startingMoved);
434 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800435 }
436
437 @Override
438 public String toString() {
439 if (stringName == null) {
440 StringBuilder sb = new StringBuilder();
441 sb.append("AppWindowToken{");
442 sb.append(Integer.toHexString(System.identityHashCode(this)));
443 sb.append(" token="); sb.append(token); sb.append('}');
444 stringName = sb.toString();
445 }
446 return stringName;
447 }
Jeff Browne9bdb312012-04-05 15:30:10 -0700448}