blob: fbd0ab566372e9b882e9481c7a3bbff97e60c61b [file] [log] [blame]
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001/*
2 * Copyright (C) 2010 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.am;
18
Wale Ogunwale3797c222015-10-27 14:21:58 -070019import static android.app.ActivityManager.StackId.DOCKED_STACK_ID;
20import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
21import static android.app.ActivityManager.StackId.FULLSCREEN_WORKSPACE_STACK_ID;
22import static android.app.ActivityManager.StackId.HOME_STACK_ID;
Wale Ogunwale56d75cf2016-03-09 15:14:47 -080023import static android.app.ActivityManager.StackId.INVALID_STACK_ID;
Wale Ogunwale3797c222015-10-27 14:21:58 -070024import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -080025import static android.content.pm.ActivityInfo.CONFIG_ORIENTATION;
26import static android.content.pm.ActivityInfo.CONFIG_SCREEN_LAYOUT;
27import static android.content.pm.ActivityInfo.CONFIG_SCREEN_SIZE;
28import static android.content.pm.ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE;
Wale Ogunwale5658e4b2016-02-12 12:22:19 -080029import static android.content.pm.ActivityInfo.FLAG_RESUME_WHILE_PAUSING;
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -070030import static android.content.pm.ActivityInfo.FLAG_SHOW_FOR_ALL_USERS;
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -080031import static android.content.res.Configuration.SCREENLAYOUT_UNDEFINED;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070032import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_ADD_REMOVE;
33import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_ALL;
34import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_APP;
35import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_CLEANUP;
36import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_CONFIGURATION;
37import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_CONTAINERS;
38import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_LOCKSCREEN;
39import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_PAUSE;
40import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_RELEASE;
41import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_RESULTS;
42import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SAVED_STATE;
43import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SCREENSHOTS;
44import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_STACK;
45import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_STATES;
46import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SWITCH;
47import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_TASKS;
48import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_TRANSITION;
49import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_USER_LEAVING;
50import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_VISIBILITY;
51import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_ADD_REMOVE;
52import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_APP;
53import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_CLEANUP;
54import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_CONFIGURATION;
55import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_CONTAINERS;
56import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_PAUSE;
57import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_RELEASE;
58import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_RESULTS;
59import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SAVED_STATE;
60import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SCREENSHOTS;
61import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_STACK;
62import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_STATES;
63import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SWITCH;
64import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_TASKS;
65import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_TRANSITION;
66import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_USER_LEAVING;
67import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_VISIBILITY;
68import static com.android.server.am.ActivityManagerDebugConfig.TAG_AM;
69import static com.android.server.am.ActivityManagerDebugConfig.TAG_WITH_CLASS_NAME;
Chong Zhang75b37202015-12-04 14:16:36 -080070import static com.android.server.am.ActivityManagerService.LOCK_SCREEN_SHOWN;
Craig Mautner84984fa2014-06-19 11:19:20 -070071import static com.android.server.am.ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070072import static com.android.server.am.ActivityRecord.HOME_ACTIVITY_TYPE;
Wale Ogunwalef40c11b2016-02-26 08:16:02 -080073import static com.android.server.am.ActivityRecord.STARTING_WINDOW_REMOVED;
74import static com.android.server.am.ActivityRecord.STARTING_WINDOW_SHOWN;
Wale Ogunwale39381972015-12-17 17:15:29 -080075import static com.android.server.am.ActivityStackSupervisor.FindTaskResult;
Wale Ogunwale06579d62016-04-30 15:29:06 -070076import static com.android.server.am.ActivityStackSupervisor.ON_TOP;
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -070077import static com.android.server.am.ActivityStackSupervisor.PRESERVE_WINDOWS;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070078import static com.android.server.wm.AppTransition.TRANSIT_ACTIVITY_CLOSE;
79import static com.android.server.wm.AppTransition.TRANSIT_ACTIVITY_OPEN;
80import static com.android.server.wm.AppTransition.TRANSIT_NONE;
81import static com.android.server.wm.AppTransition.TRANSIT_TASK_CLOSE;
82import static com.android.server.wm.AppTransition.TRANSIT_TASK_OPEN;
83import static com.android.server.wm.AppTransition.TRANSIT_TASK_OPEN_BEHIND;
84import static com.android.server.wm.AppTransition.TRANSIT_TASK_TO_BACK;
85import static com.android.server.wm.AppTransition.TRANSIT_TASK_TO_FRONT;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070086
87import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070088import android.app.ActivityManager;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070089import android.app.ActivityManager.RunningTaskInfo;
Wale Ogunwale3797c222015-10-27 14:21:58 -070090import android.app.ActivityManager.StackId;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070091import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070092import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080093import android.app.IActivityController;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070094import android.app.ResultInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070095import android.content.ComponentName;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070096import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070097import android.content.pm.ActivityInfo;
Todd Kennedy39bfee52016-02-24 10:28:21 -080098import android.content.pm.ApplicationInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070099import android.content.res.Configuration;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800100import android.graphics.Bitmap;
Jorim Jaggiaf80db42016-04-07 19:19:15 -0700101import android.graphics.Point;
102import android.graphics.Rect;
Santos Cordon73ff7d82013-03-06 17:24:11 -0800103import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700104import android.os.Binder;
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700105import android.os.Bundle;
Craig Mautner329f4122013-11-07 09:10:42 -0800106import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700107import android.os.Handler;
108import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +0900109import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700110import android.os.Message;
Craig Mautnera0026042014-04-23 11:45:37 -0700111import android.os.PersistableBundle;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700112import android.os.RemoteException;
113import android.os.SystemClock;
Craig Mautner329f4122013-11-07 09:10:42 -0800114import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700115import android.os.UserHandle;
Craig Mautner4c07d022014-06-11 17:12:59 -0700116import android.service.voice.IVoiceInteractionSession;
Jorim Jaggiaf80db42016-04-07 19:19:15 -0700117import android.util.ArraySet;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700118import android.util.EventLog;
Jorim Jaggi023da532016-04-20 22:42:32 -0700119import android.util.Log;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700120import android.util.Slog;
Craig Mautner59c00972012-07-30 12:10:24 -0700121import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700122
Jorim Jaggiaf80db42016-04-07 19:19:15 -0700123import com.android.internal.app.IVoiceInteractor;
124import com.android.internal.content.ReferrerIntent;
125import com.android.internal.os.BatteryStatsImpl;
126import com.android.server.Watchdog;
127import com.android.server.am.ActivityManagerService.ItemMatcher;
128import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
129import com.android.server.wm.TaskGroup;
130import com.android.server.wm.WindowManagerService;
131
Craig Mautnercae015f2013-02-08 14:31:27 -0800132import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -0800133import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700134import java.lang.ref.WeakReference;
135import java.util.ArrayList;
136import java.util.Iterator;
137import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -0800138import java.util.Objects;
Wale Ogunwale540e1232015-05-01 15:35:39 -0700139import java.util.Set;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700140
141/**
142 * State and management of a single stack of activities.
143 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700144final class ActivityStack {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800145
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800146 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityStack" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700147 private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
148 private static final String TAG_APP = TAG + POSTFIX_APP;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800149 private static final String TAG_CLEANUP = TAG + POSTFIX_CLEANUP;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700150 private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700151 private static final String TAG_CONTAINERS = TAG + POSTFIX_CONTAINERS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700152 private static final String TAG_PAUSE = TAG + POSTFIX_PAUSE;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700153 private static final String TAG_RELEASE = TAG + POSTFIX_RELEASE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700154 private static final String TAG_RESULTS = TAG + POSTFIX_RESULTS;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700155 private static final String TAG_SAVED_STATE = TAG + POSTFIX_SAVED_STATE;
156 private static final String TAG_SCREENSHOTS = TAG + POSTFIX_SCREENSHOTS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700157 private static final String TAG_STACK = TAG + POSTFIX_STACK;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700158 private static final String TAG_STATES = TAG + POSTFIX_STATES;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700159 private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
160 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
161 private static final String TAG_TRANSITION = TAG + POSTFIX_TRANSITION;
162 private static final String TAG_USER_LEAVING = TAG + POSTFIX_USER_LEAVING;
163 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700164
165 private static final boolean VALIDATE_TOKENS = false;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800166
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700167 // Ticks during which we check progress while waiting for an app to launch.
168 static final int LAUNCH_TICK = 500;
169
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700170 // How long we wait until giving up on the last activity to pause. This
171 // is short because it directly impacts the responsiveness of starting the
172 // next activity.
173 static final int PAUSE_TIMEOUT = 500;
174
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700175 // How long we wait for the activity to tell us it has stopped before
176 // giving up. This is a good amount of time because we really need this
177 // from the application in order to get its saved state.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700178 static final int STOP_TIMEOUT = 10 * 1000;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700179
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700180 // How long we wait until giving up on an activity telling us it has
181 // finished destroying itself.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700182 static final int DESTROY_TIMEOUT = 10 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800183
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700184 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800185 // disabled.
186 static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800187
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700188 // How long between activity launches that we consider safe to not warn
189 // the user about an unexpected activity being launched on top.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700190 static final long START_WARN_TIME = 5 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800191
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700192 // Set to false to disable the preview that is shown while a new activity
193 // is being started.
194 static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800195
Craig Mautner5eda9b32013-07-02 11:58:16 -0700196 // How long to wait for all background Activities to redraw following a call to
197 // convertToTranslucent().
198 static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
199
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -0800200 // How many activities have to be scheduled to stop to force a stop pass.
201 private static final int MAX_STOPPING_TO_FORCE = 3;
202
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700203 enum ActivityState {
204 INITIALIZING,
205 RESUMED,
206 PAUSING,
207 PAUSED,
208 STOPPING,
209 STOPPED,
210 FINISHING,
211 DESTROYING,
212 DESTROYED
213 }
214
Filip Gruszczynski0e381e22016-01-14 16:31:33 -0800215 // Stack is not considered visible.
216 static final int STACK_INVISIBLE = 0;
217 // Stack is considered visible
218 static final int STACK_VISIBLE = 1;
219 // Stack is considered visible, but only becuase it has activity that is visible behind other
220 // activities and there is a specific combination of stacks.
221 static final int STACK_VISIBLE_ACTIVITY_BEHIND = 2;
222
Wale Ogunwale06579d62016-04-30 15:29:06 -0700223 /* The various modes for the method {@link #removeTask}. */
224 // Task is being completely removed from all stacks in the system.
225 static final int REMOVE_TASK_MODE_DESTROYING = 0;
226 // Task is being removed from this stack so we can add it to another stack. In the case we are
227 // moving we don't want to perform some operations on the task like removing it from window
228 // manager or recents.
229 static final int REMOVE_TASK_MODE_MOVING = 1;
230 // Similar to {@link #REMOVE_TASK_MODE_MOVING} and the task will be added to the top of its new
231 // stack and the new stack will be on top of all stacks.
232 static final int REMOVE_TASK_MODE_MOVING_TO_TOP = 2;
233
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700234 final ActivityManagerService mService;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700235 final WindowManagerService mWindowManager;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800236 private final RecentTasks mRecentTasks;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800237
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700238 /**
239 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800240 * running) activities. It contains #TaskRecord objects.
241 */
Todd Kennedy39bfee52016-02-24 10:28:21 -0800242 private final ArrayList<TaskRecord> mTaskHistory = new ArrayList<>();
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800243
244 /**
Dianne Hackbornbe707852011-11-11 14:32:10 -0800245 * Used for validating app tokens with window manager.
246 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800247 final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<>();
Dianne Hackbornbe707852011-11-11 14:32:10 -0800248
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700249 /**
250 * List of running activities, sorted by recent usage.
251 * The first entry in the list is the least recently used.
252 * It contains HistoryRecord objects.
253 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800254 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700255
256 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700257 * Animations that for the current transition have requested not to
258 * be considered for the transition animation.
259 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800260 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700261
262 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700263 * When we are in the process of pausing an activity, before starting the
264 * next one, this variable holds the activity that is currently being paused.
265 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800266 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700267
268 /**
269 * This is the last activity that we put into the paused state. This is
270 * used to determine if we need to do an activity transition while sleeping,
271 * when we normally hold the top activity paused.
272 */
273 ActivityRecord mLastPausedActivity = null;
274
275 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700276 * Activities that specify No History must be removed once the user navigates away from them.
277 * If the device goes to sleep with such an activity in the paused state then we save it here
278 * and finish it later if another activity replaces it on wakeup.
279 */
280 ActivityRecord mLastNoHistoryActivity = null;
281
282 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700283 * Current activity that is resumed, or null if there is none.
284 */
285 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800286
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700287 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700288 * This is the last activity that has been started. It is only used to
289 * identify when multiple activities are started at once so that the user
290 * can be warned they may not be in the activity they think they are.
291 */
292 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800293
Craig Mautner5eda9b32013-07-02 11:58:16 -0700294 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
295 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
296 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
297 // Activity in mTranslucentActivityWaiting is notified via
298 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
299 // background activity being drawn then the same call will be made with a true value.
300 ActivityRecord mTranslucentActivityWaiting = null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700301 private ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent = new ArrayList<>();
Craig Mautner5eda9b32013-07-02 11:58:16 -0700302
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700303 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700304 * Set when we know we are going to be calling updateConfiguration()
305 * soon, so want to skip intermediate config checks.
306 */
307 boolean mConfigWillChange;
308
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700309 // Whether or not this stack covers the entire screen; by default stacks are fullscreen
Todd Kennedyaab56db2015-01-30 09:39:53 -0800310 boolean mFullscreen = true;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -0700311 // Current bounds of the stack or null if fullscreen.
312 Rect mBounds = null;
Todd Kennedyaab56db2015-01-30 09:39:53 -0800313
Jorim Jaggi192086e2016-03-11 17:17:03 +0100314 boolean mUpdateBoundsDeferred;
315 boolean mUpdateBoundsDeferredCalled;
316 final Rect mDeferredBounds = new Rect();
317 final Rect mDeferredTaskBounds = new Rect();
318 final Rect mDeferredTaskInsetBounds = new Rect();
319
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700320 long mLaunchStartTime = 0;
321 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800322
Craig Mautner858d8a62013-04-23 17:08:34 -0700323 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700324
Craig Mautnerc00204b2013-03-05 15:02:14 -0800325 final int mStackId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800326 final ActivityContainer mActivityContainer;
Craig Mautnere0a38842013-12-16 16:14:02 -0800327 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
328 ArrayList<ActivityStack> mStacks;
329 /** The attached Display's unique identifier, or -1 if detached */
330 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800331
Craig Mautner27084302013-03-25 08:05:25 -0700332 /** Run all ActivityStacks through this */
333 final ActivityStackSupervisor mStackSupervisor;
334
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700335 private final LaunchingTaskPositioner mTaskPositioner;
336
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700337 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700338 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
339 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
340 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
341 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700342 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Jose Lima4b6c6692014-08-12 17:41:12 -0700343 static final int RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG =
Craig Mautneree2e45a2014-06-27 12:10:03 -0700344 ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 7;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700345
346 static class ScheduleDestroyArgs {
347 final ProcessRecord mOwner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700348 final String mReason;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700349 ScheduleDestroyArgs(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700350 mOwner = owner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700351 mReason = reason;
352 }
353 }
354
Zoran Marcetaf958b322012-08-09 20:27:12 +0900355 final Handler mHandler;
356
357 final class ActivityStackHandler extends Handler {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800358
Craig Mautnerc8143c62013-09-03 12:15:57 -0700359 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900360 super(looper);
361 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700362
Zoran Marcetaf958b322012-08-09 20:27:12 +0900363 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700364 public void handleMessage(Message msg) {
365 switch (msg.what) {
366 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800367 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700368 // We don't at this point know if the activity is fullscreen,
369 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800370 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700371 synchronized (mService) {
372 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700373 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700374 }
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700375 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800376 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700377 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700378 case LAUNCH_TICK_MSG: {
379 ActivityRecord r = (ActivityRecord)msg.obj;
380 synchronized (mService) {
381 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700382 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700383 }
384 }
385 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700386 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800387 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700388 // We don't at this point know if the activity is fullscreen,
389 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800390 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800391 synchronized (mService) {
Craig Mautner299f9602015-01-26 09:47:33 -0800392 activityDestroyedLocked(r != null ? r.appToken : null, "destroyTimeout");
Craig Mautnerd2328952013-03-05 12:46:26 -0800393 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700394 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700395 case STOP_TIMEOUT_MSG: {
396 ActivityRecord r = (ActivityRecord)msg.obj;
397 // We don't at this point know if the activity is fullscreen,
398 // so we need to be conservative and assume it isn't.
399 Slog.w(TAG, "Activity stop timeout for " + r);
400 synchronized (mService) {
401 if (r.isInHistory()) {
402 activityStoppedLocked(r, null, null, null);
403 }
404 }
405 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700406 case DESTROY_ACTIVITIES_MSG: {
407 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
408 synchronized (mService) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700409 destroyActivitiesLocked(args.mOwner, args.mReason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700410 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700411 } break;
412 case TRANSLUCENT_TIMEOUT_MSG: {
413 synchronized (mService) {
414 notifyActivityDrawnLocked(null);
415 }
416 } break;
Jose Lima4b6c6692014-08-12 17:41:12 -0700417 case RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG: {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700418 synchronized (mService) {
Jose Lima4b6c6692014-08-12 17:41:12 -0700419 final ActivityRecord r = getVisibleBehindActivity();
420 Slog.e(TAG, "Timeout waiting for cancelVisibleBehind player=" + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700421 if (r != null) {
422 mService.killAppAtUsersRequest(r.app, null);
423 }
424 }
425 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700426 }
427 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800428 }
429
Craig Mautner34b73df2014-01-12 21:11:08 -0800430 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800431 int count = 0;
432 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
433 count += mTaskHistory.get(taskNdx).mActivities.size();
434 }
435 return count;
436 }
437
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800438 ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer,
439 RecentTasks recentTasks) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800440 mActivityContainer = activityContainer;
441 mStackSupervisor = activityContainer.getOuter();
442 mService = mStackSupervisor.mService;
443 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
444 mWindowManager = mService.mWindowManager;
445 mStackId = activityContainer.mStackId;
Fyodor Kupolovf63b89c2015-10-27 18:08:56 -0700446 mCurrentUser = mService.mUserController.getCurrentUserIdLocked();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800447 mRecentTasks = recentTasks;
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700448 mTaskPositioner = mStackId == FREEFORM_WORKSPACE_STACK_ID
449 ? new LaunchingTaskPositioner() : null;
450 }
451
452 void attachDisplay(ActivityStackSupervisor.ActivityDisplay activityDisplay, boolean onTop) {
453 mDisplayId = activityDisplay.mDisplayId;
454 mStacks = activityDisplay.mStacks;
455 mBounds = mWindowManager.attachStack(mStackId, activityDisplay.mDisplayId, onTop);
456 mFullscreen = mBounds == null;
457 if (mTaskPositioner != null) {
458 mTaskPositioner.setDisplay(activityDisplay.mDisplay);
459 mTaskPositioner.configure(mBounds);
460 }
Wale Ogunwale961f4852016-02-01 20:25:54 -0800461
462 if (mStackId == DOCKED_STACK_ID) {
463 // If we created a docked stack we want to resize it so it resizes all other stacks
464 // in the system.
465 mStackSupervisor.resizeDockedStackLocked(
466 mBounds, null, null, null, null, PRESERVE_WINDOWS);
467 }
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700468 }
469
470 void detachDisplay() {
471 mDisplayId = Display.INVALID_DISPLAY;
472 mStacks = null;
473 if (mTaskPositioner != null) {
474 mTaskPositioner.reset();
475 }
476 mWindowManager.detachStack(mStackId);
Jorim Jaggi899327f2016-02-25 20:44:18 -0500477 if (mStackId == DOCKED_STACK_ID) {
478 // If we removed a docked stack we want to resize it so it resizes all other stacks
479 // in the system to fullscreen.
480 mStackSupervisor.resizeDockedStackLocked(
481 null, null, null, null, null, PRESERVE_WINDOWS);
482 }
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700483 }
484
Winsonc809cbb2015-11-02 12:06:15 -0800485 public void getDisplaySize(Point out) {
486 mActivityContainer.mActivityDisplay.mDisplay.getSize(out);
487 }
488
Jorim Jaggi192086e2016-03-11 17:17:03 +0100489 /**
490 * Defers updating the bounds of the stack. If the stack was resized/repositioned while
491 * deferring, the bounds will update in {@link #continueUpdateBounds()}.
492 */
493 void deferUpdateBounds() {
494 if (!mUpdateBoundsDeferred) {
495 mUpdateBoundsDeferred = true;
496 mUpdateBoundsDeferredCalled = false;
497 }
498 }
499
500 /**
501 * Continues updating bounds after updates have been deferred. If there was a resize attempt
502 * between {@link #deferUpdateBounds()} and {@link #continueUpdateBounds()}, the stack will
503 * be resized to that bounds.
504 */
505 void continueUpdateBounds() {
506 final boolean wasDeferred = mUpdateBoundsDeferred;
507 mUpdateBoundsDeferred = false;
508 if (wasDeferred && mUpdateBoundsDeferredCalled) {
509 mStackSupervisor.resizeStackUncheckedLocked(this,
510 mDeferredBounds.isEmpty() ? null : mDeferredBounds,
511 mDeferredTaskBounds.isEmpty() ? null : mDeferredTaskBounds,
512 mDeferredTaskInsetBounds.isEmpty() ? null : mDeferredTaskInsetBounds);
513 }
514 }
515
516 boolean updateBoundsAllowed(Rect bounds, Rect tempTaskBounds,
517 Rect tempTaskInsetBounds) {
518 if (!mUpdateBoundsDeferred) {
519 return true;
520 }
521 if (bounds != null) {
522 mDeferredBounds.set(bounds);
523 } else {
524 mDeferredBounds.setEmpty();
525 }
526 if (tempTaskBounds != null) {
527 mDeferredTaskBounds.set(tempTaskBounds);
528 } else {
529 mDeferredTaskBounds.setEmpty();
530 }
531 if (tempTaskInsetBounds != null) {
532 mDeferredTaskInsetBounds.set(tempTaskInsetBounds);
533 } else {
534 mDeferredTaskInsetBounds.setEmpty();
535 }
536 mUpdateBoundsDeferredCalled = true;
537 return false;
538 }
539
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700540 void setBounds(Rect bounds) {
541 mBounds = mFullscreen ? null : new Rect(bounds);
Filip Gruszczynski9ac01a72015-09-04 11:12:17 -0700542 if (mTaskPositioner != null) {
543 mTaskPositioner.configure(bounds);
544 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700545 }
Craig Mautner5962b122012-10-05 14:45:52 -0700546
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700547 final ActivityRecord topRunningActivityLocked() {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800548 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700549 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked();
Craig Mautner6b74cb52013-09-27 17:02:21 -0700550 if (r != null) {
551 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800552 }
553 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700554 return null;
555 }
556
557 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800558 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
559 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800560 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800561 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
562 ActivityRecord r = activities.get(activityNdx);
Chong Zhang87761972016-08-22 13:53:24 -0700563 if (!r.finishing && !r.delayedResume && r != notTop && r.okToShowLocked()) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800564 return r;
565 }
566 }
567 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700568 return null;
569 }
570
571 /**
572 * This is a simplified version of topRunningActivityLocked that provides a number of
573 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800574 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700575 * @param token If non-null, any history records matching this token will be skipped.
576 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800577 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700578 * @return Returns the HistoryRecord of the next activity on the stack.
579 */
580 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800581 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
582 TaskRecord task = mTaskHistory.get(taskNdx);
583 if (task.taskId == taskId) {
584 continue;
585 }
586 ArrayList<ActivityRecord> activities = task.mActivities;
587 for (int i = activities.size() - 1; i >= 0; --i) {
588 final ActivityRecord r = activities.get(i);
589 // Note: the taskId check depends on real taskId fields being non-zero
Chong Zhang87761972016-08-22 13:53:24 -0700590 if (!r.finishing && (token != r.appToken) && r.okToShowLocked()) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800591 return r;
592 }
593 }
594 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700595 return null;
596 }
597
Craig Mautner8849a5e2013-04-02 16:41:03 -0700598 final ActivityRecord topActivity() {
Craig Mautner8849a5e2013-04-02 16:41:03 -0700599 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
600 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Craig Mautner0175b882014-09-07 18:05:31 -0700601 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
602 final ActivityRecord r = activities.get(activityNdx);
603 if (!r.finishing) {
604 return r;
605 }
Craig Mautner8849a5e2013-04-02 16:41:03 -0700606 }
607 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700608 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700609 }
610
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700611 final TaskRecord topTask() {
612 final int size = mTaskHistory.size();
613 if (size > 0) {
614 return mTaskHistory.get(size - 1);
615 }
616 return null;
617 }
618
Craig Mautnerd2328952013-03-05 12:46:26 -0800619 TaskRecord taskForIdLocked(int id) {
620 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
621 final TaskRecord task = mTaskHistory.get(taskNdx);
622 if (task.taskId == id) {
623 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800624 }
625 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700626 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700627 }
628
Craig Mautnerd2328952013-03-05 12:46:26 -0800629 ActivityRecord isInStackLocked(IBinder token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700630 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale60454db2015-01-23 16:05:07 -0800631 return isInStackLocked(r);
632 }
633
634 ActivityRecord isInStackLocked(ActivityRecord r) {
635 if (r == null) {
636 return null;
637 }
638 final TaskRecord task = r.task;
Wale Ogunwale7d701172015-03-11 15:36:30 -0700639 if (task != null && task.stack != null
640 && task.mActivities.contains(r) && mTaskHistory.contains(task)) {
Wale Ogunwale60454db2015-01-23 16:05:07 -0800641 if (task.stack != this) Slog.w(TAG,
Craig Mautnerd2328952013-03-05 12:46:26 -0800642 "Illegal state! task does not point to stack it is in.");
Wale Ogunwale60454db2015-01-23 16:05:07 -0800643 return r;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800644 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800645 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800646 }
647
Craig Mautner2420ead2013-04-01 17:13:20 -0700648 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700649 final boolean hadit = mLRUActivities.remove(r);
650 mLRUActivities.add(r);
651 return hadit;
652 }
653
Craig Mautnerde4ef022013-04-07 19:01:33 -0700654 final boolean isHomeStack() {
655 return mStackId == HOME_STACK_ID;
656 }
657
Winson Chung0583d3d2015-12-18 10:03:12 -0500658 final boolean isDockedStack() {
659 return mStackId == DOCKED_STACK_ID;
660 }
661
662 final boolean isPinnedStack() {
663 return mStackId == PINNED_STACK_ID;
664 }
665
Craig Mautnere0a38842013-12-16 16:14:02 -0800666 final boolean isOnHomeDisplay() {
667 return isAttached() &&
668 mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
669 }
670
Wale Ogunwaleeae451e2015-08-04 15:20:50 -0700671 void moveToFront(String reason) {
672 moveToFront(reason, null);
673 }
674
675 /**
676 * @param reason The reason for moving the stack to the front.
677 * @param task If non-null, the task will be moved to the top of the stack.
678 * */
679 void moveToFront(String reason, TaskRecord task) {
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700680 if (!isAttached()) {
681 return;
682 }
Wale Ogunwale925d0d12015-09-23 15:40:07 -0700683
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700684 mStacks.remove(this);
685 int addIndex = mStacks.size();
686
687 if (addIndex > 0) {
688 final ActivityStack topStack = mStacks.get(addIndex - 1);
Filip Gruszczynski114d5ca2015-12-04 09:05:00 -0800689 if (StackId.isAlwaysOnTop(topStack.mStackId) && topStack != this) {
690 // If the top stack is always on top, we move this stack just below it.
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700691 addIndex--;
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800692 }
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700693 }
694
695 mStacks.add(addIndex, this);
696
697 // TODO(multi-display): Needs to also work if focus is moving to the non-home display.
698 if (isOnHomeDisplay()) {
Wale Ogunwale4cea0f52015-12-25 06:30:31 -0800699 mStackSupervisor.setFocusStackUnchecked(reason, this);
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700700 }
701 if (task != null) {
702 insertTaskAtTop(task, null);
703 } else {
704 task = topTask();
705 }
706 if (task != null) {
707 mWindowManager.moveTaskToTop(task.taskId);
Craig Mautner4a1cb222013-12-04 16:14:06 -0800708 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800709 }
710
Jiaquan Hee13e9642016-06-15 15:16:13 -0700711 /**
712 * @param task If non-null, the task will be moved to the back of the stack.
713 * */
714 void moveToBack(TaskRecord task) {
715 if (!isAttached()) {
716 return;
717 }
718
719 mStacks.remove(this);
720 mStacks.add(0, this);
721
722 if (task != null) {
723 mTaskHistory.remove(task);
724 mTaskHistory.add(0, task);
725 updateTaskMovement(task, false);
726 mWindowManager.moveTaskToBottom(task.taskId);
727 }
728 }
729
Wale Ogunwaled046a012015-12-24 13:05:59 -0800730 boolean isFocusable() {
Wale Ogunwale4cea0f52015-12-25 06:30:31 -0800731 if (StackId.canReceiveKeys(mStackId)) {
732 return true;
733 }
734 // The stack isn't focusable. See if its top activity is focusable to force focus on the
735 // stack.
736 final ActivityRecord r = topRunningActivityLocked();
737 return r != null && r.isFocusable();
Wale Ogunwaled046a012015-12-24 13:05:59 -0800738 }
739
Craig Mautnere0a38842013-12-16 16:14:02 -0800740 final boolean isAttached() {
741 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800742 }
743
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700744 /**
Wale Ogunwale39381972015-12-17 17:15:29 -0800745 * Returns the top activity in any existing task matching the given Intent in the input result.
746 * Returns null if no such task is found.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700747 */
Wale Ogunwale39381972015-12-17 17:15:29 -0800748 void findTaskLocked(ActivityRecord target, FindTaskResult result) {
Craig Mautnerac6f8432013-07-17 13:24:59 -0700749 Intent intent = target.intent;
750 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700751 ComponentName cls = intent.getComponent();
752 if (info.targetActivity != null) {
753 cls = new ComponentName(info.packageName, info.targetActivity);
754 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700755 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautnerd00f4742014-03-12 14:17:26 -0700756 boolean isDocument = intent != null & intent.isDocument();
757 // If documentData is non-null then it must match the existing task data.
758 Uri documentData = isDocument ? intent.getData() : null;
Craig Mautner000f0022013-02-26 15:04:29 -0800759
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700760 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800761 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
762 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn91097de2014-04-04 18:02:06 -0700763 if (task.voiceSession != null) {
764 // We never match voice sessions; those always run independently.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700765 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": voice session");
Dianne Hackborn91097de2014-04-04 18:02:06 -0700766 continue;
767 }
Craig Mautnerac6f8432013-07-17 13:24:59 -0700768 if (task.userId != userId) {
769 // Looking for a different task.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700770 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700771 continue;
772 }
Craig Mautner000f0022013-02-26 15:04:29 -0800773 final ActivityRecord r = task.getTopActivity();
774 if (r == null || r.finishing || r.userId != userId ||
775 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700776 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800777 continue;
778 }
Chong Zhangb546f7e2015-08-05 14:21:36 -0700779 if (r.mActivityType != target.mActivityType) {
780 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch activity type");
781 continue;
782 }
Craig Mautner000f0022013-02-26 15:04:29 -0800783
Craig Mautnerd00f4742014-03-12 14:17:26 -0700784 final Intent taskIntent = task.intent;
785 final Intent affinityIntent = task.affinityIntent;
786 final boolean taskIsDocument;
787 final Uri taskDocumentData;
788 if (taskIntent != null && taskIntent.isDocument()) {
789 taskIsDocument = true;
790 taskDocumentData = taskIntent.getData();
791 } else if (affinityIntent != null && affinityIntent.isDocument()) {
792 taskIsDocument = true;
793 taskDocumentData = affinityIntent.getData();
794 } else {
795 taskIsDocument = false;
796 taskDocumentData = null;
797 }
798
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700799 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Comparing existing cls="
Craig Mautnerd00f4742014-03-12 14:17:26 -0700800 + taskIntent.getComponent().flattenToShortString()
Dianne Hackborn79228822014-09-16 11:11:23 -0700801 + "/aff=" + r.task.rootAffinity + " to new cls="
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700802 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Andrii Kulian206b9fa2016-06-02 13:18:01 -0700803 // TODO Refactor to remove duplications. Check if logic can be simplified.
804 if (taskIntent != null && taskIntent.getComponent() != null &&
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700805 taskIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700806 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700807 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800808 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700809 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
810 "For Intent " + intent + " bringing to top: " + r.intent);
Wale Ogunwale39381972015-12-17 17:15:29 -0800811 result.r = r;
812 result.matchedByRootAffinity = false;
813 break;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700814 } else if (affinityIntent != null && affinityIntent.getComponent() != null &&
815 affinityIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700816 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700817 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800818 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700819 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
820 "For Intent " + intent + " bringing to top: " + r.intent);
Wale Ogunwale39381972015-12-17 17:15:29 -0800821 result.r = r;
822 result.matchedByRootAffinity = false;
823 break;
Andrii Kulian206b9fa2016-06-02 13:18:01 -0700824 } else if (!isDocument && !taskIsDocument
825 && result.r == null && task.canMatchRootAffinity()) {
826 if (task.rootAffinity.equals(target.taskAffinity)) {
827 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching affinity candidate!");
828 // It is possible for multiple tasks to have the same root affinity especially
829 // if they are in separate stacks. We save off this candidate, but keep looking
830 // to see if there is a better candidate.
831 result.r = r;
832 result.matchedByRootAffinity = true;
833 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700834 } else if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700835 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700836 }
837
838 /**
839 * Returns the first activity (starting from the top of the stack) that
840 * is the same as the given activity. Returns null if no such activity
841 * is found.
842 */
Andrii Kuliand3bbb132016-06-16 16:00:20 -0700843 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info,
844 boolean compareIntentFilters) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700845 ComponentName cls = intent.getComponent();
846 if (info.targetActivity != null) {
847 cls = new ComponentName(info.packageName, info.targetActivity);
848 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700849 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700850
Craig Mautner000f0022013-02-26 15:04:29 -0800851 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700852 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautnerac6f8432013-07-17 13:24:59 -0700853 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700854
Craig Mautner000f0022013-02-26 15:04:29 -0800855 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
856 ActivityRecord r = activities.get(activityNdx);
Chong Zhang87761972016-08-22 13:53:24 -0700857 if (!r.okToShowLocked()) {
Wale Ogunwale25073dd2015-07-21 16:54:54 -0700858 continue;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700859 }
Andrii Kuliand3bbb132016-06-16 16:00:20 -0700860 if (!r.finishing && r.userId == userId) {
861 if (compareIntentFilters) {
862 if (r.intent.filterEquals(intent)) {
863 return r;
864 }
865 } else {
866 if (r.intent.getComponent().equals(cls)) {
867 return r;
868 }
869 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700870 }
871 }
872 }
873
874 return null;
875 }
876
Amith Yamasani742a6712011-05-04 14:49:28 -0700877 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700878 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700879 */
Craig Mautner93529a42013-10-04 15:03:13 -0700880 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800881 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700882 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800883 }
884 mCurrentUser = userId;
885
886 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800887 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800888 for (int i = 0; i < index; ) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700889 final TaskRecord task = mTaskHistory.get(i);
890
Chong Zhang87761972016-08-22 13:53:24 -0700891 if (task.okToShowLocked()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700892 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "switchUserLocked: stack=" + getStackId() +
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700893 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800894 mTaskHistory.remove(i);
895 mTaskHistory.add(task);
896 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800897 // Use same value for i.
898 } else {
899 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800900 }
901 }
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700902 if (VALIDATE_TOKENS) {
903 validateAppTokensLocked();
904 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700905 }
906
Craig Mautner2420ead2013-04-01 17:13:20 -0700907 void minimalResumeActivityLocked(ActivityRecord r) {
Wale Ogunwale5658e4b2016-02-12 12:22:19 -0800908 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + r + " (starting new instance)"
909 + " callers=" + Debug.getCallers(5));
Chong Zhang6cda19c2016-06-14 19:07:56 -0700910 setResumedActivityLocked(r, "minimalResumeActivityLocked");
Craig Mautner2420ead2013-04-01 17:13:20 -0700911 completeResumeLocked(r);
Craig Mautner1e8b8722013-10-14 18:24:52 -0700912 setLaunchTime(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700913 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
914 "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700915 }
916
Filip Gruszczynski3d82ed62015-12-10 10:41:39 -0800917 void addRecentActivityLocked(ActivityRecord r) {
Chong Zhang45c25ce2015-08-10 22:18:26 -0700918 if (r != null) {
919 mRecentTasks.addLocked(r.task);
920 r.task.touchActiveTime();
921 }
922 }
923
Narayan Kamath7829c812015-06-08 17:39:43 +0100924 private void startLaunchTraces(String packageName) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700925 if (mFullyDrawnStartTime != 0) {
926 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
927 }
Narayan Kamath7829c812015-06-08 17:39:43 +0100928 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching: " + packageName, 0);
Dianne Hackborncee04b52013-07-03 17:01:28 -0700929 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
930 }
931
932 private void stopFullyDrawnTraceIfNeeded() {
933 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
934 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
935 mFullyDrawnStartTime = 0;
936 }
937 }
938
Craig Mautnere79d42682013-04-01 19:01:53 -0700939 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700940 if (r.displayStartTime == 0) {
941 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
942 if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100943 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700944 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700945 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700946 } else if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100947 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700948 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700949 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700950 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800951
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700952 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700953 // Make sure that there is no activity waiting for this to launch.
954 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
955 r.displayStartTime = r.fullyDrawnStartTime = 0;
956 } else {
957 mStackSupervisor.removeTimeoutsForActivityLocked(r);
958 mStackSupervisor.scheduleIdleTimeoutLocked(r);
959 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700960 }
961
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800962 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800963 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800964 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
965 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
966 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
967 activities.get(activityNdx).setSleeping(false);
968 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800969 }
Craig Mautnerf49b0a42014-11-20 15:06:40 -0800970 if (mPausingActivity != null) {
971 Slog.d(TAG, "awakeFromSleepingLocked: previously pausing activity didn't pause");
972 activityPausedLocked(mPausingActivity.appToken, true);
973 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800974 }
975
Todd Kennedy39bfee52016-02-24 10:28:21 -0800976 void updateActivityApplicationInfoLocked(ApplicationInfo aInfo) {
977 final String packageName = aInfo.packageName;
978 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
979 final List<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
980 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
981 if (packageName.equals(activities.get(activityNdx).packageName)) {
982 activities.get(activityNdx).info.applicationInfo = aInfo;
983 }
984 }
985 }
986 }
987
Craig Mautner0eea92c2013-05-16 13:35:39 -0700988 /**
989 * @return true if something must be done before going to sleep.
990 */
991 boolean checkReadyForSleepLocked() {
992 if (mResumedActivity != null) {
993 // Still have something resumed; can't sleep until it is paused.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700994 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep needs to pause " + mResumedActivity);
995 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
996 "Sleep => pause with userLeaving=false");
Wale Ogunwale950faff2016-08-08 09:51:04 -0700997 startPausingLocked(false, true, null, false);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700998 return true;
999 }
1000 if (mPausingActivity != null) {
1001 // Still waiting for something to pause; can't sleep yet.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001002 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still waiting to pause " + mPausingActivity);
Craig Mautner0eea92c2013-05-16 13:35:39 -07001003 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001004 }
1005
Wale Ogunwale5c42e502015-04-08 09:18:54 -07001006 if (hasVisibleBehindActivity()) {
1007 // Stop visible behind activity before going to sleep.
Wale Ogunwale1f544be2015-12-17 10:27:23 -08001008 final ActivityRecord r = getVisibleBehindActivity();
Wale Ogunwale5c42e502015-04-08 09:18:54 -07001009 mStackSupervisor.mStoppingActivities.add(r);
Wale Ogunwale1f544be2015-12-17 10:27:23 -08001010 if (DEBUG_STATES) Slog.v(TAG_STATES, "Sleep still waiting to stop visible behind " + r);
Wale Ogunwale5c42e502015-04-08 09:18:54 -07001011 return true;
1012 }
1013
Craig Mautner0eea92c2013-05-16 13:35:39 -07001014 return false;
1015 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001016
Craig Mautner0eea92c2013-05-16 13:35:39 -07001017 void goToSleep() {
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07001018 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001019
Andrii Kulianf9949d52016-05-06 12:53:25 -07001020 // Make sure any paused or stopped but visible activities are now sleeping.
Craig Mautner0eea92c2013-05-16 13:35:39 -07001021 // This ensures that the activity's onStop() is called.
1022 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1023 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1024 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1025 final ActivityRecord r = activities.get(activityNdx);
Andrii Kulianf9949d52016-05-06 12:53:25 -07001026 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED
1027 || r.state == ActivityState.PAUSED || r.state == ActivityState.PAUSING) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07001028 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001029 }
1030 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001031 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001032 }
Craig Mautner59c00972012-07-30 12:10:24 -07001033
Winson8b1871d2015-11-20 09:56:20 -08001034 public final Bitmap screenshotActivitiesLocked(ActivityRecord who) {
1035 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "screenshotActivitiesLocked: " + who);
Dianne Hackbornff801ec2011-01-22 18:05:38 -08001036 if (who.noDisplay) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001037 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tNo display");
Dianne Hackbornff801ec2011-01-22 18:05:38 -08001038 return null;
1039 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001040
Winson Chung083baf92014-07-11 10:32:42 -07001041 if (isHomeStack()) {
Winson Chung376543b2014-05-21 17:43:28 -07001042 // This is an optimization -- since we never show Home or Recents within Recents itself,
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -08001043 // we can just go ahead and skip taking the screenshot if this is the home stack.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001044 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tHome stack");
Dianne Hackborn4d03fe62013-10-04 17:26:37 -07001045 return null;
1046 }
1047
Winson Chung48a10a52014-08-27 14:36:51 -07001048 int w = mService.mThumbnailWidth;
1049 int h = mService.mThumbnailHeight;
Winson8b1871d2015-11-20 09:56:20 -08001050 float scale = 1f;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08001051 if (w > 0) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001052 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tTaking screenshot");
Winson8b1871d2015-11-20 09:56:20 -08001053
1054 // When this flag is set, we currently take the fullscreen screenshot of the activity
Winson387aac62015-11-25 11:18:56 -08001055 // but scaled to half the size. This gives us a "good-enough" fullscreen thumbnail to
1056 // use within SystemUI while keeping memory usage low.
Winson Chungead5c0f2015-12-14 11:18:57 -05001057 if (ActivityManagerService.TAKE_FULLSCREEN_SCREENSHOTS) {
Winson8b1871d2015-11-20 09:56:20 -08001058 w = h = -1;
Winson21700932016-03-24 17:26:23 -07001059 scale = mService.mFullscreenThumbnailScale;
Winson8b1871d2015-11-20 09:56:20 -08001060 }
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -08001061 return mWindowManager.screenshotApplications(who.appToken, Display.DEFAULT_DISPLAY,
Winson8b1871d2015-11-20 09:56:20 -08001062 w, h, scale);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08001063 }
Winson Chung376543b2014-05-21 17:43:28 -07001064 Slog.e(TAG, "Invalid thumbnail dimensions: " + w + "x" + h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08001065 return null;
1066 }
1067
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001068 /**
1069 * Start pausing the currently resumed activity. It is an error to call this if there
1070 * is already an activity being paused or there is no resumed activity.
1071 *
1072 * @param userLeaving True if this should result in an onUserLeaving to the current activity.
1073 * @param uiSleeping True if this is happening with the user interface going to sleep (the
1074 * screen turning off).
Wale Ogunwale950faff2016-08-08 09:51:04 -07001075 * @param resuming The activity we are currently trying to resume or null if this is not being
1076 * called as part of resuming the top activity, so we shouldn't try to instigate
1077 * a resume here if not null.
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001078 * @param dontWait True if the caller does not want to wait for the pause to complete. If
1079 * set to true, we will immediately complete the pause here before returning.
1080 * @return Returns true if an activity now is in the PAUSING state, and we are waiting for
1081 * it to tell us when it is done.
1082 */
Wale Ogunwale950faff2016-08-08 09:51:04 -07001083 final boolean startPausingLocked(boolean userLeaving, boolean uiSleeping,
1084 ActivityRecord resuming, boolean dontWait) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001085 if (mPausingActivity != null) {
riddle_hsu7dfe4d72015-02-16 18:43:49 +08001086 Slog.wtf(TAG, "Going to pause when pause is already pending for " + mPausingActivity
1087 + " state=" + mPausingActivity.state);
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07001088 if (!mService.isSleepingLocked()) {
riddle_hsu7dfe4d72015-02-16 18:43:49 +08001089 // Avoid recursion among check for sleep and complete pause during sleeping.
1090 // Because activity will be paused immediately after resume, just let pause
1091 // be completed by the order of activity paused from clients.
Wale Ogunwale950faff2016-08-08 09:51:04 -07001092 completePauseLocked(false, resuming);
riddle_hsu7dfe4d72015-02-16 18:43:49 +08001093 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001094 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001095 ActivityRecord prev = mResumedActivity;
1096 if (prev == null) {
Wale Ogunwale950faff2016-08-08 09:51:04 -07001097 if (resuming == null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001098 Slog.wtf(TAG, "Trying to pause when nothing is resumed");
Wale Ogunwaled046a012015-12-24 13:05:59 -08001099 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001100 }
1101 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001102 }
Craig Mautnerdf88d732014-01-27 09:21:32 -08001103
1104 if (mActivityContainer.mParentActivity == null) {
1105 // Top level stack, not a child. Look for child stacks.
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001106 mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping, resuming, dontWait);
Craig Mautnerdf88d732014-01-27 09:21:32 -08001107 }
1108
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001109 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSING: " + prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001110 else if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001111 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001112 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001113 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -07001114 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
1115 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001116 prev.state = ActivityState.PAUSING;
1117 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001118 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -07001119 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
Wale Ogunwale979f5ed2015-10-12 11:22:50 -07001120 if (mService.mHasRecents
1121 && (next == null || next.noDisplay || next.task != prev.task || uiSleeping)) {
Jorim Jaggic2f262b2015-12-07 16:59:10 -08001122 prev.mUpdateTaskThumbnailWhenHidden = true;
Craig Mautner6f6d56f2013-10-24 16:02:07 -07001123 }
Dianne Hackborncee04b52013-07-03 17:01:28 -07001124 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001125
1126 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -08001127
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001128 if (prev.app != null && prev.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001129 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending pause: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001130 try {
1131 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07001132 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001133 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -07001134 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001135 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001136 userLeaving, prev.configChangeFlags, dontWait);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001137 } catch (Exception e) {
1138 // Ignore exception, if process died other code will cleanup.
1139 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001140 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001141 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07001142 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001143 }
1144 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001145 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001146 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07001147 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001148 }
1149
1150 // If we are not going to sleep, we want to ensure the device is
1151 // awake until the next activity is started.
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07001152 if (!uiSleeping && !mService.isSleepingOrShuttingDownLocked()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -07001153 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001154 }
1155
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001156 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001157 // Have the window manager pause its key dispatching until the new
1158 // activity has started. If we're pausing the activity just because
1159 // the screen is being turned off and the UI is sleeping, don't interrupt
1160 // key dispatch; the same activity will pick it up again on wakeup.
1161 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001162 prev.pauseKeyDispatchingLocked();
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001163 } else if (DEBUG_PAUSE) {
1164 Slog.v(TAG_PAUSE, "Key dispatch not paused for screen off");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001165 }
1166
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001167 if (dontWait) {
1168 // If the caller said they don't want to wait for the pause, then complete
1169 // the pause now.
Wale Ogunwale950faff2016-08-08 09:51:04 -07001170 completePauseLocked(false, resuming);
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001171 return false;
1172
1173 } else {
1174 // Schedule a pause timeout in case the app doesn't respond.
1175 // We don't give it much time because this directly impacts the
1176 // responsiveness seen by the user.
1177 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
1178 msg.obj = prev;
1179 prev.pauseTime = SystemClock.uptimeMillis();
1180 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001181 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Waiting for pause to complete...");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001182 return true;
1183 }
1184
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001185 } else {
1186 // This activity failed to schedule the
1187 // pause, so just treat it as being paused now.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001188 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Activity not running, resuming next.");
Wale Ogunwale950faff2016-08-08 09:51:04 -07001189 if (resuming == null) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001190 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001191 }
1192 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001193 }
1194 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001195
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001196 final void activityPausedLocked(IBinder token, boolean timeout) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001197 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1198 "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001199
Craig Mautnerd2328952013-03-05 12:46:26 -08001200 final ActivityRecord r = isInStackLocked(token);
1201 if (r != null) {
1202 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
1203 if (mPausingActivity == r) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001204 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSED: " + r
Craig Mautnerd2328952013-03-05 12:46:26 -08001205 + (timeout ? " (due to timeout)" : " (pause complete)"));
Wale Ogunwale950faff2016-08-08 09:51:04 -07001206 completePauseLocked(true, null);
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001207 return;
Craig Mautnerd2328952013-03-05 12:46:26 -08001208 } else {
1209 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
1210 r.userId, System.identityHashCode(r), r.shortComponentName,
1211 mPausingActivity != null
1212 ? mPausingActivity.shortComponentName : "(none)");
riddle_hsu9caeef72015-10-20 16:34:05 +08001213 if (r.state == ActivityState.PAUSING) {
1214 r.state = ActivityState.PAUSED;
1215 if (r.finishing) {
1216 if (DEBUG_PAUSE) Slog.v(TAG,
1217 "Executing finish of failed to pause activity: " + r);
1218 finishCurrentActivityLocked(r, FINISH_AFTER_VISIBLE, false);
1219 }
louis_chang047dfd42015-04-08 16:35:55 +08001220 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001221 }
1222 }
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001223 mStackSupervisor.ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001224 }
1225
Chong Zhangd78ddb42016-03-02 17:01:14 -08001226 final void activityResumedLocked(IBinder token) {
1227 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
1228 if (DEBUG_SAVED_STATE) Slog.i(TAG_STATES, "Resumed activity; dropping state of: " + r);
1229 r.icicle = null;
1230 r.haveState = false;
1231 }
1232
Craig Mautnera0026042014-04-23 11:45:37 -07001233 final void activityStoppedLocked(ActivityRecord r, Bundle icicle,
1234 PersistableBundle persistentState, CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07001235 if (r.state != ActivityState.STOPPING) {
1236 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
1237 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
1238 return;
1239 }
Craig Mautner21d24a22014-04-23 11:45:37 -07001240 if (persistentState != null) {
1241 r.persistentState = persistentState;
1242 mService.notifyTaskPersisterLocked(r.task, false);
1243 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001244 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001245 if (icicle != null) {
1246 // If icicle is null, this is happening due to a timeout, so we
1247 // haven't really saved the state.
1248 r.icicle = icicle;
1249 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -08001250 r.launchCount = 0;
Winson Chung740c3ac2014-11-12 16:14:38 -08001251 r.updateThumbnailLocked(null, description);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001252 }
1253 if (!r.stopped) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001254 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to STOPPED: " + r + " (stop complete)");
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001255 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
1256 r.stopped = true;
1257 r.state = ActivityState.STOPPED;
Robert Carre12aece2016-02-02 22:43:27 -08001258
Chong Zhang45e6d2d2016-07-20 18:33:56 -07001259 mWindowManager.notifyAppStopped(r.appToken);
Robert Carre12aece2016-02-02 22:43:27 -08001260
Wale Ogunwale1f544be2015-12-17 10:27:23 -08001261 if (getVisibleBehindActivity() == r) {
Jose Lima4b6c6692014-08-12 17:41:12 -07001262 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001263 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -07001264 if (r.finishing) {
1265 r.clearOptionsLocked();
1266 } else {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08001267 if (r.deferRelaunchUntilPaused) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07001268 destroyActivityLocked(r, true, "stop-config");
Wale Ogunwaled046a012015-12-24 13:05:59 -08001269 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001270 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -07001271 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -08001272 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001273 }
1274 }
1275 }
1276
Wale Ogunwale950faff2016-08-08 09:51:04 -07001277 private void completePauseLocked(boolean resumeNext, ActivityRecord resuming) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001278 ActivityRecord prev = mPausingActivity;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001279 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -08001280
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001281 if (prev != null) {
Filip Gruszczynskidba623a2015-12-04 15:45:35 -08001282 final boolean wasStopping = prev.state == ActivityState.STOPPING;
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001283 prev.state = ActivityState.PAUSED;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001284 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001285 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001286 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001287 } else if (prev.app != null) {
Wale Ogunwaled8026642016-02-09 20:40:18 -08001288 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueue pending stop if needed: " + prev
1289 + " wasStopping=" + wasStopping + " visible=" + prev.visible);
Craig Mautner8c14c152015-01-15 17:32:07 -08001290 if (mStackSupervisor.mWaitingVisibleActivities.remove(prev)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001291 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1292 "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001293 }
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08001294 if (prev.deferRelaunchUntilPaused) {
1295 // Complete the deferred relaunch that was waiting for pause to complete.
1296 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Re-launching after pause: " + prev);
1297 relaunchActivityLocked(prev, prev.configChangeFlags, false,
1298 prev.preserveWindowOnDeferredRelaunch);
Filip Gruszczynskidba623a2015-12-04 15:45:35 -08001299 } else if (wasStopping) {
1300 // We are also stopping, the stop request must have gone soon after the pause.
1301 // We can't clobber it, because the stop confirmation will not be handled.
1302 // We don't need to schedule another stop, we only need to let it happen.
1303 prev.state = ActivityState.STOPPING;
Wale Ogunwaled8026642016-02-09 20:40:18 -08001304 } else if ((!prev.visible && !hasVisibleBehindActivity())
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07001305 || mService.isSleepingOrShuttingDownLocked()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07001306 // If we were visible then resumeTopActivities will release resources before
Craig Mautneree2e45a2014-06-27 12:10:03 -07001307 // stopping.
Chong Zhang46b1ac62016-02-18 17:53:57 -08001308 addToStopping(prev, true /* immediate */);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001309 }
1310 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001311 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "App died during pause, not stopping: " + prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001312 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001313 }
Wale Ogunwale07927bf2015-03-28 17:21:05 -07001314 // It is possible the activity was freezing the screen before it was paused.
1315 // In that case go ahead and remove the freeze this activity has on the screen
1316 // since it is no longer visible.
1317 prev.stopFreezingScreenLocked(true /*force*/);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001318 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001319 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001320
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001321 if (resumeNext) {
1322 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07001323 if (!mService.isSleepingOrShuttingDownLocked()) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001324 mStackSupervisor.resumeFocusedStackTopActivityLocked(topStack, prev, null);
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001325 } else {
1326 mStackSupervisor.checkReadyForSleepLocked();
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001327 ActivityRecord top = topStack.topRunningActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001328 if (top == null || (prev != null && top != prev)) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001329 // If there are no more activities available to run, do resume anyway to start
1330 // something. Also if the top activity on the stack is not the just paused
1331 // activity, we need to go ahead and resume it to ensure we complete an
1332 // in-flight app switch.
1333 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001334 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07001335 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001336 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001337
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001338 if (prev != null) {
1339 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001340
Craig Mautner525f3d92013-05-07 14:01:50 -07001341 if (prev.app != null && prev.cpuTimeAtResume > 0
1342 && mService.mBatteryStatsService.isOnBattery()) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001343 long diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
1344 - prev.cpuTimeAtResume;
Craig Mautner525f3d92013-05-07 14:01:50 -07001345 if (diff > 0) {
1346 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
1347 synchronized (bsi) {
1348 BatteryStatsImpl.Uid.Proc ps =
1349 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -07001350 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -07001351 if (ps != null) {
1352 ps.addForegroundTimeLocked(diff);
1353 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001354 }
1355 }
1356 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001357 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001358 }
Winson Chung740c3ac2014-11-12 16:14:38 -08001359
Andrii Kulian8290f8f2016-06-30 17:51:32 -07001360 // Notify when the task stack has changed, but only if visibilities changed (not just
1361 // focus). Also if there is an active pinned stack - we always want to notify it about
1362 // task stack changes, because its positioning may depend on it.
1363 if (mStackSupervisor.mAppVisibilitiesChangedSinceLastPause
1364 || mService.mStackSupervisor.getStack(PINNED_STACK_ID) != null) {
Jorim Jaggia0fdeec2016-01-07 14:42:28 +01001365 mService.notifyTaskStackChangedLocked();
1366 mStackSupervisor.mAppVisibilitiesChangedSinceLastPause = false;
1367 }
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001368
Wale Ogunwale950faff2016-08-08 09:51:04 -07001369 mStackSupervisor.ensureActivitiesVisibleLocked(resuming, 0, !PRESERVE_WINDOWS);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001370 }
1371
Chong Zhang46b1ac62016-02-18 17:53:57 -08001372 private void addToStopping(ActivityRecord r, boolean immediate) {
1373 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1374 mStackSupervisor.mStoppingActivities.add(r);
1375 }
1376
1377 // If we already have a few activities waiting to stop, then give up
1378 // on things going idle and start clearing them out. Or if r is the
1379 // last of activity of the last task the stack will be empty and must
1380 // be cleared immediately.
1381 boolean forceIdle = mStackSupervisor.mStoppingActivities.size() > MAX_STOPPING_TO_FORCE
1382 || (r.frontOfTask && mTaskHistory.size() <= 1);
1383
1384 if (immediate || forceIdle) {
1385 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Scheduling idle now: forceIdle="
1386 + forceIdle + "immediate=" + immediate);
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -08001387 mStackSupervisor.scheduleIdleLocked();
1388 } else {
1389 mStackSupervisor.checkReadyForSleepLocked();
1390 }
1391 }
1392
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001393 /**
1394 * Once we know that we have asked an application to put an activity in
1395 * the resumed state (either by launching it or explicitly telling it),
1396 * this function updates the rest of our state to match that fact.
1397 */
Craig Mautner525f3d92013-05-07 14:01:50 -07001398 private void completeResumeLocked(ActivityRecord next) {
Chong Zhang2b79af12016-02-10 18:47:06 -08001399 next.visible = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001400 next.idle = false;
1401 next.results = null;
1402 next.newIntents = null;
Chong Zhang2b79af12016-02-10 18:47:06 -08001403 next.stopped = false;
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001404
Chong Zhang85ee6542015-10-02 13:36:38 -07001405 if (next.isHomeActivity()) {
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001406 ProcessRecord app = next.task.mActivities.get(0).app;
1407 if (app != null && app != mService.mHomeProcess) {
1408 mService.mHomeProcess = app;
1409 }
1410 }
1411
Craig Mautner07566322013-09-26 16:42:55 -07001412 if (next.nowVisible) {
1413 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
Chong Zhang5022da32016-06-21 16:31:37 -07001414 mStackSupervisor.reportActivityVisibleLocked(next);
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02001415 mStackSupervisor.notifyActivityDrawnForKeyguard();
Craig Mautner07566322013-09-26 16:42:55 -07001416 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001417
1418 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -07001419 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001420
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001421 mStackSupervisor.reportResumedActivityLocked(next);
1422
1423 next.resumeKeyDispatchingLocked();
1424 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001425
1426 // Mark the point when the activity is resuming
1427 // TODO: To be more accurate, the mark should be before the onCreate,
1428 // not after the onResume. But for subsequent starts, onResume is fine.
1429 if (next.app != null) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001430 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001431 } else {
1432 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1433 }
Winson Chung376543b2014-05-21 17:43:28 -07001434
George Mount6ba042b2014-07-28 11:12:28 -07001435 next.returningOptions = null;
Craig Mautner64ccb702014-10-01 09:38:40 -07001436
Wale Ogunwale1f544be2015-12-17 10:27:23 -08001437 if (getVisibleBehindActivity() == next) {
Craig Mautner64ccb702014-10-01 09:38:40 -07001438 // When resuming an activity, require it to call requestVisibleBehind() again.
Wale Ogunwale1f544be2015-12-17 10:27:23 -08001439 setVisibleBehindActivity(null);
Craig Mautner64ccb702014-10-01 09:38:40 -07001440 }
Chong Zhang6cda19c2016-06-14 19:07:56 -07001441 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001442 }
1443
Craig Mautner2568c3a2015-03-26 14:22:34 -07001444 private void setVisible(ActivityRecord r, boolean visible) {
Craig Mautnere3a00d72014-04-16 08:31:19 -07001445 r.visible = visible;
Jorim Jaggic2f262b2015-12-07 16:59:10 -08001446 if (!visible && r.mUpdateTaskThumbnailWhenHidden) {
1447 r.updateThumbnailLocked(r.task.stack.screenshotActivitiesLocked(r), null);
1448 r.mUpdateTaskThumbnailWhenHidden = false;
1449 }
Craig Mautnere3a00d72014-04-16 08:31:19 -07001450 mWindowManager.setAppVisibility(r.appToken, visible);
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001451 final ArrayList<ActivityContainer> containers = r.mChildContainers;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001452 for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001453 ActivityContainer container = containers.get(containerNdx);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001454 container.setVisible(visible);
1455 }
Jorim Jaggia0fdeec2016-01-07 14:42:28 +01001456 mStackSupervisor.mAppVisibilitiesChangedSinceLastPause = true;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001457 }
1458
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001459 // Find the first visible activity above the passed activity and if it is translucent return it
1460 // otherwise return null;
1461 ActivityRecord findNextTranslucentActivity(ActivityRecord r) {
1462 TaskRecord task = r.task;
1463 if (task == null) {
1464 return null;
1465 }
1466
1467 ActivityStack stack = task.stack;
1468 if (stack == null) {
1469 return null;
1470 }
1471
1472 int stackNdx = mStacks.indexOf(stack);
1473
1474 ArrayList<TaskRecord> tasks = stack.mTaskHistory;
1475 int taskNdx = tasks.indexOf(task);
1476
1477 ArrayList<ActivityRecord> activities = task.mActivities;
1478 int activityNdx = activities.indexOf(r) + 1;
1479
1480 final int numStacks = mStacks.size();
1481 while (stackNdx < numStacks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001482 final ActivityStack historyStack = mStacks.get(stackNdx);
Todd Kennedyaab56db2015-01-30 09:39:53 -08001483 tasks = historyStack.mTaskHistory;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001484 final int numTasks = tasks.size();
1485 while (taskNdx < numTasks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001486 final TaskRecord currentTask = tasks.get(taskNdx);
1487 activities = currentTask.mActivities;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001488 final int numActivities = activities.size();
1489 while (activityNdx < numActivities) {
1490 final ActivityRecord activity = activities.get(activityNdx);
1491 if (!activity.finishing) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001492 return historyStack.mFullscreen
1493 && currentTask.mFullscreen && activity.fullscreen ? null : activity;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001494 }
1495 ++activityNdx;
1496 }
1497 activityNdx = 0;
1498 ++taskNdx;
1499 }
1500 taskNdx = 0;
1501 ++stackNdx;
1502 }
1503
1504 return null;
1505 }
1506
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08001507 ActivityStack getNextFocusableStackLocked() {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001508 ArrayList<ActivityStack> stacks = mStacks;
1509 final ActivityRecord parent = mActivityContainer.mParentActivity;
1510 if (parent != null) {
1511 stacks = parent.task.stack.mStacks;
1512 }
1513 if (stacks != null) {
1514 for (int i = stacks.size() - 1; i >= 0; --i) {
1515 ActivityStack stack = stacks.get(i);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001516 if (stack != this && stack.isFocusable()
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001517 && stack.getStackVisibilityLocked(null) != STACK_INVISIBLE) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001518 return stack;
1519 }
1520 }
1521 }
1522 return null;
1523 }
1524
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001525 /** Returns true if the stack contains a fullscreen task. */
1526 private boolean hasFullscreenTask() {
1527 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
1528 final TaskRecord task = mTaskHistory.get(i);
1529 if (task.mFullscreen) {
1530 return true;
1531 }
1532 }
1533 return false;
1534 }
1535
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001536 /**
1537 * Returns true if the stack is translucent and can have other contents visible behind it if
1538 * needed. A stack is considered translucent if it don't contain a visible or
1539 * starting (about to be visible) activity that is fullscreen (opaque).
1540 * @param starting The currently starting activity or null if there is none.
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001541 * @param stackBehindId The id of the stack directly behind this one.
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001542 */
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001543 private boolean isStackTranslucent(ActivityRecord starting, int stackBehindId) {
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001544 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1545 final TaskRecord task = mTaskHistory.get(taskNdx);
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001546 final ArrayList<ActivityRecord> activities = task.mActivities;
1547 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1548 final ActivityRecord r = activities.get(activityNdx);
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001549
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001550 if (r.finishing) {
1551 // We don't factor in finishing activities when determining translucency since
1552 // they will be gone soon.
1553 continue;
1554 }
1555
1556 if (!r.visible && r != starting) {
1557 // Also ignore invisible activities that are not the currently starting
1558 // activity (about to be visible).
1559 continue;
1560 }
1561
1562 if (r.fullscreen) {
1563 // Stack isn't translucent if it has at least one fullscreen activity
1564 // that is visible.
1565 return false;
1566 }
1567
1568 if (!isHomeStack() && r.frontOfTask
1569 && task.isOverHomeStack() && stackBehindId != HOME_STACK_ID) {
1570 // Stack isn't translucent if it's top activity should have the home stack
1571 // behind it and the stack currently behind it isn't the home stack.
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001572 return false;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001573 }
1574 }
1575 }
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001576 return true;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001577 }
1578
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001579 /**
1580 * Returns stack's visibility: {@link #STACK_INVISIBLE}, {@link #STACK_VISIBLE} or
1581 * {@link #STACK_VISIBLE_ACTIVITY_BEHIND}.
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001582 * @param starting The currently starting activity or null if there is none.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001583 */
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001584 int getStackVisibilityLocked(ActivityRecord starting) {
Jose Lima7ba71252014-04-30 12:59:27 -07001585 if (!isAttached()) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001586 return STACK_INVISIBLE;
Jose Lima7ba71252014-04-30 12:59:27 -07001587 }
1588
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07001589 if (mStackSupervisor.isFrontStack(this) || mStackSupervisor.isFocusedStack(this)) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001590 return STACK_VISIBLE;
Wale Ogunwale99db1862015-10-23 20:08:22 -07001591 }
1592
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001593 final int stackIndex = mStacks.indexOf(this);
1594
1595 if (stackIndex == mStacks.size() - 1) {
1596 Slog.wtf(TAG,
1597 "Stack=" + this + " isn't front stack but is at the top of the stack list");
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001598 return STACK_INVISIBLE;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001599 }
1600
Chong Zhang75b37202015-12-04 14:16:36 -08001601 final boolean isLockscreenShown = mService.mLockScreenShown == LOCK_SCREEN_SHOWN;
1602 if (isLockscreenShown && !StackId.isAllowedOverLockscreen(mStackId)) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001603 return STACK_INVISIBLE;
Chong Zhang75b37202015-12-04 14:16:36 -08001604 }
1605
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001606 final ActivityStack focusedStack = mStackSupervisor.getFocusedStack();
1607 final int focusedStackId = focusedStack.mStackId;
1608
Jiaquan He9bc01a82016-07-08 10:29:38 -07001609 final TaskRecord topFocusedTask = focusedStack.topTask();
1610 final boolean isOnTopLauncherFocused = topFocusedTask != null &&
1611 topFocusedTask.isOnTopLauncher();
1612 if (isOnTopLauncherFocused) {
1613 // When an on-top launcher is focused, we should find out whether the freeform stack or
1614 // the fullscreen stack appears first underneath and has activities to show, and then
1615 // make it visible.
1616 boolean behindFullscreenOrFreeForm = false;
1617 for (int stackBehindFocusedIndex = mStacks.indexOf(focusedStack) - 1;
1618 stackBehindFocusedIndex >= 0; stackBehindFocusedIndex--) {
1619 ActivityStack stack = mStacks.get(stackBehindFocusedIndex);
1620 if ((stack.mStackId == FREEFORM_WORKSPACE_STACK_ID
1621 || stack.mStackId == FULLSCREEN_WORKSPACE_STACK_ID)
1622 && stack.topRunningActivityLocked() != null) {
1623 if (stackIndex == stackBehindFocusedIndex) {
1624 return !behindFullscreenOrFreeForm ? STACK_VISIBLE : STACK_INVISIBLE;
1625 }
1626 behindFullscreenOrFreeForm = true;
1627 }
1628 }
1629 }
Jiaquan Hec4dcd4b2016-07-29 15:31:10 -07001630 // If an on-top launcher is on the top of the home stack but the home stack is not focused,
1631 // then the whole stack should be invisible.
1632 TaskRecord topTask = topTask();
1633 if (mStackId != focusedStackId && topTask != null && topTask.isOnTopLauncher()) {
1634 // We're here mostly because the on-top launcher didn't have a chance to move itself to
1635 // back. We should move it to back as soon as possible to avoid other activities
1636 // returning to it or other visibility issues.
1637 moveTaskToBackLocked(topTask.taskId);
1638 return STACK_INVISIBLE;
1639 }
Jiaquan He9bc01a82016-07-08 10:29:38 -07001640
Wale Ogunwalecff4aa32015-12-11 10:44:25 -08001641 if (mStackId == FULLSCREEN_WORKSPACE_STACK_ID
Filip Gruszczynski4e7fe712016-01-13 13:22:44 -08001642 && hasVisibleBehindActivity() && focusedStackId == HOME_STACK_ID
1643 && !focusedStack.topActivity().fullscreen) {
Wale Ogunwalecff4aa32015-12-11 10:44:25 -08001644 // The fullscreen stack should be visible if it has a visible behind activity behind
Filip Gruszczynski4e7fe712016-01-13 13:22:44 -08001645 // the home stack that is translucent.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001646 return STACK_VISIBLE_ACTIVITY_BEHIND;
Wale Ogunwalecff4aa32015-12-11 10:44:25 -08001647 }
1648
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001649 if (mStackId == DOCKED_STACK_ID) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001650 // Docked stack is always visible, except in the case where the top running activity
Jorim Jaggi42625d1b2016-02-11 20:11:07 -08001651 // task in the focus stack doesn't support any form of resizing but we show it for the
1652 // home task even though it's not resizable.
Wale Ogunwaled26176f2016-01-25 20:04:04 -08001653 final ActivityRecord r = focusedStack.topRunningActivityLocked();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001654 final TaskRecord task = r != null ? r.task : null;
Jorim Jaggi42625d1b2016-02-11 20:11:07 -08001655 return task == null || task.canGoInDockedStack() || task.isHomeTask() ? STACK_VISIBLE
1656 : STACK_INVISIBLE;
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001657 }
1658
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001659 // Find the first stack behind focused stack that actually got something visible.
1660 int stackBehindFocusedIndex = mStacks.indexOf(focusedStack) - 1;
1661 while (stackBehindFocusedIndex >= 0 &&
1662 mStacks.get(stackBehindFocusedIndex).topRunningActivityLocked() == null) {
1663 stackBehindFocusedIndex--;
Chong Zhangb16cf342015-11-12 17:22:40 -08001664 }
Wale Ogunwale99db1862015-10-23 20:08:22 -07001665 if ((focusedStackId == DOCKED_STACK_ID || focusedStackId == PINNED_STACK_ID)
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001666 && stackIndex == stackBehindFocusedIndex) {
Wale Ogunwale99db1862015-10-23 20:08:22 -07001667 // Stacks directly behind the docked or pinned stack are always visible.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001668 return STACK_VISIBLE;
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001669 }
1670
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001671 final int stackBehindFocusedId = (stackBehindFocusedIndex >= 0)
1672 ? mStacks.get(stackBehindFocusedIndex).mStackId : INVALID_STACK_ID;
1673
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001674 if (focusedStackId == FULLSCREEN_WORKSPACE_STACK_ID
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001675 && focusedStack.isStackTranslucent(starting, stackBehindFocusedId)) {
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001676 // Stacks behind the fullscreen stack with a translucent activity are always
1677 // visible so they can act as a backdrop to the translucent activity.
1678 // For example, dialog activities
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001679 if (stackIndex == stackBehindFocusedIndex) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001680 return STACK_VISIBLE;
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001681 }
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001682 if (stackBehindFocusedIndex >= 0) {
1683 if ((stackBehindFocusedId == DOCKED_STACK_ID
1684 || stackBehindFocusedId == PINNED_STACK_ID)
1685 && stackIndex == (stackBehindFocusedIndex - 1)) {
Wale Ogunwale99db1862015-10-23 20:08:22 -07001686 // The stack behind the docked or pinned stack is also visible so we can have a
1687 // complete backdrop to the translucent activity when the docked stack is up.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001688 return STACK_VISIBLE;
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001689 }
1690 }
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001691 }
1692
Wale Ogunwale3797c222015-10-27 14:21:58 -07001693 if (StackId.isStaticStack(mStackId)) {
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001694 // Visibility of any static stack should have been determined by the conditions above.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001695 return STACK_INVISIBLE;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001696 }
1697
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001698 for (int i = stackIndex + 1; i < mStacks.size(); i++) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001699 final ActivityStack stack = mStacks.get(i);
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001700
1701 if (!stack.mFullscreen && !stack.hasFullscreenTask()) {
1702 continue;
1703 }
1704
Wale Ogunwale3797c222015-10-27 14:21:58 -07001705 if (!StackId.isDynamicStacksVisibleBehindAllowed(stack.mStackId)) {
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001706 // These stacks can't have any dynamic stacks visible behind them.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001707 return STACK_INVISIBLE;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001708 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001709
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001710 if (!stack.isStackTranslucent(starting, INVALID_STACK_ID)) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001711 return STACK_INVISIBLE;
Jose Lima7ba71252014-04-30 12:59:27 -07001712 }
1713 }
1714
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001715 return STACK_VISIBLE;
Jose Lima7ba71252014-04-30 12:59:27 -07001716 }
1717
Chong Zhangfdcc4d42015-10-14 16:50:12 -07001718 final int rankTaskLayers(int baseLayer) {
1719 int layer = 0;
1720 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1721 final TaskRecord task = mTaskHistory.get(taskNdx);
1722 ActivityRecord r = task.topRunningActivityLocked();
1723 if (r == null || r.finishing || !r.visible) {
1724 task.mLayerRank = -1;
1725 } else {
1726 task.mLayerRank = baseLayer + layer++;
1727 }
1728 }
1729 return layer;
1730 }
1731
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001732 /**
1733 * Make sure that all activities that need to be visible (that is, they
1734 * currently can be seen by the user) actually are.
1735 */
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07001736 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges,
1737 boolean preserveWindows) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001738 ActivityRecord top = topRunningActivityLocked();
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001739 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "ensureActivitiesVisible behind " + top
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001740 + " configChanges=0x" + Integer.toHexString(configChanges));
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001741 if (top != null) {
1742 checkTranslucentActivityWaiting(top);
1743 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001744
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001745 // If the top activity is not fullscreen, then we need to
1746 // make sure any activities under it are now visible.
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001747 boolean aboveTop = top != null;
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001748 final int stackVisibility = getStackVisibilityLocked(starting);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001749 final boolean stackInvisible = stackVisibility != STACK_VISIBLE;
1750 final boolean stackVisibleBehind = stackVisibility == STACK_VISIBLE_ACTIVITY_BEHIND;
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001751 boolean behindFullscreenActivity = stackInvisible;
Andrii Kulianc11ce7b2016-06-27 10:53:53 -07001752 boolean resumeNextActivity = mStackSupervisor.isFocusedStack(this)
1753 && (isInStackLocked(starting) == null);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001754 boolean behindTranslucentActivity = false;
1755 final ActivityRecord visibleBehind = getVisibleBehindActivity();
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001756 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001757 final TaskRecord task = mTaskHistory.get(taskNdx);
1758 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001759 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1760 final ActivityRecord r = activities.get(activityNdx);
1761 if (r.finishing) {
Chong Zhang22bc8512016-04-07 13:47:18 -07001762 // Normally the screenshot will be taken in makeInvisible(). When an activity
1763 // is finishing, we no longer change its visibility, but we still need to take
1764 // the screenshots if startPausingLocked decided it should be taken.
1765 if (r.mUpdateTaskThumbnailWhenHidden) {
1766 r.updateThumbnailLocked(screenshotActivitiesLocked(r), null);
1767 r.mUpdateTaskThumbnailWhenHidden = false;
1768 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001769 continue;
1770 }
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001771 final boolean isTop = r == top;
1772 if (aboveTop && !isTop) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001773 continue;
1774 }
1775 aboveTop = false;
Wale Ogunwalee76407c2016-05-16 17:04:37 -07001776
1777 if (shouldBeVisible(r, behindTranslucentActivity, stackVisibleBehind,
1778 visibleBehind, behindFullscreenActivity)) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001779 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Make visible? " + r
1780 + " finishing=" + r.finishing + " state=" + r.state);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001781 // First: if this is not the current activity being started, make
1782 // sure it matches the current configuration.
Craig Mautnerbb742462014-07-07 15:28:55 -07001783 if (r != starting) {
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07001784 ensureActivityConfigurationLocked(r, 0, preserveWindows);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001785 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001786
1787 if (r.app == null || r.app.thread == null) {
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001788 if (makeVisibleAndRestartIfNeeded(starting, configChanges, isTop,
Wale Ogunwaled046a012015-12-24 13:05:59 -08001789 resumeNextActivity, r)) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001790 if (activityNdx >= activities.size()) {
1791 // Record may be removed if its process needs to restart.
1792 activityNdx = activities.size() - 1;
1793 } else {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001794 resumeNextActivity = false;
riddle_hsu36ee73d2015-06-05 16:38:38 +08001795 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001796 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001797 } else if (r.visible) {
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001798 // If this activity is already visible, then there is nothing to do here.
Chong Zhang371c4422016-05-11 10:48:32 -07001799 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1800 "Skipping: already visible at " + r);
1801
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001802 if (handleAlreadyVisible(r)) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001803 resumeNextActivity = false;
Wale Ogunwale85b90ab2015-04-27 20:54:47 -07001804 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001805 } else {
Jorim Jaggie66edb12016-02-05 12:41:17 -08001806 makeVisibleIfNeeded(starting, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001807 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001808 // Aggregate current change flags.
1809 configChanges |= r.configChangeFlags;
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001810 behindFullscreenActivity = updateBehindFullscreen(stackInvisible,
1811 behindFullscreenActivity, task, r);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001812 if (behindFullscreenActivity && !r.fullscreen) {
1813 behindTranslucentActivity = true;
1814 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001815 } else {
Wale Ogunwale834c2362016-01-23 18:14:58 -08001816 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Make invisible? " + r
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001817 + " finishing=" + r.finishing + " state=" + r.state + " stackInvisible="
1818 + stackInvisible + " behindFullscreenActivity="
1819 + behindFullscreenActivity + " mLaunchTaskBehind="
1820 + r.mLaunchTaskBehind);
1821 makeInvisible(r, visibleBehind);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001822 }
1823 }
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001824 if (mStackId == FREEFORM_WORKSPACE_STACK_ID) {
1825 // The visibility of tasks and the activities they contain in freeform stack are
1826 // determined individually unlike other stacks where the visibility or fullscreen
1827 // status of an activity in a previous task affects other.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001828 behindFullscreenActivity = stackVisibility == STACK_INVISIBLE;
Wale Ogunwale74e26592016-02-05 11:48:37 -08001829 } else if (mStackId == HOME_STACK_ID) {
Jiaquan He9bc01a82016-07-08 10:29:38 -07001830 if (task.isOnTopLauncher()) {
1831 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "On-top launcher: at " + task
1832 + " stackInvisible=" + stackInvisible
1833 + " behindFullscreenActivity=" + behindFullscreenActivity);
1834 // When an on-top launcher is visible, (e.g. it's on the top of the home stack),
1835 // other tasks in the home stack could be visible if and only if:
1836 // - some app is running in the docked stack;
1837 // - no app is running in either the fullscreen stack or the freefrom stack.
1838 final ActivityStack dockedStack = mStackSupervisor.getStack(DOCKED_STACK_ID);
1839 final ActivityStack fullscreenStack = mStackSupervisor.getStack(
1840 FULLSCREEN_WORKSPACE_STACK_ID);
1841 final ActivityStack freeformStack = mStackSupervisor.getStack(
1842 FREEFORM_WORKSPACE_STACK_ID);
1843 final boolean dockedStackEmpty = dockedStack == null ||
1844 dockedStack.topRunningActivityLocked() == null;
1845 final boolean fullscreenStackEmpty = fullscreenStack == null ||
1846 fullscreenStack.topRunningActivityLocked() == null;
1847 final boolean freeformStackEmpty = freeformStack == null ||
1848 freeformStack.topRunningActivityLocked() == null;
1849 behindFullscreenActivity = dockedStackEmpty || !fullscreenStackEmpty ||
1850 !freeformStackEmpty;
1851 } else if (task.isHomeTask()) {
Wale Ogunwale74e26592016-02-05 11:48:37 -08001852 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Home task: at " + task
1853 + " stackInvisible=" + stackInvisible
1854 + " behindFullscreenActivity=" + behindFullscreenActivity);
1855 // No other task in the home stack should be visible behind the home activity.
1856 // Home activities is usually a translucent activity with the wallpaper behind
1857 // them. However, when they don't have the wallpaper behind them, we want to
1858 // show activities in the next application stack behind them vs. another
1859 // task in the home stack like recents.
1860 behindFullscreenActivity = true;
1861 } else if (task.isRecentsTask()
1862 && task.getTaskToReturnTo() == APPLICATION_ACTIVITY_TYPE) {
1863 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1864 "Recents task returning to app: at " + task
1865 + " stackInvisible=" + stackInvisible
1866 + " behindFullscreenActivity=" + behindFullscreenActivity);
1867 // We don't want any other tasks in the home stack visible if the recents
1868 // activity is going to be returning to an application activity type.
1869 // We do this to preserve the visible order the user used to get into the
1870 // recents activity. The recents activity is normally translucent and if it
1871 // doesn't have the wallpaper behind it the next activity in the home stack
1872 // shouldn't be visible when the home stack is brought to the front to display
1873 // the recents activity from an app.
1874 behindFullscreenActivity = true;
1875 }
1876
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001877 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001878 }
Craig Mautnereb8abf72014-07-02 15:04:09 -07001879
1880 if (mTranslucentActivityWaiting != null &&
1881 mUndrawnActivitiesBelowTopTranslucent.isEmpty()) {
1882 // Nothing is getting drawn or everything was already visible, don't wait for timeout.
1883 notifyActivityDrawnLocked(null);
1884 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001885 }
Craig Mautner58547802013-03-05 08:23:53 -08001886
Wale Ogunwalee76407c2016-05-16 17:04:37 -07001887 /** Return true if the input activity should be made visible */
1888 private boolean shouldBeVisible(ActivityRecord r, boolean behindTranslucentActivity,
1889 boolean stackVisibleBehind, ActivityRecord visibleBehind,
1890 boolean behindFullscreenActivity) {
Wale Ogunwalee76407c2016-05-16 17:04:37 -07001891
Chong Zhang87761972016-08-22 13:53:24 -07001892 if (r == null || !r.okToShowLocked()) {
Wale Ogunwalee76407c2016-05-16 17:04:37 -07001893 return false;
1894 }
1895
Wale Ogunwale8c09c7d2016-05-23 09:10:24 -07001896 // mLaunchingBehind: Activities launching behind are at the back of the task stack
1897 // but must be drawn initially for the animation as though they were visible.
1898 final boolean activityVisibleBehind =
1899 (behindTranslucentActivity || stackVisibleBehind) && visibleBehind == r;
1900
Wale Ogunwalee76407c2016-05-16 17:04:37 -07001901 boolean isVisible =
1902 !behindFullscreenActivity || r.mLaunchTaskBehind || activityVisibleBehind;
1903
Wale Ogunwaleca2af9e2016-05-26 14:43:19 -07001904 if (mService.mSupportsLeanbackOnly && isVisible && r.isRecentsActivity()) {
1905 // On devices that support leanback only (Android TV), Recents activity can only be
1906 // visible if the home stack is the focused stack or we are in split-screen mode.
Wale Ogunwale8c09c7d2016-05-23 09:10:24 -07001907 isVisible = mStackSupervisor.getStack(DOCKED_STACK_ID) != null
1908 || mStackSupervisor.isFocusedStack(this);
Wale Ogunwalee76407c2016-05-16 17:04:37 -07001909 }
1910
1911 return isVisible;
1912 }
1913
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001914 private void checkTranslucentActivityWaiting(ActivityRecord top) {
1915 if (mTranslucentActivityWaiting != top) {
1916 mUndrawnActivitiesBelowTopTranslucent.clear();
1917 if (mTranslucentActivityWaiting != null) {
1918 // Call the callback with a timeout indication.
1919 notifyActivityDrawnLocked(null);
1920 mTranslucentActivityWaiting = null;
1921 }
1922 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1923 }
1924 }
1925
1926 private boolean makeVisibleAndRestartIfNeeded(ActivityRecord starting, int configChanges,
Wale Ogunwaled046a012015-12-24 13:05:59 -08001927 boolean isTop, boolean andResume, ActivityRecord r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001928 // We need to make sure the app is running if it's the top, or it is just made visible from
1929 // invisible. If the app is already visible, it must have died while it was visible. In this
1930 // case, we'll show the dead window but will not restart the app. Otherwise we could end up
1931 // thrashing.
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001932 if (isTop || !r.visible) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001933 // This activity needs to be visible, but isn't even running...
1934 // get it started and resume if no other stack in this stack is resumed.
1935 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Start and freeze screen for " + r);
1936 if (r != starting) {
1937 r.startFreezingScreenLocked(r.app, configChanges);
1938 }
1939 if (!r.visible || r.mLaunchTaskBehind) {
1940 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Starting and making visible: " + r);
1941 setVisible(r, true);
1942 }
1943 if (r != starting) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001944 mStackSupervisor.startSpecificActivityLocked(r, andResume, false);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001945 return true;
1946 }
1947 }
1948 return false;
1949 }
1950
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001951 private void makeInvisible(ActivityRecord r, ActivityRecord visibleBehind) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001952 if (!r.visible) {
1953 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Already invisible: " + r);
1954 return;
1955 }
1956 // Now for any activities that aren't visible to the user, make sure they no longer are
1957 // keeping the screen frozen.
Filip Gruszczynski4e7fe712016-01-13 13:22:44 -08001958 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Making invisible: " + r + " " + r.state);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001959 try {
1960 setVisible(r, false);
1961 switch (r.state) {
1962 case STOPPING:
1963 case STOPPED:
1964 if (r.app != null && r.app.thread != null) {
1965 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1966 "Scheduling invisibility: " + r);
1967 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1968 }
1969 break;
1970
1971 case INITIALIZING:
1972 case RESUMED:
1973 case PAUSING:
1974 case PAUSED:
1975 // This case created for transitioning activities from
1976 // translucent to opaque {@link Activity#convertToOpaque}.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001977 if (visibleBehind == r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001978 releaseBackgroundResources(r);
1979 } else {
Chong Zhang46b1ac62016-02-18 17:53:57 -08001980 addToStopping(r, true /* immediate */);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001981 }
1982 break;
1983
1984 default:
1985 break;
1986 }
1987 } catch (Exception e) {
1988 // Just skip on any failure; we'll make it visible when it next restarts.
1989 Slog.w(TAG, "Exception thrown making hidden: " + r.intent.getComponent(), e);
1990 }
1991 }
1992
1993 private boolean updateBehindFullscreen(boolean stackInvisible, boolean behindFullscreenActivity,
1994 TaskRecord task, ActivityRecord r) {
1995 if (r.fullscreen) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001996 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Fullscreen: at " + r
Wale Ogunwale673cbd22016-01-30 18:30:55 -08001997 + " stackInvisible=" + stackInvisible
1998 + " behindFullscreenActivity=" + behindFullscreenActivity);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001999 // At this point, nothing else needs to be shown in this task.
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002000 behindFullscreenActivity = true;
Wale Ogunwale74e26592016-02-05 11:48:37 -08002001 } else if (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002002 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Showing home: at " + r
2003 + " stackInvisible=" + stackInvisible
2004 + " behindFullscreenActivity=" + behindFullscreenActivity);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08002005 behindFullscreenActivity = true;
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002006 }
2007 return behindFullscreenActivity;
2008 }
2009
Jorim Jaggie66edb12016-02-05 12:41:17 -08002010 private void makeVisibleIfNeeded(ActivityRecord starting, ActivityRecord r) {
2011
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002012 // This activity is not currently visible, but is running. Tell it to become visible.
Jorim Jaggie66edb12016-02-05 12:41:17 -08002013 if (r.state == ActivityState.RESUMED || r == starting) {
Chong Zhange05db742016-02-16 16:58:37 -08002014 if (DEBUG_VISIBILITY) Slog.d(TAG_VISIBILITY,
2015 "Not making visible, r=" + r + " state=" + r.state + " starting=" + starting);
Jorim Jaggie66edb12016-02-05 12:41:17 -08002016 return;
2017 }
2018
2019 // If this activity is paused, tell it to now show its window.
2020 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
2021 "Making visible and scheduling visibility: " + r);
2022 try {
2023 if (mTranslucentActivityWaiting != null) {
2024 r.updateOptionsLocked(r.returningOptions);
2025 mUndrawnActivitiesBelowTopTranslucent.add(r);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002026 }
Jorim Jaggie66edb12016-02-05 12:41:17 -08002027 setVisible(r, true);
2028 r.sleeping = false;
2029 r.app.pendingUiClean = true;
2030 r.app.thread.scheduleWindowVisibility(r.appToken, true);
Jorim Jaggid47e7e12016-03-01 09:57:38 +01002031 // The activity may be waiting for stop, but that is no longer
2032 // appropriate for it.
2033 mStackSupervisor.mStoppingActivities.remove(r);
2034 mStackSupervisor.mGoingToSleepActivities.remove(r);
Jorim Jaggie66edb12016-02-05 12:41:17 -08002035 } catch (Exception e) {
2036 // Just skip on any failure; we'll make it
2037 // visible when it next restarts.
2038 Slog.w(TAG, "Exception thrown making visibile: " + r.intent.getComponent(), e);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002039 }
Chong Zhang371c4422016-05-11 10:48:32 -07002040 handleAlreadyVisible(r);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002041 }
2042
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08002043 private boolean handleAlreadyVisible(ActivityRecord r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002044 r.stopFreezingScreenLocked(false);
2045 try {
2046 if (r.returningOptions != null) {
2047 r.app.thread.scheduleOnNewActivityOptions(r.appToken, r.returningOptions);
2048 }
2049 } catch(RemoteException e) {
2050 }
2051 return r.state == ActivityState.RESUMED;
2052 }
2053
Todd Kennedyaab56db2015-01-30 09:39:53 -08002054 void convertActivityToTranslucent(ActivityRecord r) {
Craig Mautner5eda9b32013-07-02 11:58:16 -07002055 mTranslucentActivityWaiting = r;
2056 mUndrawnActivitiesBelowTopTranslucent.clear();
2057 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
2058 }
2059
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07002060 void clearOtherAppTimeTrackers(AppTimeTracker except) {
2061 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2062 final TaskRecord task = mTaskHistory.get(taskNdx);
2063 final ArrayList<ActivityRecord> activities = task.mActivities;
2064 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2065 final ActivityRecord r = activities.get(activityNdx);
2066 if ( r.appTimeTracker != except) {
2067 r.appTimeTracker = null;
2068 }
2069 }
2070 }
2071 }
2072
Craig Mautner5eda9b32013-07-02 11:58:16 -07002073 /**
2074 * Called as activities below the top translucent activity are redrawn. When the last one is
2075 * redrawn notify the top activity by calling
2076 * {@link Activity#onTranslucentConversionComplete}.
2077 *
2078 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
2079 * occurred and the activity will be notified immediately.
2080 */
2081 void notifyActivityDrawnLocked(ActivityRecord r) {
Craig Mautner6985bad2014-04-21 15:22:06 -07002082 mActivityContainer.setDrawn();
Craig Mautner5eda9b32013-07-02 11:58:16 -07002083 if ((r == null)
2084 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
2085 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
2086 // The last undrawn activity below the top has just been drawn. If there is an
2087 // opaque activity at the top, notify it that it can become translucent safely now.
2088 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
2089 mTranslucentActivityWaiting = null;
2090 mUndrawnActivitiesBelowTopTranslucent.clear();
2091 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
2092
Craig Mautner71dd1b62014-02-18 15:48:52 -08002093 if (waitingActivity != null) {
2094 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
2095 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
2096 try {
2097 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
2098 waitingActivity.appToken, r != null);
2099 } catch (RemoteException e) {
2100 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07002101 }
2102 }
2103 }
2104 }
2105
Craig Mautnera61bc652013-10-28 15:43:18 -07002106 /** If any activities below the top running one are in the INITIALIZING state and they have a
2107 * starting window displayed then remove that starting window. It is possible that the activity
2108 * in this state will never resumed in which case that starting window will be orphaned. */
2109 void cancelInitializingActivities() {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002110 final ActivityRecord topActivity = topRunningActivityLocked();
Craig Mautnera61bc652013-10-28 15:43:18 -07002111 boolean aboveTop = true;
Wale Ogunwale68741142016-05-17 09:40:02 -07002112 // We don't want to clear starting window for activities that aren't behind fullscreen
2113 // activities as we need to display their starting window until they are done initializing.
2114 boolean behindFullscreenActivity = false;
Wale Ogunwale98742a52016-07-12 10:29:12 -07002115
2116 if (getStackVisibilityLocked(null) == STACK_INVISIBLE) {
2117 // The stack is not visible, so no activity in it should be displaying a starting
2118 // window. Mark all activities below top and behind fullscreen.
2119 aboveTop = false;
2120 behindFullscreenActivity = true;
2121 }
2122
Craig Mautnera61bc652013-10-28 15:43:18 -07002123 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2124 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2125 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2126 final ActivityRecord r = activities.get(activityNdx);
2127 if (aboveTop) {
2128 if (r == topActivity) {
2129 aboveTop = false;
2130 }
Wale Ogunwale68741142016-05-17 09:40:02 -07002131 behindFullscreenActivity |= r.fullscreen;
Craig Mautnera61bc652013-10-28 15:43:18 -07002132 continue;
2133 }
2134
Wale Ogunwalef40c11b2016-02-26 08:16:02 -08002135 if (r.state == ActivityState.INITIALIZING
Wale Ogunwale68741142016-05-17 09:40:02 -07002136 && r.mStartingWindowState == STARTING_WINDOW_SHOWN
2137 && behindFullscreenActivity) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002138 if (DEBUG_VISIBILITY) Slog.w(TAG_VISIBILITY,
2139 "Found orphaned starting window " + r);
Wale Ogunwalef40c11b2016-02-26 08:16:02 -08002140 r.mStartingWindowState = STARTING_WINDOW_REMOVED;
Craig Mautnera61bc652013-10-28 15:43:18 -07002141 mWindowManager.removeAppStartingWindow(r.appToken);
2142 }
Wale Ogunwale68741142016-05-17 09:40:02 -07002143
2144 behindFullscreenActivity |= r.fullscreen;
Craig Mautnera61bc652013-10-28 15:43:18 -07002145 }
2146 }
2147 }
2148
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002149 /**
2150 * Ensure that the top activity in the stack is resumed.
2151 *
2152 * @param prev The previously resumed activity, for when in the process
2153 * of pausing; can be null to call from elsewhere.
Wale Ogunwaled046a012015-12-24 13:05:59 -08002154 * @param options Activity options.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002155 *
2156 * @return Returns true if something is being resumed, or false if
2157 * nothing happened.
Wale Ogunwaled046a012015-12-24 13:05:59 -08002158 *
2159 * NOTE: It is not safe to call this method directly as it can cause an activity in a
2160 * non-focused stack to be resumed.
2161 * Use {@link ActivityStackSupervisor#resumeFocusedStackTopActivityLocked} to resume the
2162 * right activity for the current system state.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002163 */
Wale Ogunwaled046a012015-12-24 13:05:59 -08002164 boolean resumeTopActivityUncheckedLocked(ActivityRecord prev, ActivityOptions options) {
Craig Mautner42d04db2014-11-06 12:13:23 -08002165 if (mStackSupervisor.inResumeTopActivity) {
Craig Mautner544efa72014-09-04 16:41:20 -07002166 // Don't even start recursing.
2167 return false;
2168 }
2169
2170 boolean result = false;
2171 try {
2172 // Protect against recursion.
Craig Mautner42d04db2014-11-06 12:13:23 -08002173 mStackSupervisor.inResumeTopActivity = true;
2174 if (mService.mLockScreenShown == ActivityManagerService.LOCK_SCREEN_LEAVING) {
2175 mService.mLockScreenShown = ActivityManagerService.LOCK_SCREEN_HIDDEN;
Jeff Brown9ef94012014-11-21 13:04:42 -08002176 mService.updateSleepIfNeededLocked();
Craig Mautner42d04db2014-11-06 12:13:23 -08002177 }
Craig Mautner544efa72014-09-04 16:41:20 -07002178 result = resumeTopActivityInnerLocked(prev, options);
2179 } finally {
Craig Mautner42d04db2014-11-06 12:13:23 -08002180 mStackSupervisor.inResumeTopActivity = false;
Craig Mautner544efa72014-09-04 16:41:20 -07002181 }
2182 return result;
2183 }
2184
Chong Zhang6cda19c2016-06-14 19:07:56 -07002185 void setResumedActivityLocked(ActivityRecord r, String reason) {
2186 // TODO: move mResumedActivity to stack supervisor,
2187 // there should only be 1 global copy of resumed activity.
2188 mResumedActivity = r;
Chong Zhangd2cb3112016-07-20 11:13:22 -07002189 r.state = ActivityState.RESUMED;
Chong Zhang6cda19c2016-06-14 19:07:56 -07002190 mService.setResumedActivityUncheckLocked(r, reason);
2191 r.task.touchActiveTime();
2192 mRecentTasks.addLocked(r.task);
2193 }
2194
Chong Zhang280d3322015-11-03 17:27:26 -08002195 private boolean resumeTopActivityInnerLocked(ActivityRecord prev, ActivityOptions options) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002196 if (DEBUG_LOCKSCREEN) mService.logLockScreen("");
Craig Mautner5314a402013-09-26 12:40:16 -07002197
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07002198 if (!mService.mBooting && !mService.mBooted) {
2199 // Not ready yet!
2200 return false;
2201 }
2202
Craig Mautnerdf88d732014-01-27 09:21:32 -08002203 ActivityRecord parent = mActivityContainer.mParentActivity;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002204 if ((parent != null && parent.state != ActivityState.RESUMED) ||
Craig Mautnerd163e752014-06-13 17:18:47 -07002205 !mActivityContainer.isAttachedLocked()) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08002206 // Do not resume this stack if its parent is not resumed.
2207 // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
2208 return false;
2209 }
2210
Wale Ogunwale2be760d2016-02-17 11:16:10 -08002211 mStackSupervisor.cancelInitializingActivities();
Craig Mautnera61bc652013-10-28 15:43:18 -07002212
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002213 // Find the first activity that is not finishing.
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002214 final ActivityRecord next = topRunningActivityLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002215
2216 // Remember how we'll process this pause/resume situation, and ensure
2217 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002218 final boolean userLeaving = mStackSupervisor.mUserLeaving;
2219 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002220
Craig Mautner84984fa2014-06-19 11:19:20 -07002221 final TaskRecord prevTask = prev != null ? prev.task : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002222 if (next == null) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002223 // There are no more activities!
2224 final String reason = "noMoreActivities";
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07002225 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack()
2226 ? HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
2227 if (!mFullscreen && adjustFocusToNextFocusableStackLocked(returnTaskType, reason)) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002228 // Try to move focus to the next visible stack with a running activity if this
2229 // stack is not covering the entire screen.
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08002230 return mStackSupervisor.resumeFocusedStackTopActivityLocked(
2231 mStackSupervisor.getFocusedStack(), prev, null);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002232 }
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08002233
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002234 // Let's just start up the Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07002235 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002236 if (DEBUG_STATES) Slog.d(TAG_STATES,
2237 "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07002238 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnere0a38842013-12-16 16:14:02 -08002239 // Only resume home if on home display
Craig Mautner84984fa2014-06-19 11:19:20 -07002240 return isOnHomeDisplay() &&
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002241 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002242 }
2243
2244 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08002245
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002246 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002247 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
2248 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002249 // Make sure we have executed any pending transitions, since there
2250 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002251 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002252 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07002253 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002254 if (DEBUG_STATES) Slog.d(TAG_STATES,
2255 "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07002256 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002257 return false;
2258 }
2259
Craig Mautner525f3d92013-05-07 14:01:50 -07002260 final TaskRecord nextTask = next.task;
bulicccd230712014-05-12 14:34:50 -07002261 if (prevTask != null && prevTask.stack == this &&
Craig Mautner84984fa2014-06-19 11:19:20 -07002262 prevTask.isOverHomeStack() && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07002263 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07002264 if (prevTask == nextTask) {
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002265 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07002266 } else if (prevTask != topTask()) {
Craig Mautner84984fa2014-06-19 11:19:20 -07002267 // This task is going away but it was supposed to return to the home stack.
Craig Mautnere418ecd2013-05-01 17:02:29 -07002268 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07002269 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07002270 mTaskHistory.get(taskNdx).setTaskToReturnTo(HOME_ACTIVITY_TYPE);
louis_chang2d094e92015-01-21 19:01:52 +08002271 } else if (!isOnHomeDisplay()) {
2272 return false;
2273 } else if (!isHomeStack()){
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002274 if (DEBUG_STATES) Slog.d(TAG_STATES,
Craig Mautnere0a38842013-12-16 16:14:02 -08002275 "resumeTopActivityLocked: Launching home next");
Craig Mautner84984fa2014-06-19 11:19:20 -07002276 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
2277 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
2278 return isOnHomeDisplay() &&
Craig Mautner3c878f22015-01-26 13:57:19 -08002279 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, "prevFinished");
Craig Mautnere418ecd2013-05-01 17:02:29 -07002280 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002281 }
2282
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002283 // If we are sleeping, and there is no resumed activity, and the top
2284 // activity is paused, well that is the state we want.
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07002285 if (mService.isSleepingOrShuttingDownLocked()
p13451dbad2872012-04-18 11:39:23 +09002286 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07002287 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002288 // Make sure we have executed any pending transitions, since there
2289 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002290 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002291 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07002292 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002293 if (DEBUG_STATES) Slog.d(TAG_STATES,
2294 "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07002295 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002296 return false;
2297 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002298
2299 // Make sure that the user who owns this activity is started. If not,
2300 // we will just leave it as is because someone should be bringing
2301 // another user's activities to the top of the stack.
Fyodor Kupolov610acda2015-10-19 18:44:07 -07002302 if (!mService.mUserController.hasStartedUserState(next.userId)) {
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002303 Slog.w(TAG, "Skipping resume of top activity " + next
2304 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07002305 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002306 return false;
2307 }
2308
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002309 // The activity may be waiting for stop, but that is no longer
2310 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002311 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002312 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002313 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07002314 mStackSupervisor.mWaitingVisibleActivities.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002315
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002316 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resuming " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002317
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08002318 // If we are currently pausing an activity, then don't do anything until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07002319 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002320 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG_PAUSE,
Craig Mautnerac6f8432013-07-17 13:24:59 -07002321 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07002322 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002323 return false;
2324 }
2325
Dianne Hackborn3d07c942015-03-13 18:02:54 -07002326 mStackSupervisor.setLaunchSource(next.info.applicationInfo.uid);
2327
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08002328 // We need to start pausing the current activity so the top one can be resumed...
2329 final boolean dontWaitForPause = (next.info.flags & FLAG_RESUME_WHILE_PAUSING) != 0;
Wale Ogunwale950faff2016-08-08 09:51:04 -07002330 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving, next, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07002331 if (mResumedActivity != null) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002332 if (DEBUG_STATES) Slog.d(TAG_STATES,
2333 "resumeTopActivityLocked: Pausing " + mResumedActivity);
Wale Ogunwale950faff2016-08-08 09:51:04 -07002334 pausing |= startPausingLocked(userLeaving, false, next, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07002335 }
2336 if (pausing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002337 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG_STATES,
Craig Mautnerac6f8432013-07-17 13:24:59 -07002338 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07002339 // At this point we want to put the upcoming activity's process
2340 // at the top of the LRU list, since we know we will be needing it
2341 // very soon and it would be a waste to let it get killed if it
2342 // happens to be sitting towards the end.
2343 if (next.app != null && next.app.thread != null) {
Dianne Hackborndb926082013-10-31 16:32:44 -07002344 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07002345 }
Craig Mautnercf910b02013-04-23 11:23:27 -07002346 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002347 return true;
Wale Ogunwalecac5c322016-05-23 10:56:33 -07002348 } else if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
2349 mStackSupervisor.allResumedActivitiesComplete()) {
2350 // It is possible for the activity to be resumed when we paused back stacks above if the
2351 // next activity doesn't have to wait for pause to complete.
2352 // So, nothing else to-do except:
2353 // Make sure we have executed any pending transitions, since there
2354 // should be nothing left to do at this point.
2355 mWindowManager.executeAppTransition();
2356 mNoAnimActivities.clear();
2357 ActivityOptions.abort(options);
2358 if (DEBUG_STATES) Slog.d(TAG_STATES,
2359 "resumeTopActivityLocked: Top activity resumed (dontWaitForPause) " + next);
2360 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2361 return true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002362 }
2363
Christopher Tated3f175c2012-06-14 14:16:54 -07002364 // If the most recent activity was noHistory but was only stopped rather
2365 // than stopped+finished because the device went to sleep, we need to make
2366 // sure to finish it as we're making a new activity topmost.
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07002367 if (mService.isSleepingLocked() && mLastNoHistoryActivity != null &&
Craig Mautner0f922742013-08-06 08:44:42 -07002368 !mLastNoHistoryActivity.finishing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002369 if (DEBUG_STATES) Slog.d(TAG_STATES,
2370 "no-history finish of " + mLastNoHistoryActivity + " on new resume");
Craig Mautner0f922742013-08-06 08:44:42 -07002371 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
Todd Kennedy539db512014-12-15 09:57:55 -08002372 null, "resume-no-history", false);
Craig Mautner0f922742013-08-06 08:44:42 -07002373 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07002374 }
2375
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002376 if (prev != null && prev != next) {
Craig Mautner8c14c152015-01-15 17:32:07 -08002377 if (!mStackSupervisor.mWaitingVisibleActivities.contains(prev)
2378 && next != null && !next.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002379 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002380 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2381 "Resuming top, waiting visible to hide: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002382 } else {
2383 // The next activity is already visible, so hide the previous
2384 // activity's windows right now so we can show the new one ASAP.
2385 // We only do this if the previous is finishing, which should mean
2386 // it is on top of the one being resumed so hiding it quickly
2387 // is good. Otherwise, we want to do the normal route of allowing
2388 // the resumed activity to be shown so we can decide if the
2389 // previous should actually be hidden depending on whether the
2390 // new one is found to be full-screen or not.
2391 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002392 mWindowManager.setAppVisibility(prev.appToken, false);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002393 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2394 "Not waiting for visible to hide: " + prev + ", waitingVisible="
Craig Mautner8c14c152015-01-15 17:32:07 -08002395 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002396 + ", nowVisible=" + next.nowVisible);
2397 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002398 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
Craig Mautner8c14c152015-01-15 17:32:07 -08002399 "Previous already visible but still waiting to hide: " + prev
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002400 + ", waitingVisible="
2401 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
2402 + ", nowVisible=" + next.nowVisible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002403 }
2404 }
2405 }
2406
Dianne Hackborne7f97212011-02-24 14:40:20 -08002407 // Launching this app's activity, make sure the app is no longer
2408 // considered stopped.
2409 try {
2410 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07002411 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08002412 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08002413 } catch (IllegalArgumentException e) {
2414 Slog.w(TAG, "Failed trying to unstop package "
2415 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08002416 }
2417
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002418 // We are starting up the next activity, so tell the window manager
2419 // that the previous one will be hidden soon. This way it can know
2420 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07002421 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002422 if (prev != null) {
2423 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002424 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002425 "Prepare close transition: prev=" + prev);
2426 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002427 anim = false;
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002428 mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002429 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002430 mWindowManager.prepareAppTransition(prev.task == next.task
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002431 ? TRANSIT_ACTIVITY_CLOSE
2432 : TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002433 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002434 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002435 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002436 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
2437 "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002438 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002439 anim = false;
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002440 mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002441 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002442 mWindowManager.prepareAppTransition(prev.task == next.task
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002443 ? TRANSIT_ACTIVITY_OPEN
Craig Mautnerbb742462014-07-07 15:28:55 -07002444 : next.mLaunchTaskBehind
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002445 ? TRANSIT_TASK_OPEN_BEHIND
2446 : TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002447 }
2448 }
Craig Mautner967212c2013-04-13 21:10:58 -07002449 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002450 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002451 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002452 anim = false;
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002453 mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002454 } else {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002455 mWindowManager.prepareAppTransition(TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002456 }
2457 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08002458
2459 Bundle resumeAnimOptions = null;
Craig Mautner525f3d92013-05-07 14:01:50 -07002460 if (anim) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08002461 ActivityOptions opts = next.getOptionsForTargetActivityLocked();
2462 if (opts != null) {
2463 resumeAnimOptions = opts.toBundle();
2464 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07002465 next.applyOptionsLocked();
2466 } else {
2467 next.clearOptionsLocked();
2468 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002469
Craig Mautnercf910b02013-04-23 11:23:27 -07002470 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002471 if (next.app != null && next.app.thread != null) {
Chong Zhangdea4bd92016-03-15 12:50:03 -07002472 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resume running: " + next
2473 + " stopped=" + next.stopped + " visible=" + next.visible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002474
Chong Zhangd127c6d2016-05-02 16:36:41 -07002475 // If the previous activity is translucent, force a visibility update of
2476 // the next activity, so that it's added to WM's opening app list, and
2477 // transition animation can be set up properly.
2478 // For example, pressing Home button with a translucent activity in focus.
2479 // Launcher is already visible in this case. If we don't add it to opening
2480 // apps, maybeUpdateTransitToWallpaper() will fail to identify this as a
2481 // TRANSIT_WALLPAPER_OPEN animation, and run some funny animation.
2482 final boolean lastActivityTranslucent = lastStack != null
2483 && (!lastStack.mFullscreen
2484 || (lastStack.mLastPausedActivity != null
2485 && !lastStack.mLastPausedActivity.fullscreen));
2486
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002487 // This activity is now becoming visible.
Chong Zhangd127c6d2016-05-02 16:36:41 -07002488 if (!next.visible || next.stopped || lastActivityTranslucent) {
Jorim Jaggi1b025a62016-02-03 19:27:49 -08002489 mWindowManager.setAppVisibility(next.appToken, true);
2490 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002491
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07002492 // schedule launch ticks to collect information about slow apps.
2493 next.startLaunchTickingLocked();
2494
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002495 ActivityRecord lastResumedActivity =
2496 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002497 ActivityState lastState = next.state;
2498
2499 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08002500
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002501 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + next + " (in existing)");
Chong Zhang6cda19c2016-06-14 19:07:56 -07002502
2503 setResumedActivityLocked(next, "resumeTopActivityInnerLocked");
2504
Dianne Hackborndb926082013-10-31 16:32:44 -07002505 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002506 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07002507 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002508
2509 // Have the window manager re-evaluate the orientation of
2510 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07002511 boolean notUpdated = true;
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07002512 if (mStackSupervisor.isFocusedStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002513 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07002514 mService.mConfiguration,
2515 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
2516 if (config != null) {
2517 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002518 }
Maxim Bogatov05075302015-05-19 18:33:08 -07002519 notUpdated = !mService.updateConfigurationLocked(config, next, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002520 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07002521
Craig Mautner525f3d92013-05-07 14:01:50 -07002522 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002523 // The configuration update wasn't able to keep the existing
2524 // instance of the activity, and instead started a new one.
2525 // We should be all done, but let's just make sure our activity
2526 // is still at the top and schedule another run if something
2527 // weird happened.
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002528 ActivityRecord nextNext = topRunningActivityLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002529 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_STATES,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002530 "Activity config changed during resume: " + next
2531 + ", new next: " + nextNext);
2532 if (nextNext != next) {
2533 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07002534 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002535 }
Chong Zhangd2cb3112016-07-20 11:13:22 -07002536 if (!next.visible || next.stopped) {
2537 mWindowManager.setAppVisibility(next.appToken, true);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002538 }
Chong Zhangd2cb3112016-07-20 11:13:22 -07002539 completeResumeLocked(next);
Craig Mautnercf910b02013-04-23 11:23:27 -07002540 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Chong Zhangd2cb3112016-07-20 11:13:22 -07002541 return true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002542 }
Craig Mautner58547802013-03-05 08:23:53 -08002543
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002544 try {
2545 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002546 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002547 if (a != null) {
2548 final int N = a.size();
2549 if (!next.finishing && N > 0) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002550 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS,
2551 "Delivering results to " + next + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002552 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002553 }
2554 }
2555
2556 if (next.newIntents != null) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002557 next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002558 }
2559
Wale Ogunwale8d5a5422016-03-03 18:28:21 -08002560 // Well the app will no longer be stopped.
2561 // Clear app token stopped state in window manager if needed.
Chong Zhang45e6d2d2016-07-20 18:33:56 -07002562 mWindowManager.notifyAppResumed(next.appToken, next.stopped);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -08002563
Craig Mautner299f9602015-01-26 09:47:33 -08002564 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY, next.userId,
2565 System.identityHashCode(next), next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08002566
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002567 next.sleeping = false;
Alan Viverette5f31b982016-06-21 14:46:14 -04002568 mService.showUnsupportedZoomDialogIfNeededLocked(next);
Craig Mautner2420ead2013-04-01 17:13:20 -07002569 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07002570 next.app.pendingUiClean = true;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07002571 next.app.forceProcessStateUpTo(mService.mTopProcessState);
George Mount2c92c972014-03-20 09:38:23 -07002572 next.clearOptionsLocked();
Dianne Hackborna413dc02013-07-12 12:02:55 -07002573 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Adam Powellcfbe9be2013-11-06 14:58:58 -08002574 mService.isNextTransitionForward(), resumeAnimOptions);
Craig Mautner58547802013-03-05 08:23:53 -08002575
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002576 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002577 } catch (Exception e) {
2578 // Whoops, need to restart this activity!
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002579 if (DEBUG_STATES) Slog.v(TAG_STATES, "Resume failed; resetting state to "
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002580 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002581 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002582 if (lastStack != null) {
2583 lastStack.mResumedActivity = lastResumedActivity;
2584 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002585 Slog.i(TAG, "Restarting because process died: " + next);
2586 if (!next.hasBeenLaunched) {
2587 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002588 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
2589 mStackSupervisor.isFrontStack(lastStack)) {
Wale Ogunwale3b232392016-05-13 15:37:13 -07002590 next.showStartingWindow(null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002591 }
George Mount2c92c972014-03-20 09:38:23 -07002592 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07002593 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002594 return true;
2595 }
2596
2597 // From this point on, if something goes wrong there is no way
2598 // to recover the activity.
2599 try {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002600 completeResumeLocked(next);
2601 } catch (Exception e) {
2602 // If any exception gets thrown, toss away this
2603 // activity and try the next one.
2604 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002605 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002606 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07002607 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002608 return true;
2609 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002610 } else {
2611 // Whoops, need to restart this activity!
2612 if (!next.hasBeenLaunched) {
2613 next.hasBeenLaunched = true;
2614 } else {
2615 if (SHOW_APP_STARTING_PREVIEW) {
Wale Ogunwale3b232392016-05-13 15:37:13 -07002616 next.showStartingWindow(null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002617 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002618 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Restarting: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002619 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002620 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Restarting " + next);
George Mount2c92c972014-03-20 09:38:23 -07002621 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002622 }
2623
Craig Mautnercf910b02013-04-23 11:23:27 -07002624 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002625 return true;
2626 }
2627
riddle_hsuc215a4f2014-12-27 12:10:45 +08002628 private TaskRecord getNextTask(TaskRecord targetTask) {
2629 final int index = mTaskHistory.indexOf(targetTask);
2630 if (index >= 0) {
2631 final int numTasks = mTaskHistory.size();
2632 for (int i = index + 1; i < numTasks; ++i) {
2633 TaskRecord task = mTaskHistory.get(i);
2634 if (task.userId == targetTask.userId) {
2635 return task;
2636 }
2637 }
2638 }
2639 return null;
2640 }
2641
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002642 private void insertTaskAtPosition(TaskRecord task, int position) {
2643 if (position >= mTaskHistory.size()) {
2644 insertTaskAtTop(task, null);
2645 return;
2646 }
2647 // Calculate maximum possible position for this task.
2648 int maxPosition = mTaskHistory.size();
Chong Zhang87761972016-08-22 13:53:24 -07002649 if (!task.okToShowLocked()) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002650 // Put non-current user tasks below current user tasks.
2651 while (maxPosition > 0) {
2652 final TaskRecord tmpTask = mTaskHistory.get(maxPosition - 1);
2653 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002654 || tmpTask.topRunningActivityLocked() == null) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002655 break;
2656 }
2657 maxPosition--;
2658 }
2659 }
2660 position = Math.min(position, maxPosition);
2661 mTaskHistory.remove(task);
2662 mTaskHistory.add(position, task);
2663 updateTaskMovement(task, true);
2664 }
2665
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002666 private void insertTaskAtTop(TaskRecord task, ActivityRecord newActivity) {
Andrii Kuliandc0f8932016-06-28 16:34:02 -07002667 boolean isLastTaskOverHome = false;
riddle_hsuc215a4f2014-12-27 12:10:45 +08002668 // If the moving task is over home stack, transfer its return type to next task
2669 if (task.isOverHomeStack()) {
2670 final TaskRecord nextTask = getNextTask(task);
2671 if (nextTask != null) {
2672 nextTask.setTaskToReturnTo(task.getTaskToReturnTo());
Andrii Kuliandc0f8932016-06-28 16:34:02 -07002673 } else {
2674 isLastTaskOverHome = true;
riddle_hsuc215a4f2014-12-27 12:10:45 +08002675 }
2676 }
2677
Craig Mautner9c85c202013-10-04 20:11:26 -07002678 // If this is being moved to the top by another activity or being launched from the home
riddle_hsuc215a4f2014-12-27 12:10:45 +08002679 // activity, set mTaskToReturnTo accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08002680 if (isOnHomeDisplay()) {
2681 ActivityStack lastStack = mStackSupervisor.getLastStack();
2682 final boolean fromHome = lastStack.isHomeStack();
Jiaquan Hee13e9642016-06-15 15:16:13 -07002683 final boolean fromOnTopLauncher = lastStack.topTask() != null &&
2684 lastStack.topTask().isOnTopLauncher();
2685 if (fromOnTopLauncher) {
2686 // Since an on-top launcher will is moved to back when tasks are launched from it,
2687 // those tasks should first try to return to a non-home activity.
2688 // This also makes sure that non-home activities are visible under a transparent
2689 // non-home activity.
2690 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
2691 } else if (!isHomeStack() && (fromHome || topTask() != task)) {
Andrii Kuliandc0f8932016-06-28 16:34:02 -07002692 // If it's a last task over home - we default to keep its return to type not to
2693 // make underlying task focused when this one will be finished.
2694 int returnToType = isLastTaskOverHome
2695 ? task.getTaskToReturnTo() : APPLICATION_ACTIVITY_TYPE;
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08002696 if (fromHome && StackId.allowTopTaskToReturnHome(mStackId)) {
2697 returnToType = lastStack.topTask() == null
2698 ? HOME_ACTIVITY_TYPE : lastStack.topTask().taskType;
2699 }
2700 task.setTaskToReturnTo(returnToType);
Craig Mautnere0a38842013-12-16 16:14:02 -08002701 }
2702 } else {
Craig Mautner84984fa2014-06-19 11:19:20 -07002703 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner9c85c202013-10-04 20:11:26 -07002704 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07002705
Craig Mautnerac6f8432013-07-17 13:24:59 -07002706 mTaskHistory.remove(task);
2707 // Now put task at top.
Craig Mautnerbb742462014-07-07 15:28:55 -07002708 int taskNdx = mTaskHistory.size();
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002709 final boolean notShownWhenLocked =
Chong Zhang87761972016-08-22 13:53:24 -07002710 (newActivity != null && !newActivity.okToShowLocked())
2711 || (newActivity == null && !task.okToShowLocked());
2712 if (notShownWhenLocked) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002713 // Put non-current user tasks below current user tasks.
Craig Mautnerbb742462014-07-07 15:28:55 -07002714 while (--taskNdx >= 0) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002715 final TaskRecord tmpTask = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002716 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002717 || tmpTask.topRunningActivityLocked() == null) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002718 break;
2719 }
2720 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002721 ++taskNdx;
Craig Mautnerac6f8432013-07-17 13:24:59 -07002722 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002723 mTaskHistory.add(taskNdx, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07002724 updateTaskMovement(task, true);
Craig Mautnerac6f8432013-07-17 13:24:59 -07002725 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08002726
Filip Gruszczynski3d82ed62015-12-10 10:41:39 -08002727 final void startActivityLocked(ActivityRecord r, boolean newTask, boolean keepCurTransition,
2728 ActivityOptions options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002729 TaskRecord rTask = r.task;
2730 final int taskId = rTask.taskId;
Craig Mautnerbb742462014-07-07 15:28:55 -07002731 // mLaunchTaskBehind tasks get placed at the back of the task stack.
2732 if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
Craig Mautner77878772013-03-04 19:46:24 -08002733 // Last activity in task had been removed or ActivityManagerService is reusing task.
2734 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08002735 // Might not even be in.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002736 insertTaskAtTop(rTask, r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002737 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08002738 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002739 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002740 if (!newTask) {
2741 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08002742 boolean startIt = true;
2743 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2744 task = mTaskHistory.get(taskNdx);
riddle_hsu9bcc6e82014-07-31 00:26:51 +08002745 if (task.getTopActivity() == null) {
2746 // All activities in task are finishing.
2747 continue;
2748 }
Craig Mautner70a86932013-02-28 22:37:44 -08002749 if (task == r.task) {
2750 // Here it is! Now, if this is not yet visible to the
2751 // user, then just add it without starting; it will
2752 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08002753 if (!startIt) {
2754 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
2755 + task, new RuntimeException("here").fillInStackTrace());
2756 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002757 r.putInHistory();
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002758 addConfigOverride(r, task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002759 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002760 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002761 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002762 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002763 return;
2764 }
2765 break;
Craig Mautner70a86932013-02-28 22:37:44 -08002766 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002767 startIt = false;
2768 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002769 }
2770 }
2771
2772 // Place a new activity at top of stack, so it is next to interact
2773 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08002774
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002775 // If we are not placing the new activity frontmost, we do not want
2776 // to deliver the onUserLeaving callback to the actual frontmost
2777 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08002778 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002779 mStackSupervisor.mUserLeaving = false;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002780 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
Craig Mautner70a86932013-02-28 22:37:44 -08002781 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002782 }
Craig Mautner70a86932013-02-28 22:37:44 -08002783
2784 task = r.task;
2785
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002786 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08002787 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08002788 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08002789 task.addActivityToTop(r);
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002790 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08002791
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002792 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002793 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002794 // We want to show the starting preview window if we are
2795 // switching to a new task, or the next activity's process is
2796 // not currently running.
2797 boolean showStartingIcon = newTask;
2798 ProcessRecord proc = r.app;
2799 if (proc == null) {
2800 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
2801 }
2802 if (proc == null || proc.thread == null) {
2803 showStartingIcon = true;
2804 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002805 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002806 "Prepare open transition: starting " + r);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002807 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002808 mWindowManager.prepareAppTransition(TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002809 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002810 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002811 mWindowManager.prepareAppTransition(newTask
Craig Mautnerbb742462014-07-07 15:28:55 -07002812 ? r.mLaunchTaskBehind
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002813 ? TRANSIT_TASK_OPEN_BEHIND
2814 : TRANSIT_TASK_OPEN
2815 : TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002816 mNoAnimActivities.remove(r);
2817 }
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002818 addConfigOverride(r, task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002819 boolean doShow = true;
2820 if (newTask) {
2821 // Even though this activity is starting fresh, we still need
2822 // to reset it to make sure we apply affinities to move any
2823 // existing activities from other tasks in to it.
2824 // If the caller has requested that the target task be
2825 // reset, then do so.
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002826 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002827 resetTaskIfNeededLocked(r, r);
2828 doShow = topRunningNonDelayedActivityLocked(null) == r;
2829 }
Chong Zhang280d3322015-11-03 17:27:26 -08002830 } else if (options != null && options.getAnimationType()
George Mount70778d72014-07-01 16:33:45 -07002831 == ActivityOptions.ANIM_SCENE_TRANSITION) {
2832 doShow = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002833 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002834 if (r.mLaunchTaskBehind) {
2835 // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2836 // tell WindowManager that r is visible even though it is at the back of the stack.
2837 mWindowManager.setAppVisibility(r.appToken, true);
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07002838 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Craig Mautnerbb742462014-07-07 15:28:55 -07002839 } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002840 // Figure out if we are transitioning from another activity that is
2841 // "has the same starting icon" as the next one. This allows the
2842 // window manager to keep the previous window it had previously
2843 // created, if it still had one.
Wale Ogunwale3b232392016-05-13 15:37:13 -07002844 ActivityRecord prev = r.task.topRunningActivityWithStartingWindowLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002845 if (prev != null) {
2846 // We don't want to reuse the previous starting preview if:
2847 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07002848 if (prev.task != r.task) {
2849 prev = null;
2850 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002851 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07002852 else if (prev.nowVisible) {
2853 prev = null;
2854 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002855 }
Wale Ogunwale3b232392016-05-13 15:37:13 -07002856 r.showStartingWindow(prev, showStartingIcon);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002857 }
2858 } else {
2859 // If this is the first activity, don't do any fancy animations,
2860 // because there is nothing for it to animate on top of.
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002861 addConfigOverride(r, task);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002862 ActivityOptions.abort(options);
Craig Mautner233ceee2014-05-09 17:05:11 -07002863 options = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002864 }
2865 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002866 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002867 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002868 }
2869
Dianne Hackbornbe707852011-11-11 14:32:10 -08002870 final void validateAppTokensLocked() {
2871 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08002872 mValidateAppTokens.ensureCapacity(numActivities());
2873 final int numTasks = mTaskHistory.size();
2874 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
2875 TaskRecord task = mTaskHistory.get(taskNdx);
2876 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07002877 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08002878 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002879 }
Craig Mautner000f0022013-02-26 15:04:29 -08002880 TaskGroup group = new TaskGroup();
2881 group.taskId = task.taskId;
2882 mValidateAppTokens.add(group);
2883 final int numActivities = activities.size();
2884 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
2885 final ActivityRecord r = activities.get(activityNdx);
2886 group.tokens.add(r.appToken);
2887 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002888 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002889 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002890 }
2891
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002892 /**
2893 * Perform a reset of the given task, if needed as part of launching it.
2894 * Returns the new HistoryRecord at the top of the task.
2895 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08002896 /**
2897 * Helper method for #resetTaskIfNeededLocked.
2898 * We are inside of the task being reset... we'll either finish this activity, push it out
2899 * for another task, or leave it as-is.
2900 * @param task The task containing the Activity (taskTop) that might be reset.
2901 * @param forceReset
2902 * @return An ActivityOptions that needs to be processed.
2903 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002904 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002905 ActivityOptions topOptions = null;
2906
2907 int replyChainEnd = -1;
2908 boolean canMoveOptions = true;
2909
2910 // We only do this for activities that are not the root of the task (since if we finish
2911 // the root, we may no longer have the task!).
2912 final ArrayList<ActivityRecord> activities = task.mActivities;
2913 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002914 final int rootActivityNdx = task.findEffectiveRootIndex();
2915 for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002916 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002917 if (target.frontOfTask)
2918 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002919
2920 final int flags = target.info.flags;
2921 final boolean finishOnTaskLaunch =
2922 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2923 final boolean allowTaskReparenting =
2924 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2925 final boolean clearWhenTaskReset =
2926 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
2927
2928 if (!finishOnTaskLaunch
2929 && !clearWhenTaskReset
2930 && target.resultTo != null) {
2931 // If this activity is sending a reply to a previous
2932 // activity, we can't do anything with it now until
2933 // we reach the start of the reply chain.
2934 // XXX note that we are assuming the result is always
2935 // to the previous activity, which is almost always
2936 // the case but we really shouldn't count on.
2937 if (replyChainEnd < 0) {
2938 replyChainEnd = i;
2939 }
2940 } else if (!finishOnTaskLaunch
2941 && !clearWhenTaskReset
2942 && allowTaskReparenting
2943 && target.taskAffinity != null
2944 && !target.taskAffinity.equals(task.affinity)) {
2945 // If this activity has an affinity for another
2946 // task, then we need to move it out of here. We will
2947 // move it as far out of the way as possible, to the
2948 // bottom of the activity stack. This also keeps it
2949 // correctly ordered with any activities we previously
2950 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08002951 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002952 final ActivityRecord bottom =
2953 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08002954 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002955 if (bottom != null && target.taskAffinity != null
2956 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002957 // If the activity currently at the bottom has the
2958 // same task affinity as the one we are moving,
2959 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08002960 targetTask = bottom.task;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002961 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07002962 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002963 } else {
Suprabh Shukla09a88f52015-12-02 14:36:31 -08002964 targetTask = createTaskRecord(
2965 mStackSupervisor.getNextTaskIdForUserLocked(target.userId),
2966 target.info, null, null, null, false);
Craig Mautner329f4122013-11-07 09:10:42 -08002967 targetTask.affinityIntent = target.intent;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002968 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnere3a74d52013-02-22 14:14:58 -08002969 + " out to new task " + target.task);
2970 }
2971
Wale Ogunwale706ed792015-08-02 10:29:44 -07002972 setAppTask(target, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002973
Craig Mautner525f3d92013-05-07 14:01:50 -07002974 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002975 final int start = replyChainEnd < 0 ? i : replyChainEnd;
2976 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07002977 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002978 if (p.finishing) {
2979 continue;
2980 }
2981
Craig Mautnere3a74d52013-02-22 14:14:58 -08002982 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002983 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002984 topOptions = p.takeOptionsLocked();
2985 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002986 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002987 }
2988 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002989 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2990 "Removing activity " + p + " from task=" + task + " adding to task="
2991 + targetTask + " Callers=" + Debug.getCallers(4));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002992 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2993 "Pushing next activity " + p + " out to target's task " + target.task);
Craig Mautnera228ae92014-07-09 05:44:55 -07002994 p.setTask(targetTask, null);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002995 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08002996
Wale Ogunwale706ed792015-08-02 10:29:44 -07002997 setAppTask(p, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002998 }
2999
Wale Ogunwale706ed792015-08-02 10:29:44 -07003000 mWindowManager.moveTaskToBottom(targetTask.taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003001 if (VALIDATE_TOKENS) {
3002 validateAppTokensLocked();
3003 }
3004
3005 replyChainEnd = -1;
3006 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
3007 // If the activity should just be removed -- either
3008 // because it asks for it, or the task should be
3009 // cleared -- then finish it and anything that is
3010 // part of its reply chain.
3011 int end;
3012 if (clearWhenTaskReset) {
3013 // In this case, we want to finish this activity
3014 // and everything above it, so be sneaky and pretend
3015 // like these are all in the reply chain.
Mark Lu4b5a9a02014-12-09 14:47:13 +08003016 end = activities.size() - 1;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003017 } else if (replyChainEnd < 0) {
3018 end = i;
3019 } else {
3020 end = replyChainEnd;
3021 }
Craig Mautner525f3d92013-05-07 14:01:50 -07003022 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003023 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07003024 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003025 if (p.finishing) {
3026 continue;
3027 }
3028 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07003029 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003030 topOptions = p.takeOptionsLocked();
3031 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07003032 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003033 }
3034 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003035 if (DEBUG_TASKS) Slog.w(TAG_TASKS,
Craig Mautner58547802013-03-05 08:23:53 -08003036 "resetTaskIntendedTask: calling finishActivity on " + p);
Todd Kennedy539db512014-12-15 09:57:55 -08003037 if (finishActivityLocked(
3038 p, Activity.RESULT_CANCELED, null, "reset-task", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003039 end--;
3040 srcPos--;
3041 }
3042 }
3043 replyChainEnd = -1;
3044 } else {
3045 // If we were in the middle of a chain, well the
3046 // activity that started it all doesn't want anything
3047 // special, so leave it all as-is.
3048 replyChainEnd = -1;
3049 }
3050 }
3051
3052 return topOptions;
3053 }
3054
3055 /**
3056 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
3057 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
3058 * @param affinityTask The task we are looking for an affinity to.
3059 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
3060 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
3061 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
3062 */
Craig Mautner525f3d92013-05-07 14:01:50 -07003063 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08003064 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003065 int replyChainEnd = -1;
3066 final int taskId = task.taskId;
3067 final String taskAffinity = task.affinity;
3068
3069 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
3070 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07003071 final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
3072
3073 // Do not operate on or below the effective root Activity.
3074 for (int i = numActivities - 1; i > rootActivityNdx; --i) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003075 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00003076 if (target.frontOfTask)
3077 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003078
3079 final int flags = target.info.flags;
3080 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
3081 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
3082
3083 if (target.resultTo != null) {
3084 // If this activity is sending a reply to a previous
3085 // activity, we can't do anything with it now until
3086 // we reach the start of the reply chain.
3087 // XXX note that we are assuming the result is always
3088 // to the previous activity, which is almost always
3089 // the case but we really shouldn't count on.
3090 if (replyChainEnd < 0) {
3091 replyChainEnd = i;
3092 }
3093 } else if (topTaskIsHigher
3094 && allowTaskReparenting
3095 && taskAffinity != null
3096 && taskAffinity.equals(target.taskAffinity)) {
3097 // This activity has an affinity for our task. Either remove it if we are
3098 // clearing or move it over to our task. Note that
3099 // we currently punt on the case where we are resetting a
3100 // task that is not at the top but who has activities above
3101 // with an affinity to it... this is really not a normal
3102 // case, and we will need to later pull that task to the front
3103 // and usually at that point we will do the reset and pick
3104 // up those remaining activities. (This only happens if
3105 // someone starts an activity in a new task from an activity
3106 // in a task that is not currently on top.)
3107 if (forceReset || finishOnTaskLaunch) {
3108 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003109 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
3110 "Finishing task at index " + start + " to " + i);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003111 for (int srcPos = start; srcPos >= i; --srcPos) {
3112 final ActivityRecord p = activities.get(srcPos);
3113 if (p.finishing) {
3114 continue;
3115 }
Todd Kennedy539db512014-12-15 09:57:55 -08003116 finishActivityLocked(
3117 p, Activity.RESULT_CANCELED, null, "move-affinity", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003118 }
3119 } else {
Craig Mautner77878772013-03-04 19:46:24 -08003120 if (taskInsertionPoint < 0) {
3121 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08003122
Craig Mautner77878772013-03-04 19:46:24 -08003123 }
Craig Mautner77878772013-03-04 19:46:24 -08003124
3125 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003126 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
3127 "Reparenting from task=" + affinityTask + ":" + start + "-" + i
3128 + " to task=" + task + ":" + taskInsertionPoint);
Craig Mautner77878772013-03-04 19:46:24 -08003129 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003130 final ActivityRecord p = activities.get(srcPos);
Craig Mautnera228ae92014-07-09 05:44:55 -07003131 p.setTask(task, null);
Craig Mautner77878772013-03-04 19:46:24 -08003132 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003133
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003134 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3135 "Removing and adding activity " + p + " to stack at " + task
3136 + " callers=" + Debug.getCallers(3));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003137 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Pulling activity " + p
3138 + " from " + srcPos + " in to resetting task " + task);
Wale Ogunwale706ed792015-08-02 10:29:44 -07003139 setAppTask(p, task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003140 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003141 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08003142 if (VALIDATE_TOKENS) {
3143 validateAppTokensLocked();
3144 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08003145
3146 // Now we've moved it in to place... but what if this is
3147 // a singleTop activity and we have put it on top of another
3148 // instance of the same activity? Then we drop the instance
3149 // below so it remains singleTop.
3150 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
3151 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003152 int targetNdx = taskActivities.indexOf(target);
3153 if (targetNdx > 0) {
3154 ActivityRecord p = taskActivities.get(targetNdx - 1);
3155 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08003156 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
3157 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003158 }
3159 }
3160 }
3161 }
3162
3163 replyChainEnd = -1;
3164 }
3165 }
Craig Mautner77878772013-03-04 19:46:24 -08003166 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003167 }
3168
Craig Mautner8849a5e2013-04-02 16:41:03 -07003169 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08003170 ActivityRecord newActivity) {
3171 boolean forceReset =
3172 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
3173 if (ACTIVITY_INACTIVE_RESET_TIME > 0
3174 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
3175 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
3176 forceReset = true;
3177 }
3178 }
3179
3180 final TaskRecord task = taskTop.task;
3181
3182 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
3183 * for remaining tasks. Used for later tasks to reparent to task. */
3184 boolean taskFound = false;
3185
3186 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
3187 ActivityOptions topOptions = null;
3188
Craig Mautner77878772013-03-04 19:46:24 -08003189 // Preserve the location for reparenting in the new task.
3190 int reparentInsertionPoint = -1;
3191
Craig Mautnere3a74d52013-02-22 14:14:58 -08003192 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
3193 final TaskRecord targetTask = mTaskHistory.get(i);
3194
3195 if (targetTask == task) {
3196 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
3197 taskFound = true;
3198 } else {
Craig Mautner77878772013-03-04 19:46:24 -08003199 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
3200 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003201 }
3202 }
3203
Craig Mautner70a86932013-02-28 22:37:44 -08003204 int taskNdx = mTaskHistory.indexOf(task);
riddle_hsu1d7919a2015-03-11 17:09:50 +08003205 if (taskNdx >= 0) {
3206 do {
3207 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
3208 } while (taskTop == null && taskNdx >= 0);
3209 }
Craig Mautner70a86932013-02-28 22:37:44 -08003210
Craig Mautnere3a74d52013-02-22 14:14:58 -08003211 if (topOptions != null) {
3212 // If we got some ActivityOptions from an activity on top that
3213 // was removed from the task, propagate them to the new real top.
3214 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003215 taskTop.updateOptionsLocked(topOptions);
3216 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003217 topOptions.abort();
3218 }
3219 }
3220
3221 return taskTop;
3222 }
3223
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003224 void sendActivityResultLocked(int callingUid, ActivityRecord r,
3225 String resultWho, int requestCode, int resultCode, Intent data) {
3226
3227 if (callingUid > 0) {
3228 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003229 data, r.getUriPermissionsLocked(), r.userId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003230 }
3231
3232 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
3233 + " : who=" + resultWho + " req=" + requestCode
3234 + " res=" + resultCode + " data=" + data);
3235 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
3236 try {
3237 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
3238 list.add(new ResultInfo(resultWho, requestCode,
3239 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08003240 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003241 return;
3242 } catch (Exception e) {
3243 Slog.w(TAG, "Exception thrown sending result to " + r, e);
3244 }
3245 }
3246
3247 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
3248 }
3249
Chong Zhang6cda19c2016-06-14 19:07:56 -07003250 private void adjustFocusedActivityStackLocked(ActivityRecord r, String reason) {
3251 if (!mStackSupervisor.isFocusedStack(this) || mResumedActivity != r) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08003252 return;
3253 }
3254
3255 final ActivityRecord next = topRunningActivityLocked();
3256 final String myReason = reason + " adjustFocus";
3257 if (next != r) {
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08003258 if (next != null && StackId.keepFocusInStackIfPossible(mStackId) && isFocusable()) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08003259 // For freeform, docked, and pinned stacks we always keep the focus within the
Chong Zhang6cda19c2016-06-14 19:07:56 -07003260 // stack as long as there is a running activity.
Wale Ogunwaled045c822015-12-02 09:14:28 -08003261 return;
3262 } else {
3263 final TaskRecord task = r.task;
3264 if (r.frontOfTask && task == topTask() && task.isOverHomeStack()) {
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07003265 final int taskToReturnTo = task.getTaskToReturnTo();
3266
Wale Ogunwaled045c822015-12-02 09:14:28 -08003267 // For non-fullscreen stack, we want to move the focus to the next visible
3268 // stack to prevent the home screen from moving to the top and obscuring
3269 // other visible stacks.
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07003270 if (!mFullscreen
3271 && adjustFocusToNextFocusableStackLocked(taskToReturnTo, myReason)) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08003272 return;
3273 }
3274 // Move the home stack to the top if this stack is fullscreen or there is no
3275 // other visible stack.
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07003276 if (mStackSupervisor.moveHomeStackTaskToTop(taskToReturnTo, myReason)) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08003277 // Activity focus was already adjusted. Nothing else to do...
3278 return;
Wale Ogunwaled80c2632015-03-13 10:26:26 -07003279 }
Craig Mautner04f0b702013-10-22 12:31:01 -07003280 }
3281 }
Wale Ogunwaled045c822015-12-02 09:14:28 -08003282 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08003283
Chong Zhang6cda19c2016-06-14 19:07:56 -07003284 mStackSupervisor.moveFocusableActivityStackToFrontLocked(
3285 mStackSupervisor.topRunningActivityLocked(), myReason);
Craig Mautner04f0b702013-10-22 12:31:01 -07003286 }
3287
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07003288 private boolean adjustFocusToNextFocusableStackLocked(int taskToReturnTo, String reason) {
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08003289 final ActivityStack stack = getNextFocusableStackLocked();
3290 final String myReason = reason + " adjustFocusToNextFocusableStack";
Wale Ogunwaled697cea2015-02-20 17:19:49 -08003291 if (stack == null) {
3292 return false;
3293 }
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07003294
Wale Ogunwalec750f5f2016-03-28 07:43:51 -07003295 final ActivityRecord top = stack.topRunningActivityLocked();
3296
3297 if (stack.isHomeStack() && (top == null || !top.visible)) {
3298 // If we will be focusing on the home stack next and its current top activity isn't
3299 // visible, then use the task return to value to determine the home task to display next.
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07003300 return mStackSupervisor.moveHomeStackTaskToTop(taskToReturnTo, reason);
3301 }
Chong Zhang6cda19c2016-06-14 19:07:56 -07003302
3303 stack.moveToFront(myReason);
3304 return true;
Wale Ogunwaled697cea2015-02-20 17:19:49 -08003305 }
3306
Craig Mautnerf3333272013-04-22 10:55:53 -07003307 final void stopActivityLocked(ActivityRecord r) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003308 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Stopping: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003309 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
3310 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
3311 if (!r.finishing) {
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07003312 if (!mService.isSleepingLocked()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003313 if (DEBUG_STATES) Slog.d(TAG_STATES, "no-history finish of " + r);
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07003314 if (requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
3315 "stop-no-history", false)) {
3316 // Activity was finished, no need to continue trying to schedule stop.
Chong Zhang6cda19c2016-06-14 19:07:56 -07003317 adjustFocusedActivityStackLocked(r, "stopActivityFinished");
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07003318 r.resumeKeyDispatchingLocked();
3319 return;
3320 }
Christopher Tated3f175c2012-06-14 14:16:54 -07003321 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003322 if (DEBUG_STATES) Slog.d(TAG_STATES, "Not finishing noHistory " + r
Christopher Tated3f175c2012-06-14 14:16:54 -07003323 + " on stop because we're just sleeping");
3324 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003325 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07003326 }
3327
3328 if (r.app != null && r.app.thread != null) {
Chong Zhang6cda19c2016-06-14 19:07:56 -07003329 adjustFocusedActivityStackLocked(r, "stopActivity");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08003330 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003331 try {
3332 r.stopped = false;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003333 if (DEBUG_STATES) Slog.v(TAG_STATES,
3334 "Moving to STOPPING: " + r + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003335 r.state = ActivityState.STOPPING;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003336 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
3337 "Stopping visible=" + r.visible + " for " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003338 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003339 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003340 }
Wale Ogunwalecd7043e2016-02-27 17:37:46 -08003341 EventLogTags.writeAmStopActivity(
3342 r.userId, System.identityHashCode(r), r.shortComponentName);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003343 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07003344 if (mService.isSleepingOrShuttingDownLocked()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08003345 r.setSleeping(true);
3346 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003347 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003348 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003349 } catch (Exception e) {
3350 // Maybe just ignore exceptions here... if the process
3351 // has crashed, our death notification will clean things
3352 // up.
3353 Slog.w(TAG, "Exception thrown during pause", e);
3354 // Just in case, assume it to be stopped.
3355 r.stopped = true;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003356 if (DEBUG_STATES) Slog.v(TAG_STATES, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003357 r.state = ActivityState.STOPPED;
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08003358 if (r.deferRelaunchUntilPaused) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003359 destroyActivityLocked(r, true, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003360 }
3361 }
3362 }
3363 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07003364
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003365 /**
3366 * @return Returns true if the activity is being finished, false if for
3367 * some reason it is being left as-is.
3368 */
3369 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003370 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003371 ActivityRecord r = isInStackLocked(token);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003372 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(TAG_STATES,
3373 "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07003374 + ", result=" + resultCode + ", data=" + resultData
3375 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003376 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003377 return false;
3378 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003379
Craig Mautnerd44711d2013-02-23 11:24:36 -08003380 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003381 return true;
3382 }
3383
Craig Mautnerd2328952013-03-05 12:46:26 -08003384 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08003385 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3386 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3387 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3388 ActivityRecord r = activities.get(activityNdx);
3389 if (r.resultTo == self && r.requestCode == requestCode) {
3390 if ((r.resultWho == null && resultWho == null) ||
3391 (r.resultWho != null && r.resultWho.equals(resultWho))) {
3392 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
3393 false);
3394 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003395 }
3396 }
3397 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003398 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003399 }
3400
Adrian Roos20d7df32016-01-12 18:59:43 +01003401 final TaskRecord finishTopRunningActivityLocked(ProcessRecord app, String reason) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07003402 ActivityRecord r = topRunningActivityLocked();
Adrian Roos20d7df32016-01-12 18:59:43 +01003403 TaskRecord finishedTask = null;
3404 if (r == null || r.app != app) {
3405 return null;
3406 }
3407 Slog.w(TAG, " Force finishing activity "
3408 + r.intent.getComponent().flattenToShortString());
3409 int taskNdx = mTaskHistory.indexOf(r.task);
3410 int activityNdx = r.task.mActivities.indexOf(r);
3411 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
3412 finishedTask = r.task;
3413 // Also terminate any activities below it that aren't yet
3414 // stopped, to avoid a situation where one will get
3415 // re-start our crashing activity once it gets resumed again.
3416 --activityNdx;
3417 if (activityNdx < 0) {
3418 do {
3419 --taskNdx;
3420 if (taskNdx < 0) {
3421 break;
3422 }
3423 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
3424 } while (activityNdx < 0);
3425 }
3426 if (activityNdx >= 0) {
3427 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
3428 if (r.state == ActivityState.RESUMED
3429 || r.state == ActivityState.PAUSING
3430 || r.state == ActivityState.PAUSED) {
3431 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
3432 Slog.w(TAG, " Force finishing activity "
3433 + r.intent.getComponent().flattenToShortString());
3434 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003435 }
3436 }
3437 }
Adrian Roos20d7df32016-01-12 18:59:43 +01003438 return finishedTask;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003439 }
3440
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003441 final void finishVoiceTask(IVoiceInteractionSession session) {
3442 IBinder sessionBinder = session.asBinder();
3443 boolean didOne = false;
3444 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3445 TaskRecord tr = mTaskHistory.get(taskNdx);
3446 if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
3447 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
3448 ActivityRecord r = tr.mActivities.get(activityNdx);
3449 if (!r.finishing) {
3450 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
3451 false);
3452 didOne = true;
3453 }
3454 }
Amith Yamasani0af6fa72016-01-17 15:36:19 -08003455 } else {
3456 // Check if any of the activities are using voice
3457 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
3458 ActivityRecord r = tr.mActivities.get(activityNdx);
3459 if (r.voiceSession != null
3460 && r.voiceSession.asBinder() == sessionBinder) {
3461 // Inform of cancellation
3462 r.clearVoiceSessionLocked();
3463 try {
3464 r.app.thread.scheduleLocalVoiceInteractionStarted((IBinder) r.appToken,
3465 null);
3466 } catch (RemoteException re) {
3467 // Ok
3468 }
Amith Yamasani0af6fa72016-01-17 15:36:19 -08003469 mService.finishRunningVoiceLocked();
3470 break;
3471 }
3472 }
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003473 }
3474 }
Amith Yamasani0af6fa72016-01-17 15:36:19 -08003475
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003476 if (didOne) {
3477 mService.updateOomAdjLocked();
3478 }
3479 }
3480
Craig Mautnerd2328952013-03-05 12:46:26 -08003481 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003482 ArrayList<ActivityRecord> activities = r.task.mActivities;
3483 for (int index = activities.indexOf(r); index >= 0; --index) {
3484 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08003485 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003486 break;
3487 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003488 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003489 }
3490 return true;
3491 }
3492
Dianne Hackborn5c607432012-02-28 14:44:19 -08003493 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
3494 // send the result
3495 ActivityRecord resultTo = r.resultTo;
3496 if (resultTo != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003497 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "Adding result to " + resultTo
Dianne Hackborn5c607432012-02-28 14:44:19 -08003498 + " who=" + r.resultWho + " req=" + r.requestCode
3499 + " res=" + resultCode + " data=" + resultData);
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003500 if (resultTo.userId != r.userId) {
Nicolas Prevot6b942b82014-06-02 15:20:42 +01003501 if (resultData != null) {
Nicolas Prevot107f7b72015-07-01 16:31:48 +01003502 resultData.prepareToLeaveUser(r.userId);
Nicolas Prevot6b942b82014-06-02 15:20:42 +01003503 }
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003504 }
Dianne Hackborn5c607432012-02-28 14:44:19 -08003505 if (r.info.applicationInfo.uid > 0) {
3506 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
3507 resultTo.packageName, resultData,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003508 resultTo.getUriPermissionsLocked(), resultTo.userId);
Dianne Hackborn5c607432012-02-28 14:44:19 -08003509 }
3510 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
3511 resultData);
3512 r.resultTo = null;
3513 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003514 else if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "No result destination from " + r);
Dianne Hackborn5c607432012-02-28 14:44:19 -08003515
3516 // Make sure this HistoryRecord is not holding on to other resources,
3517 // because clients have remote IPC references to this object so we
3518 // can't assume that will go away and want to avoid circular IPC refs.
3519 r.results = null;
3520 r.pendingResults = null;
3521 r.newIntents = null;
3522 r.icicle = null;
3523 }
3524
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003525 /**
3526 * @return Returns true if this activity has been removed from the history
3527 * list, or false if it is still in the list and will be removed later.
3528 */
Craig Mautnerf3333272013-04-22 10:55:53 -07003529 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
3530 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003531 if (r.finishing) {
3532 Slog.w(TAG, "Duplicate finish request for " + r);
3533 return false;
3534 }
3535
Wale Ogunwale7d701172015-03-11 15:36:30 -07003536 r.makeFinishingLocked();
Craig Mautneraea74a52014-03-08 14:23:10 -08003537 final TaskRecord task = r.task;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003538 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003539 r.userId, System.identityHashCode(r),
Craig Mautneraea74a52014-03-08 14:23:10 -08003540 task.taskId, r.shortComponentName, reason);
3541 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003542 final int index = activities.indexOf(r);
3543 if (index < (activities.size() - 1)) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003544 task.setFrontOfTask();
Craig Mautnerd00f4742014-03-12 14:17:26 -07003545 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003546 // If the caller asked that this activity (and all above it)
3547 // be cleared when the task is reset, don't lose that information,
3548 // but propagate it up to the next activity.
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08003549 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003550 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003551 }
3552 }
3553
3554 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07003555
Chong Zhang6cda19c2016-06-14 19:07:56 -07003556 adjustFocusedActivityStackLocked(r, "finishActivity");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003557
Dianne Hackborn5c607432012-02-28 14:44:19 -08003558 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07003559
Jorim Jaggiaf80db42016-04-07 19:19:15 -07003560 final boolean endTask = index <= 0;
3561 final int transit = endTask ? TRANSIT_TASK_CLOSE : TRANSIT_ACTIVITY_CLOSE;
Craig Mautnerde4ef022013-04-07 19:01:33 -07003562 if (mResumedActivity == r) {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07003563
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003564 if (DEBUG_VISIBILITY || DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003565 "Prepare close transition: finishing " + r);
Jorim Jaggiaf80db42016-04-07 19:19:15 -07003566 mWindowManager.prepareAppTransition(transit, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08003567
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003568 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003569 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003570
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08003571 if (mPausingActivity == null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003572 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish needs to pause: " + r);
3573 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
3574 "finish() => pause with userLeaving=false");
Wale Ogunwale950faff2016-08-08 09:51:04 -07003575 startPausingLocked(false, false, null, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003576 }
3577
Craig Mautneraea74a52014-03-08 14:23:10 -08003578 if (endTask) {
Craig Mautner15df08a2015-04-01 12:17:18 -07003579 mStackSupervisor.removeLockedTaskLocked(task);
Craig Mautneraea74a52014-03-08 14:23:10 -08003580 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003581 } else if (r.state != ActivityState.PAUSING) {
3582 // If the activity is PAUSING, we will complete the finish once
3583 // it is done pausing; else we can just directly finish it here.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003584 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish not pausing: " + r);
Chong Zhang66ed4c62015-11-12 14:56:28 -08003585 if (r.visible) {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07003586 mWindowManager.prepareAppTransition(transit, false);
Chong Zhang66ed4c62015-11-12 14:56:28 -08003587 mWindowManager.setAppVisibility(r.appToken, false);
Jorim Jaggiaf80db42016-04-07 19:19:15 -07003588 mWindowManager.executeAppTransition();
Chong Zhangb8bd0692016-04-27 17:29:28 -07003589 if (!mStackSupervisor.mWaitingVisibleActivities.contains(r)) {
3590 mStackSupervisor.mWaitingVisibleActivities.add(r);
3591 }
Chong Zhang66ed4c62015-11-12 14:56:28 -08003592 }
Chong Zhang4c5f7ff2016-04-22 11:31:51 -07003593 return finishCurrentActivityLocked(r, (r.visible || r.nowVisible) ?
3594 FINISH_AFTER_VISIBLE : FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003595 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003596 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish waiting for pause of: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003597 }
3598
3599 return false;
3600 }
3601
Craig Mautnerf3333272013-04-22 10:55:53 -07003602 static final int FINISH_IMMEDIATELY = 0;
3603 static final int FINISH_AFTER_PAUSE = 1;
3604 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003605
Craig Mautnerf3333272013-04-22 10:55:53 -07003606 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003607 // First things first: if this activity is currently visible,
3608 // and the resumed activity is not yet visible, then hold off on
3609 // finishing until the resumed one becomes visible.
Chong Zhang824b6dc2016-04-27 14:11:12 -07003610
3611 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
3612
Chong Zhangefd9a5b2016-04-26 16:21:07 -07003613 if (mode == FINISH_AFTER_VISIBLE && (r.visible || r.nowVisible)
Chong Zhang824b6dc2016-04-27 14:11:12 -07003614 && next != null && !next.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07003615 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
Chong Zhang46b1ac62016-02-18 17:53:57 -08003616 addToStopping(r, false /* immediate */);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003617 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003618 if (DEBUG_STATES) Slog.v(TAG_STATES,
3619 "Moving to STOPPING: "+ r + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003620 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003621 if (oomAdj) {
3622 mService.updateOomAdjLocked();
3623 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003624 return r;
3625 }
3626
3627 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003628 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07003629 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003630 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003631 if (mResumedActivity == r) {
3632 mResumedActivity = null;
3633 }
3634 final ActivityState prevState = r.state;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003635 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003636 r.state = ActivityState.FINISHING;
Andrii Kulian995fa2b2016-07-29 12:55:41 -07003637 final boolean finishingActivityInNonFocusedStack
3638 = r.task.stack != mStackSupervisor.getFocusedStack()
3639 && prevState == ActivityState.PAUSED && mode == FINISH_AFTER_VISIBLE;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003640
3641 if (mode == FINISH_IMMEDIATELY
Wale Ogunwaleae30f302016-05-02 10:35:45 -07003642 || (prevState == ActivityState.PAUSED
Andrii Kulian995fa2b2016-07-29 12:55:41 -07003643 && (mode == FINISH_AFTER_PAUSE || mStackId == PINNED_STACK_ID))
3644 || finishingActivityInNonFocusedStack
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003645 || prevState == ActivityState.STOPPED
3646 || prevState == ActivityState.INITIALIZING) {
Wale Ogunwale7d701172015-03-11 15:36:30 -07003647 r.makeFinishingLocked();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003648 boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm");
Andrii Kulian7318d632016-07-20 18:59:28 -07003649
Andrii Kulian995fa2b2016-07-29 12:55:41 -07003650 if (finishingActivityInNonFocusedStack) {
3651 // Finishing activity that was in paused state and it was in not currently focused
3652 // stack, need to make something visible in its place.
Andrii Kulian7318d632016-07-20 18:59:28 -07003653 mStackSupervisor.ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
3654 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003655 if (activityRemoved) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08003656 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003657 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003658 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS,
Craig Mautnerd163e752014-06-13 17:18:47 -07003659 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
3660 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003661 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003662 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003663
3664 // Need to go through the full pause cycle to get this
3665 // activity into the stopped state and then finish it.
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003666 if (DEBUG_ALL) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07003667 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02003668 r.resumeKeyDispatchingLocked();
Wale Ogunwaled046a012015-12-24 13:05:59 -08003669 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003670 return r;
3671 }
3672
Craig Mautneree36c772014-07-16 14:56:05 -07003673 void finishAllActivitiesLocked(boolean immediately) {
3674 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003675 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3676 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3677 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3678 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07003679 noActivitiesInStack = false;
3680 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003681 continue;
3682 }
Craig Mautneree36c772014-07-16 14:56:05 -07003683 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003684 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
3685 }
3686 }
Craig Mautneree36c772014-07-16 14:56:05 -07003687 if (noActivitiesInStack) {
3688 mActivityContainer.onTaskListEmptyLocked();
3689 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003690 }
3691
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003692 final boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
3693 // Basic case: for simple app-centric recents, we need to recreate
3694 // the task if the affinity has changed.
3695 if (srec == null || srec.task.affinity == null ||
3696 !srec.task.affinity.equals(destAffinity)) {
3697 return true;
3698 }
3699 // Document-centric case: an app may be split in to multiple documents;
3700 // they need to re-create their task if this current activity is the root
3701 // of a document, unless simply finishing it will return them to the the
3702 // correct app behind.
Dianne Hackbornf3eb8432014-09-19 17:21:46 -07003703 if (srec.frontOfTask && srec.task != null && srec.task.getBaseIntent() != null
3704 && srec.task.getBaseIntent().isDocument()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003705 // Okay, this activity is at the root of its task. What to do, what to do...
3706 if (srec.task.getTaskToReturnTo() != ActivityRecord.APPLICATION_ACTIVITY_TYPE) {
3707 // Finishing won't return to an application, so we need to recreate.
3708 return true;
3709 }
3710 // We now need to get the task below it to determine what to do.
3711 int taskIdx = mTaskHistory.indexOf(srec.task);
3712 if (taskIdx <= 0) {
3713 Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
3714 return false;
3715 }
3716 if (taskIdx == 0) {
3717 // At the bottom of the stack, nothing to go back to.
3718 return true;
3719 }
3720 TaskRecord prevTask = mTaskHistory.get(taskIdx);
3721 if (!srec.task.affinity.equals(prevTask.affinity)) {
3722 // These are different apps, so need to recreate.
3723 return true;
3724 }
3725 }
3726 return false;
3727 }
3728
Wale Ogunwale7d701172015-03-11 15:36:30 -07003729 final boolean navigateUpToLocked(ActivityRecord srec, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003730 Intent resultData) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003731 final TaskRecord task = srec.task;
3732 final ArrayList<ActivityRecord> activities = task.mActivities;
3733 final int start = activities.indexOf(srec);
3734 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003735 return false;
3736 }
3737 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08003738 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003739 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08003740 final ComponentName dest = destIntent.getComponent();
3741 if (start > 0 && dest != null) {
3742 for (int i = finishTo; i >= 0; i--) {
3743 ActivityRecord r = activities.get(i);
3744 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003745 r.info.name.equals(dest.getClassName())) {
3746 finishTo = i;
3747 parent = r;
3748 foundParentInTask = true;
3749 break;
3750 }
3751 }
3752 }
3753
3754 IActivityController controller = mService.mController;
3755 if (controller != null) {
3756 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
3757 if (next != null) {
3758 // ask watcher if this is allowed
3759 boolean resumeOK = true;
3760 try {
3761 resumeOK = controller.activityResuming(next.packageName);
3762 } catch (RemoteException e) {
3763 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003764 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003765 }
3766
3767 if (!resumeOK) {
3768 return false;
3769 }
3770 }
3771 }
3772 final long origId = Binder.clearCallingIdentity();
3773 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003774 ActivityRecord r = activities.get(i);
3775 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003776 // Only return the supplied result for the first activity finished
3777 resultCode = Activity.RESULT_CANCELED;
3778 resultData = null;
3779 }
3780
3781 if (parent != null && foundParentInTask) {
3782 final int parentLaunchMode = parent.info.launchMode;
3783 final int destIntentFlags = destIntent.getFlags();
3784 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
3785 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
3786 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
3787 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003788 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
3789 srec.packageName);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003790 } else {
3791 try {
3792 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
3793 destIntent.getComponent(), 0, srec.userId);
Filip Gruszczynski303210b2016-01-08 16:28:08 -08003794 int res = mService.mActivityStarter.startActivityLocked(srec.app.thread,
3795 destIntent, null /*ephemeralIntent*/, null, aInfo, null /*rInfo*/, null,
3796 null, parent.appToken, null, 0, -1, parent.launchedFromUid,
Todd Kennedy7440f172015-12-09 14:31:22 -08003797 parent.launchedFromPackage, -1, parent.launchedFromUid, 0, null,
3798 false, true, null, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003799 foundParentInTask = res == ActivityManager.START_SUCCESS;
3800 } catch (RemoteException e) {
3801 foundParentInTask = false;
3802 }
3803 requestFinishActivityLocked(parent.appToken, resultCode,
Todd Kennedy539db512014-12-15 09:57:55 -08003804 resultData, "navigate-top", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003805 }
3806 }
3807 Binder.restoreCallingIdentity(origId);
3808 return foundParentInTask;
3809 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003810 /**
3811 * Perform the common clean-up of an activity record. This is called both
3812 * as part of destroyActivityLocked() (when destroying the client-side
3813 * representation) and cleaning things up as a result of its hosting
3814 * processing going away, in which case there is no remaining client-side
3815 * state to destroy so only the cleanup here is needed.
Craig Mautneracebdc82015-02-24 10:53:03 -08003816 *
3817 * Note: Call before #removeActivityFromHistoryLocked.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003818 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003819 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
3820 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003821 if (mResumedActivity == r) {
3822 mResumedActivity = null;
3823 }
Craig Mautner1872ce32014-03-28 23:05:42 +00003824 if (mPausingActivity == r) {
3825 mPausingActivity = null;
3826 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003827
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08003828 r.deferRelaunchUntilPaused = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003829 r.frozenBeforeDestroy = false;
3830
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003831 if (setState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003832 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (cleaning up)");
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003833 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003834 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003835 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003836 }
3837
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003838 // Make sure this record is no longer in the pending finishes list.
3839 // This could happen, for example, if we are trimming activities
3840 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07003841 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003842 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07003843
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003844 // Remove any pending results.
3845 if (r.finishing && r.pendingResults != null) {
3846 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
3847 PendingIntentRecord rec = apr.get();
3848 if (rec != null) {
3849 mService.cancelIntentSenderLocked(rec, false);
3850 }
3851 }
3852 r.pendingResults = null;
3853 }
3854
3855 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07003856 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003857 }
3858
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003859 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003860 removeTimeoutsForActivityLocked(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003861 if (getVisibleBehindActivity() == r) {
3862 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003863 }
Wale Ogunwale8fd75422016-06-24 14:20:37 -07003864
3865 // Clean-up activities are no longer relaunching (e.g. app process died). Notify window
3866 // manager so it can update its bookkeeping.
3867 mWindowManager.notifyAppRelaunchesCleared(r.appToken);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003868 }
3869
3870 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07003871 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003872 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003873 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07003874 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07003875 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003876 }
3877
Chong Zhangbffd8892016-08-08 11:16:06 -07003878 private void removeActivityFromHistoryLocked(ActivityRecord r, String reason) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003879 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003880 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
Wale Ogunwale7d701172015-03-11 15:36:30 -07003881 r.makeFinishingLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003882 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3883 "Removing activity " + r + " from stack callers=" + Debug.getCallers(5));
3884
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003885 r.takeFromHistory();
3886 removeTimeoutsForActivityLocked(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003887 if (DEBUG_STATES) Slog.v(TAG_STATES,
3888 "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003889 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003890 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003891 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003892 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003893 if (VALIDATE_TOKENS) {
3894 validateAppTokensLocked();
3895 }
Craig Mautner312ba862014-02-10 17:55:01 -08003896 final TaskRecord task = r.task;
3897 if (task != null && task.removeActivity(r)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003898 if (DEBUG_STACK) Slog.i(TAG_STACK,
Craig Mautner312ba862014-02-10 17:55:01 -08003899 "removeActivityFromHistoryLocked: last activity removed from " + this);
Chong Zhangbffd8892016-08-08 11:16:06 -07003900 if (mStackSupervisor.isFocusedStack(this) && task == topTask() &&
Craig Mautner84984fa2014-06-19 11:19:20 -07003901 task.isOverHomeStack()) {
Craig Mautner299f9602015-01-26 09:47:33 -08003902 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(), reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003903 }
Craig Mautner299f9602015-01-26 09:47:33 -08003904 removeTask(task, reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003905 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003906 cleanUpActivityServicesLocked(r);
3907 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003908 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003909
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003910 /**
3911 * Perform clean-up of service connections in an activity record.
3912 */
3913 final void cleanUpActivityServicesLocked(ActivityRecord r) {
3914 // Throw away any services that have been bound by this activity.
3915 if (r.connections != null) {
3916 Iterator<ConnectionRecord> it = r.connections.iterator();
3917 while (it.hasNext()) {
3918 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07003919 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003920 }
3921 r.connections = null;
3922 }
3923 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003924
Craig Mautneree2e45a2014-06-27 12:10:03 -07003925 final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003926 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003927 msg.obj = new ScheduleDestroyArgs(owner, reason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003928 mHandler.sendMessage(msg);
3929 }
3930
Craig Mautneree2e45a2014-06-27 12:10:03 -07003931 final void destroyActivitiesLocked(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003932 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003933 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003934 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3935 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3936 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3937 final ActivityRecord r = activities.get(activityNdx);
3938 if (r.finishing) {
3939 continue;
3940 }
3941 if (r.fullscreen) {
3942 lastIsOpaque = true;
3943 }
3944 if (owner != null && r.app != owner) {
3945 continue;
3946 }
3947 if (!lastIsOpaque) {
3948 continue;
3949 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003950 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003951 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Destroying " + r + " in state " + r.state
Craig Mautnerd44711d2013-02-23 11:24:36 -08003952 + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003953 + " pausing=" + mPausingActivity + " for reason " + reason);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003954 if (destroyActivityLocked(r, true, reason)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003955 activityRemoved = true;
3956 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003957 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003958 }
3959 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003960 if (activityRemoved) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08003961 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003962 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003963 }
3964
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003965 final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
3966 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003967 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
3968 "Destroying " + r + " in state " + r.state + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003969 + " pausing=" + mPausingActivity + " for reason " + reason);
3970 return destroyActivityLocked(r, true, reason);
3971 }
3972 return false;
3973 }
3974
3975 final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
3976 String reason) {
3977 // Iterate over tasks starting at the back (oldest) first.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003978 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Trying to release some activities in " + app);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003979 int maxTasks = tasks.size() / 4;
3980 if (maxTasks < 1) {
3981 maxTasks = 1;
3982 }
3983 int numReleased = 0;
3984 for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
3985 final TaskRecord task = mTaskHistory.get(taskNdx);
3986 if (!tasks.contains(task)) {
3987 continue;
3988 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003989 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Looking for activities to release in " + task);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003990 int curNum = 0;
3991 final ArrayList<ActivityRecord> activities = task.mActivities;
3992 for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
3993 final ActivityRecord activity = activities.get(actNdx);
3994 if (activity.app == app && activity.isDestroyable()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003995 if (DEBUG_RELEASE) Slog.v(TAG_RELEASE, "Destroying " + activity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003996 + " in state " + activity.state + " resumed=" + mResumedActivity
3997 + " pausing=" + mPausingActivity + " for reason " + reason);
3998 destroyActivityLocked(activity, true, reason);
3999 if (activities.get(actNdx) != activity) {
4000 // Was removed from list, back up so we don't miss the next one.
4001 actNdx--;
4002 }
4003 curNum++;
4004 }
4005 }
4006 if (curNum > 0) {
4007 numReleased += curNum;
4008 maxTasks--;
4009 if (mTaskHistory.get(taskNdx) != task) {
4010 // The entire task got removed, back up so we don't miss the next one.
4011 taskNdx--;
4012 }
4013 }
4014 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004015 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE,
4016 "Done releasing: did " + numReleased + " activities");
Dianne Hackborn89ad4562014-08-24 16:45:38 -07004017 return numReleased;
4018 }
4019
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004020 /**
4021 * Destroy the current CLIENT SIDE instance of an activity. This may be
4022 * called both when actually finishing an activity, or when performing
4023 * a configuration switch where we destroy the current client-side object
4024 * but then create a new client-side object for this same HistoryRecord.
4025 */
Craig Mautneree2e45a2014-06-27 12:10:03 -07004026 final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004027 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(TAG_SWITCH,
4028 "Removing activity from " + reason + ": token=" + r
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004029 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004030 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004031 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07004032 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004033
4034 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004035
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004036 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004037
4038 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004039
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004040 if (hadApp) {
4041 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004042 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004043 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
4044 mService.mHeavyWeightProcess = null;
4045 mService.mHandler.sendEmptyMessage(
4046 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
4047 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07004048 if (r.app.activities.isEmpty()) {
Dianne Hackborn465fa392014-09-14 14:21:18 -07004049 // Update any services we are bound to that might care about whether
4050 // their client may have activities.
4051 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07004052 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07004053 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07004054 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004055 }
4056 }
4057
4058 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004059
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004060 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004061 if (DEBUG_SWITCH) Slog.i(TAG_SWITCH, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08004062 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004063 r.configChangeFlags);
4064 } catch (Exception e) {
4065 // We can just ignore exceptions here... if the process
4066 // has crashed, our death notification will clean things
4067 // up.
4068 //Slog.w(TAG, "Exception thrown during finish", e);
4069 if (r.finishing) {
Chong Zhangbffd8892016-08-08 11:16:06 -07004070 removeActivityFromHistoryLocked(r, reason + " exceptionInScheduleDestroy");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004071 removedFromHistory = true;
4072 skipDestroy = true;
4073 }
4074 }
4075
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004076 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004077
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004078 // If the activity is finishing, we need to wait on removing it
4079 // from the list to give it a chance to do its cleanup. During
4080 // that time it may make calls back with its token so we need to
4081 // be able to find it on the list and so we don't want to remove
4082 // it from the list yet. Otherwise, we can just immediately put
4083 // it in the destroyed state since we are not removing it from the
4084 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004085 if (r.finishing && !skipDestroy) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004086 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYING: " + r
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004087 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004088 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07004089 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004090 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
4091 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004092 if (DEBUG_STATES) Slog.v(TAG_STATES,
4093 "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004094 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004095 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004096 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004097 }
4098 } else {
4099 // remove this record from the history.
4100 if (r.finishing) {
Chong Zhangbffd8892016-08-08 11:16:06 -07004101 removeActivityFromHistoryLocked(r, reason + " hadNoApp");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004102 removedFromHistory = true;
4103 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004104 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004105 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004106 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004107 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004108 }
4109 }
4110
4111 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004112
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004113 if (!mLRUActivities.remove(r) && hadApp) {
4114 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
4115 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004116
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004117 return removedFromHistory;
4118 }
4119
Craig Mautner299f9602015-01-26 09:47:33 -08004120 final void activityDestroyedLocked(IBinder token, String reason) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004121 final long origId = Binder.clearCallingIdentity();
4122 try {
Wale Ogunwale7d701172015-03-11 15:36:30 -07004123 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautnerd2328952013-03-05 12:46:26 -08004124 if (r != null) {
4125 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004126 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004127 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS, "activityDestroyedLocked: r=" + r);
Craig Mautnerd2328952013-03-05 12:46:26 -08004128
Wale Ogunwale60454db2015-01-23 16:05:07 -08004129 if (isInStackLocked(r) != null) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004130 if (r.state == ActivityState.DESTROYING) {
4131 cleanUpActivityLocked(r, true, false);
Chong Zhangbffd8892016-08-08 11:16:06 -07004132 removeActivityFromHistoryLocked(r, reason);
Craig Mautnerd2328952013-03-05 12:46:26 -08004133 }
4134 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08004135 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08004136 } finally {
4137 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004138 }
4139 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004140
Todd Kennedyaab56db2015-01-30 09:39:53 -08004141 void releaseBackgroundResources(ActivityRecord r) {
Jose Lima4b6c6692014-08-12 17:41:12 -07004142 if (hasVisibleBehindActivity() &&
4143 !mHandler.hasMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG)) {
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08004144 if (r == topRunningActivityLocked()
4145 && getStackVisibilityLocked(null) == STACK_VISIBLE) {
Craig Mautner64ccb702014-10-01 09:38:40 -07004146 // Don't release the top activity if it has requested to run behind the next
Filip Gruszczynski4e7fe712016-01-13 13:22:44 -08004147 // activity and the stack is currently visible.
Craig Mautner64ccb702014-10-01 09:38:40 -07004148 return;
4149 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004150 if (DEBUG_STATES) Slog.d(TAG_STATES, "releaseBackgroundResources activtyDisplay=" +
Jose Lima4b6c6692014-08-12 17:41:12 -07004151 mActivityContainer.mActivityDisplay + " visibleBehind=" + r + " app=" + r.app +
Craig Mautneree2e45a2014-06-27 12:10:03 -07004152 " thread=" + r.app.thread);
4153 if (r != null && r.app != null && r.app.thread != null) {
4154 try {
Jose Lima4b6c6692014-08-12 17:41:12 -07004155 r.app.thread.scheduleCancelVisibleBehind(r.appToken);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004156 } catch (RemoteException e) {
4157 }
Jose Lima4b6c6692014-08-12 17:41:12 -07004158 mHandler.sendEmptyMessageDelayed(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG, 500);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004159 } else {
Jose Lima4b6c6692014-08-12 17:41:12 -07004160 Slog.e(TAG, "releaseBackgroundResources: activity " + r + " no longer running");
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08004161 backgroundResourcesReleased();
Craig Mautneree2e45a2014-06-27 12:10:03 -07004162 }
4163 }
4164 }
4165
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08004166 final void backgroundResourcesReleased() {
Jose Lima4b6c6692014-08-12 17:41:12 -07004167 mHandler.removeMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG);
4168 final ActivityRecord r = getVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07004169 if (r != null) {
4170 mStackSupervisor.mStoppingActivities.add(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07004171 setVisibleBehindActivity(null);
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08004172 mStackSupervisor.scheduleIdleTimeoutLocked(null);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004173 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08004174 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Craig Mautneree2e45a2014-06-27 12:10:03 -07004175 }
4176
Jose Lima4b6c6692014-08-12 17:41:12 -07004177 boolean hasVisibleBehindActivity() {
4178 return isAttached() && mActivityContainer.mActivityDisplay.hasVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07004179 }
4180
Jose Lima4b6c6692014-08-12 17:41:12 -07004181 void setVisibleBehindActivity(ActivityRecord r) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07004182 if (isAttached()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07004183 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004184 }
4185 }
4186
Jose Lima4b6c6692014-08-12 17:41:12 -07004187 ActivityRecord getVisibleBehindActivity() {
4188 return isAttached() ? mActivityContainer.mActivityDisplay.mVisibleBehindActivity : null;
Craig Mautneree2e45a2014-06-27 12:10:03 -07004189 }
4190
Craig Mautner05d6272ba2013-02-11 09:39:27 -08004191 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
4192 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004193 int i = list.size();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004194 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
4195 "Removing app " + app + " from list " + listName + " with " + i + " entries");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004196 while (i > 0) {
4197 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08004198 ActivityRecord r = list.get(i);
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004199 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004200 if (r.app == app) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004201 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004202 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07004203 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004204 }
4205 }
4206 }
4207
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004208 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
4209 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07004210 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
4211 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07004212 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
4213 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07004214 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004215 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07004216 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
4217 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004218
4219 boolean hasVisibleActivities = false;
4220
4221 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08004222 int i = numActivities();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004223 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
4224 "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08004225 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4226 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4227 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4228 final ActivityRecord r = activities.get(activityNdx);
4229 --i;
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004230 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
4231 "Record #" + i + " " + r + ": app=" + r.app);
Craig Mautner0247fc82013-02-28 14:32:06 -08004232 if (r.app == app) {
riddle_hsu558e8492015-04-02 16:43:13 +08004233 if (r.visible) {
4234 hasVisibleActivities = true;
4235 }
Craig Mautneracebdc82015-02-24 10:53:03 -08004236 final boolean remove;
Craig Mautner0247fc82013-02-28 14:32:06 -08004237 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
4238 // Don't currently have state for the activity, or
4239 // it is finishing -- always remove it.
4240 remove = true;
Chong Zhang112eb8c2015-11-02 11:17:00 -08004241 } else if (!r.visible && r.launchCount > 2 &&
4242 r.lastLaunchTime > (SystemClock.uptimeMillis() - 60000)) {
Craig Mautner0247fc82013-02-28 14:32:06 -08004243 // We have launched this activity too many times since it was
4244 // able to run, so give up and remove it.
Chong Zhang112eb8c2015-11-02 11:17:00 -08004245 // (Note if the activity is visible, we don't remove the record.
4246 // We leave the dead window on the screen but the process will
4247 // not be restarted unless user explicitly tap on it.)
Craig Mautner0247fc82013-02-28 14:32:06 -08004248 remove = true;
4249 } else {
4250 // The process may be gone, but the activity lives on!
4251 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004252 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004253 if (remove) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004254 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) Slog.i(TAG_ADD_REMOVE,
4255 "Removing activity " + r + " from stack at " + i
4256 + ": haveState=" + r.haveState
4257 + " stateNotNeeded=" + r.stateNotNeeded
4258 + " finishing=" + r.finishing
4259 + " state=" + r.state + " callers=" + Debug.getCallers(5));
Craig Mautner0247fc82013-02-28 14:32:06 -08004260 if (!r.finishing) {
4261 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
4262 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
4263 r.userId, System.identityHashCode(r),
4264 r.task.taskId, r.shortComponentName,
4265 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07004266 if (r.state == ActivityState.RESUMED) {
4267 mService.updateUsageStats(r, false);
4268 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004269 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004270 } else {
4271 // We have the current state for this activity, so
4272 // it can be restarted later when needed.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004273 if (DEBUG_ALL) Slog.v(TAG, "Keeping entry, setting app to null");
4274 if (DEBUG_APP) Slog.v(TAG_APP,
4275 "Clearing app during removeHistory for activity " + r);
Craig Mautner0247fc82013-02-28 14:32:06 -08004276 r.app = null;
Chong Zhang112eb8c2015-11-02 11:17:00 -08004277 // Set nowVisible to previous visible state. If the app was visible while
4278 // it died, we leave the dead window on screen so it's basically visible.
4279 // This is needed when user later tap on the dead window, we need to stop
4280 // other apps when user transfers focus to the restarted activity.
4281 r.nowVisible = r.visible;
Craig Mautner0247fc82013-02-28 14:32:06 -08004282 if (!r.haveState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004283 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
Craig Mautner0247fc82013-02-28 14:32:06 -08004284 "App died, clearing saved state of " + r);
4285 r.icicle = null;
4286 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004287 }
Craig Mautnerd2328952013-03-05 12:46:26 -08004288 cleanUpActivityLocked(r, true, true);
Craig Mautneracebdc82015-02-24 10:53:03 -08004289 if (remove) {
Chong Zhangbffd8892016-08-08 11:16:06 -07004290 removeActivityFromHistoryLocked(r, "appDied");
Craig Mautneracebdc82015-02-24 10:53:03 -08004291 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004292 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004293 }
4294 }
4295
4296 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004297 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004298
Chong Zhang280d3322015-11-03 17:27:26 -08004299 final void updateTransitLocked(int transit, ActivityOptions options) {
Dianne Hackborn7f58b952012-04-18 12:59:29 -07004300 if (options != null) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07004301 ActivityRecord r = topRunningActivityLocked();
Dianne Hackborn7f58b952012-04-18 12:59:29 -07004302 if (r != null && r.state != ActivityState.RESUMED) {
4303 r.updateOptionsLocked(options);
4304 } else {
4305 ActivityOptions.abort(options);
4306 }
4307 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004308 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07004309 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08004310
Craig Mautner21d24a22014-04-23 11:45:37 -07004311 void updateTaskMovement(TaskRecord task, boolean toFront) {
4312 if (task.isPersistable) {
4313 task.mLastTimeMoved = System.currentTimeMillis();
4314 // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
4315 // recently will be most negative, tasks sent to the bottom before that will be less
4316 // negative. Similarly for recent tasks moved to the top which will be most positive.
4317 if (!toFront) {
4318 task.mLastTimeMoved *= -1;
4319 }
4320 }
Chong Zhangfdcc4d42015-10-14 16:50:12 -07004321 mStackSupervisor.invalidateTaskLayers();
Craig Mautner21d24a22014-04-23 11:45:37 -07004322 }
4323
Craig Mautner84984fa2014-06-19 11:19:20 -07004324 void moveHomeStackTaskToTop(int homeStackTaskType) {
Craig Mautnera82aa092013-09-13 15:34:08 -07004325 final int top = mTaskHistory.size() - 1;
4326 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
4327 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07004328 if (task.taskType == homeStackTaskType) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004329 if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG_STACK,
4330 "moveHomeStackTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07004331 mTaskHistory.remove(taskNdx);
4332 mTaskHistory.add(top, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004333 updateTaskMovement(task, true);
Craig Mautnera82aa092013-09-13 15:34:08 -07004334 return;
4335 }
4336 }
4337 }
4338
Chong Zhang280d3322015-11-03 17:27:26 -08004339 final void moveTaskToFrontLocked(TaskRecord tr, boolean noAnimation, ActivityOptions options,
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07004340 AppTimeTracker timeTracker, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004341 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004342
Craig Mautner11bf9a52013-02-19 14:08:51 -08004343 final int numTasks = mTaskHistory.size();
4344 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07004345 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08004346 // nothing to do!
Craig Mautner8f5f7e92015-01-26 18:03:13 -08004347 if (noAnimation) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08004348 ActivityOptions.abort(options);
4349 } else {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07004350 updateTransitLocked(TRANSIT_TASK_TO_FRONT, options);
Craig Mautner11bf9a52013-02-19 14:08:51 -08004351 }
4352 return;
4353 }
4354
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07004355 if (timeTracker != null) {
4356 // The caller wants a time tracker associated with this task.
4357 for (int i = tr.mActivities.size() - 1; i >= 0; i--) {
4358 tr.mActivities.get(i).appTimeTracker = timeTracker;
4359 }
4360 }
4361
Craig Mautner11bf9a52013-02-19 14:08:51 -08004362 // Shift all activities with this task up to the top
4363 // of the stack, keeping them in the same internal order.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07004364 insertTaskAtTop(tr, null);
Wale Ogunwaled80c2632015-03-13 10:26:26 -07004365
Chong Zhang45c25ce2015-08-10 22:18:26 -07004366 // Don't refocus if invisible to current user
4367 ActivityRecord top = tr.getTopActivity();
Chong Zhang87761972016-08-22 13:53:24 -07004368 if (top == null || !top.okToShowLocked()) {
Chong Zhang45c25ce2015-08-10 22:18:26 -07004369 addRecentActivityLocked(top);
4370 ActivityOptions.abort(options);
4371 return;
4372 }
4373
Wale Ogunwaled80c2632015-03-13 10:26:26 -07004374 // Set focus to the top running activity of this stack.
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07004375 ActivityRecord r = topRunningActivityLocked();
Chong Zhang6cda19c2016-06-14 19:07:56 -07004376 mStackSupervisor.moveFocusableActivityStackToFrontLocked(r, reason);
Craig Mautner11bf9a52013-02-19 14:08:51 -08004377
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004378 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to front transition: task=" + tr);
Craig Mautner8f5f7e92015-01-26 18:03:13 -08004379 if (noAnimation) {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07004380 mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004381 if (r != null) {
4382 mNoAnimActivities.add(r);
4383 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07004384 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004385 } else {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07004386 updateTransitLocked(TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004387 }
Craig Mautner30e2d722013-02-12 11:30:16 -08004388
Wale Ogunwaled046a012015-12-24 13:05:59 -08004389 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Craig Mautner58547802013-03-05 08:23:53 -08004390 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08004391
4392 if (VALIDATE_TOKENS) {
4393 validateAppTokensLocked();
4394 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004395 }
4396
4397 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004398 * Worker method for rearranging history stack. Implements the function of moving all
4399 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004400 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004401 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004402 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
4403 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004404 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004405 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004406 * @return Returns true if the move completed, false if not.
4407 */
Craig Mautner299f9602015-01-26 09:47:33 -08004408 final boolean moveTaskToBackLocked(int taskId) {
Craig Mautneraea74a52014-03-08 14:23:10 -08004409 final TaskRecord tr = taskForIdLocked(taskId);
4410 if (tr == null) {
4411 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
4412 return false;
4413 }
4414
4415 Slog.i(TAG, "moveTaskToBack: " + tr);
Craig Mautner15df08a2015-04-01 12:17:18 -07004416 mStackSupervisor.removeLockedTaskLocked(tr);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08004417
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004418 // If we have a watcher, preflight the move before committing to it. First check
4419 // for *other* available tasks, but if none are available, then try again allowing the
4420 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07004421 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004422 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004423 if (next == null) {
4424 next = topRunningActivityLocked(null, 0);
4425 }
4426 if (next != null) {
4427 // ask watcher if this is allowed
4428 boolean moveOK = true;
4429 try {
4430 moveOK = mService.mController.activityResuming(next.packageName);
4431 } catch (RemoteException e) {
4432 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07004433 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004434 }
4435 if (!moveOK) {
4436 return false;
4437 }
4438 }
4439 }
4440
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004441 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004442
Wale Ogunwale285ccef2015-12-11 14:56:37 -08004443 if (mStackId == HOME_STACK_ID && topTask().isHomeTask()) {
Jiaquan Hee13e9642016-06-15 15:16:13 -07004444 if (topTask().isOnTopLauncher()) {
4445 // An on-top launcher doesn't affect the visibility of activities on other stacks
4446 // behind it. So if we're moving an on-top launcher to the back, we want to move the
4447 // focus to the next focusable stack and resume an activity there.
4448 // Besides, when the docked stack is visible, we should also move the home stack to
4449 // the back to avoid the recents pops up on top of a fullscreen or freeform
4450 // activity.
4451
4452 // Move the home stack to back.
4453 moveToBack(topTask());
4454
4455 // Resume an activity in the next focusable stack.
4456 adjustFocusToNextFocusableStackLocked(APPLICATION_ACTIVITY_TYPE, "moveTaskToBack");
4457 mStackSupervisor.resumeFocusedStackTopActivityLocked();
4458 return true;
4459 }
4460
Wale Ogunwale285ccef2015-12-11 14:56:37 -08004461 // For the case where we are moving the home task back and there is an activity visible
4462 // behind it on the fullscreen stack, we want to move the focus to the visible behind
4463 // activity to maintain order with what the user is seeing.
4464 final ActivityStack fullscreenStack =
4465 mStackSupervisor.getStack(FULLSCREEN_WORKSPACE_STACK_ID);
4466 if (fullscreenStack != null && fullscreenStack.hasVisibleBehindActivity()) {
4467 final ActivityRecord visibleBehind = fullscreenStack.getVisibleBehindActivity();
Chong Zhang6cda19c2016-06-14 19:07:56 -07004468 mStackSupervisor.moveFocusableActivityStackToFrontLocked(visibleBehind, "moveTaskToBack");
Wale Ogunwaled046a012015-12-24 13:05:59 -08004469 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Wale Ogunwale285ccef2015-12-11 14:56:37 -08004470 return true;
4471 }
4472 }
4473
riddle_hsuc215a4f2014-12-27 12:10:45 +08004474 boolean prevIsHome = false;
Wale Ogunwale42709242015-08-11 13:54:42 -07004475
4476 // If true, we should resume the home activity next if the task we are moving to the
4477 // back is over the home stack. We force to false if the task we are moving to back
4478 // is the home task and we don't want it resumed after moving to the back.
4479 final boolean canGoHome = !tr.isHomeTask() && tr.isOverHomeStack();
4480 if (canGoHome) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08004481 final TaskRecord nextTask = getNextTask(tr);
4482 if (nextTask != null) {
4483 nextTask.setTaskToReturnTo(tr.getTaskToReturnTo());
4484 } else {
4485 prevIsHome = true;
4486 }
4487 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08004488 mTaskHistory.remove(tr);
4489 mTaskHistory.add(0, tr);
Craig Mautner21d24a22014-04-23 11:45:37 -07004490 updateTaskMovement(tr, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004491
Craig Mautnerc8143c62013-09-03 12:15:57 -07004492 // There is an assumption that moving a task to the back moves it behind the home activity.
4493 // We make sure here that some activity in the stack will launch home.
Craig Mautnerc8143c62013-09-03 12:15:57 -07004494 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004495 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
4496 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07004497 if (task.isOverHomeStack()) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07004498 break;
4499 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004500 if (taskNdx == 1) {
4501 // Set the last task before tr to go to home.
Craig Mautner84984fa2014-06-19 11:19:20 -07004502 task.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004503 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07004504 }
4505
Jorim Jaggiaf80db42016-04-07 19:19:15 -07004506 mWindowManager.prepareAppTransition(TRANSIT_TASK_TO_BACK, false);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004507 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08004508
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004509 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08004510 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004511 }
4512
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004513 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
Wale Ogunwale42709242015-08-11 13:54:42 -07004514 if (prevIsHome || (task == tr && canGoHome) || (numTasks <= 1 && isOnHomeDisplay())) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07004515 if (!mService.mBooting && !mService.mBooted) {
4516 // Not ready yet!
4517 return false;
4518 }
Craig Mautner84984fa2014-06-19 11:19:20 -07004519 final int taskToReturnTo = tr.getTaskToReturnTo();
4520 tr.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner299f9602015-01-26 09:47:33 -08004521 return mStackSupervisor.resumeHomeStackTask(taskToReturnTo, null, "moveTaskToBack");
Craig Mautnerde4ef022013-04-07 19:01:33 -07004522 }
4523
Wale Ogunwaled046a012015-12-24 13:05:59 -08004524 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004525 return true;
4526 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07004527
Craig Mautner8849a5e2013-04-02 16:41:03 -07004528 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004529 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08004530 final Uri data = r.intent.getData();
4531 final String strData = data != null ? data.toSafeString() : null;
4532
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004533 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004534 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004535 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08004536 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004537 }
4538
4539 /**
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07004540 * Ensures all visible activities at or below the input activity have the right configuration.
4541 */
4542 void ensureVisibleActivitiesConfigurationLocked(ActivityRecord start, boolean preserveWindow) {
4543 if (start == null || !start.visible) {
4544 return;
4545 }
4546
4547 final TaskRecord startTask = start.task;
4548 boolean behindFullscreen = false;
4549 boolean updatedConfig = false;
4550
4551 for (int taskIndex = mTaskHistory.indexOf(startTask); taskIndex >= 0; --taskIndex) {
4552 final TaskRecord task = mTaskHistory.get(taskIndex);
4553 final ArrayList<ActivityRecord> activities = task.mActivities;
4554 int activityIndex =
4555 (start.task == task) ? activities.indexOf(start) : activities.size() - 1;
4556 for (; activityIndex >= 0; --activityIndex) {
4557 final ActivityRecord r = activities.get(activityIndex);
4558 updatedConfig |= ensureActivityConfigurationLocked(r, 0, preserveWindow);
4559 if (r.fullscreen) {
4560 behindFullscreen = true;
4561 break;
4562 }
4563 }
4564 if (behindFullscreen) {
4565 break;
4566 }
4567 }
4568 if (updatedConfig) {
Wale Ogunwale089586f2016-06-20 14:16:22 -07004569 // Ensure the resumed state of the focus activity if we updated the configuration of
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07004570 // any activity.
4571 mStackSupervisor.resumeFocusedStackTopActivityLocked();
4572 }
4573 }
4574
4575 /**
4576 * Make sure the given activity matches the current configuration. Returns false if the activity
4577 * had to be destroyed. Returns true if the configuration is the same, or the activity will
4578 * remain running as-is for whatever reason. Ensures the HistoryRecord is updated with the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004579 * correct configuration and all other bookkeeping is handled.
4580 */
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07004581 boolean ensureActivityConfigurationLocked(
4582 ActivityRecord r, int globalChanges, boolean preserveWindow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004583 if (mConfigWillChange) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004584 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004585 "Skipping config check (will change): " + r);
4586 return true;
4587 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004588
Wale Ogunwale089586f2016-06-20 14:16:22 -07004589 // TODO: We could probably make the condition below just check that the activity state is
4590 // stopped, but also checking the sleep state for now to reduce change impact late in
4591 // development cycle.
4592 if (mService.isSleepingOrShuttingDownLocked() && r.state == ActivityState.STOPPED) {
4593 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4594 "Skipping config check (stopped while sleeping): " + r);
4595 return true;
4596 }
4597
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004598 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004599 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004600
Wale Ogunwalef7dab1e2016-04-16 11:38:50 -07004601 // Short circuit: if the two configurations are equal (the common case), then there is
4602 // nothing to do.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004603 final Configuration newConfig = mService.mConfiguration;
Andrii Kulianf12fce12016-05-27 17:30:16 -07004604 r.task.sanitizeOverrideConfiguration(newConfig);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004605 final Configuration taskConfig = r.task.mOverrideConfig;
Wale Ogunwalef7dab1e2016-04-16 11:38:50 -07004606 if (r.configuration.equals(newConfig)
4607 && r.taskConfigOverride.equals(taskConfig)
Wale Ogunwale60454db2015-01-23 16:05:07 -08004608 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004609 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004610 "Configuration unchanged in " + r);
4611 return true;
4612 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004613
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004614 // We don't worry about activities that are finishing.
4615 if (r.finishing) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004616 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004617 "Configuration doesn't matter in finishing " + r);
4618 r.stopFreezingScreenLocked(false);
4619 return true;
4620 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004621
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004622 // Okay we now are going to make this activity have the new config.
4623 // But then we need to figure out how it needs to deal with that.
Wale Ogunwale60454db2015-01-23 16:05:07 -08004624 final Configuration oldConfig = r.configuration;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004625 final Configuration oldTaskOverride = r.taskConfigOverride;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004626 r.configuration = newConfig;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004627 r.taskConfigOverride = taskConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004628
Filip Gruszczynski23493322015-07-29 17:02:59 -07004629 int taskChanges = getTaskConfigurationChanges(r, taskConfig, oldTaskOverride);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004630 final int changes = oldConfig.diff(newConfig) | taskChanges;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004631 if (changes == 0 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004632 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004633 "Configuration no differences in " + r);
Filip Gruszczynskica664812015-12-04 12:43:36 -08004634 // There are no significant differences, so we won't relaunch but should still deliver
4635 // the new configuration to the client process.
Wale Ogunwalef7dab1e2016-04-16 11:38:50 -07004636 r.scheduleConfigurationChanged(taskConfig, true);
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004637 return true;
4638 }
4639
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07004640 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4641 "Configuration changes for " + r + " ; taskChanges="
4642 + Configuration.configurationDiffToString(taskChanges) + ", allChanges="
4643 + Configuration.configurationDiffToString(changes));
4644
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004645 // If the activity isn't currently running, just leave the new
4646 // configuration and it will pick that up next time it starts.
4647 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004648 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004649 "Configuration doesn't matter not running " + r);
4650 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004651 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004652 return true;
4653 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004654
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004655 // Figure out how to handle the changes between the configurations.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004656 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4657 "Checking to restart " + r.info.name + ": changed=0x"
4658 + Integer.toHexString(changes) + ", handles=0x"
Filip Gruszczynskica664812015-12-04 12:43:36 -08004659 + Integer.toHexString(r.info.getRealConfigChanged()) + ", newConfig=" + newConfig
4660 + ", taskConfig=" + taskConfig);
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004661
Dianne Hackborne6676352011-06-01 16:51:20 -07004662 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004663 // Aha, the activity isn't handling the change, so DIE DIE DIE.
4664 r.configChangeFlags |= changes;
4665 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004666 r.forceNewConfig = false;
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004667 preserveWindow &= isResizeOnlyChange(changes);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004668 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004669 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004670 "Config is destroying non-running " + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004671 destroyActivityLocked(r, true, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004672 } else if (r.state == ActivityState.PAUSING) {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004673 // A little annoying: we are waiting for this activity to finish pausing. Let's not
4674 // do anything now, but just flag that it needs to be restarted when done pausing.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004675 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004676 "Config is skipping already pausing " + r);
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004677 r.deferRelaunchUntilPaused = true;
4678 r.preserveWindowOnDeferredRelaunch = preserveWindow;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004679 return true;
4680 } else if (r.state == ActivityState.RESUMED) {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004681 // Try to optimize this case: the configuration is changing and we need to restart
4682 // the top, resumed activity. Instead of doing the normal handshaking, just say
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004683 // "restart!".
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004684 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004685 "Config is relaunching resumed " + r);
Chong Zhang2b79af12016-02-10 18:47:06 -08004686
4687 if (DEBUG_STATES && !r.visible) {
4688 Slog.v(TAG_STATES, "Config is relaunching resumed invisible activity " + r
4689 + " called by " + Debug.getCallers(4));
4690 }
4691
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004692 relaunchActivityLocked(r, r.configChangeFlags, true, preserveWindow);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004693 } else {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004694 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004695 "Config is relaunching non-resumed " + r);
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004696 relaunchActivityLocked(r, r.configChangeFlags, false, preserveWindow);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004697 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004698
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004699 // All done... tell the caller we weren't able to keep this activity around.
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004700 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004701 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004702
Wale Ogunwalec2607b42015-02-07 16:16:59 -08004703 // Default case: the activity can handle this new configuration, so hand it over.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004704 // NOTE: We only forward the task override configuration as the system level configuration
Wale Ogunwalec2607b42015-02-07 16:16:59 -08004705 // changes is always sent to all processes when they happen so it can just use whatever
4706 // system level configuration it last got.
Filip Gruszczynskica664812015-12-04 12:43:36 -08004707 r.scheduleConfigurationChanged(taskConfig, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004708 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004709
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004710 return true;
4711 }
4712
Filip Gruszczynski23493322015-07-29 17:02:59 -07004713 private int getTaskConfigurationChanges(ActivityRecord record, Configuration taskConfig,
4714 Configuration oldTaskOverride) {
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08004715
4716 // If we went from full-screen to non-full-screen, make sure to use the correct
4717 // configuration task diff, so the diff stays as small as possible.
4718 if (Configuration.EMPTY.equals(oldTaskOverride)
4719 && !Configuration.EMPTY.equals(taskConfig)) {
4720 oldTaskOverride = record.task.extractOverrideConfig(record.configuration);
4721 }
4722
Jorim Jaggi1b025a62016-02-03 19:27:49 -08004723 // Conversely, do the same when going the other direction.
4724 if (Configuration.EMPTY.equals(taskConfig)
4725 && !Configuration.EMPTY.equals(oldTaskOverride)) {
4726 taskConfig = record.task.extractOverrideConfig(record.configuration);
4727 }
4728
Filip Gruszczynski23493322015-07-29 17:02:59 -07004729 // Determine what has changed. May be nothing, if this is a config
4730 // that has come back from the app after going idle. In that case
4731 // we just want to leave the official config object now in the
4732 // activity and do nothing else.
4733 int taskChanges = oldTaskOverride.diff(taskConfig);
4734 // We don't want to use size changes if they don't cross boundaries that are important to
4735 // the app.
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004736 if ((taskChanges & CONFIG_SCREEN_SIZE) != 0) {
Filip Gruszczynski23493322015-07-29 17:02:59 -07004737 final boolean crosses = record.crossesHorizontalSizeThreshold(
4738 oldTaskOverride.screenWidthDp, taskConfig.screenWidthDp)
4739 || record.crossesVerticalSizeThreshold(
4740 oldTaskOverride.screenHeightDp, taskConfig.screenHeightDp);
4741 if (!crosses) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004742 taskChanges &= ~CONFIG_SCREEN_SIZE;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004743 }
4744 }
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004745 if ((taskChanges & CONFIG_SMALLEST_SCREEN_SIZE) != 0) {
Filip Gruszczynski23493322015-07-29 17:02:59 -07004746 final int oldSmallest = oldTaskOverride.smallestScreenWidthDp;
4747 final int newSmallest = taskConfig.smallestScreenWidthDp;
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -07004748 if (!record.crossesSmallestSizeThreshold(oldSmallest, newSmallest)) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004749 taskChanges &= ~CONFIG_SMALLEST_SCREEN_SIZE;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004750 }
4751 }
4752 return catchConfigChangesFromUnset(taskConfig, oldTaskOverride, taskChanges);
4753 }
4754
4755 private static int catchConfigChangesFromUnset(Configuration taskConfig,
4756 Configuration oldTaskOverride, int taskChanges) {
4757 if (taskChanges == 0) {
4758 // {@link Configuration#diff} doesn't catch changes from unset values.
4759 // Check for changes we care about.
4760 if (oldTaskOverride.orientation != taskConfig.orientation) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004761 taskChanges |= CONFIG_ORIENTATION;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004762 }
4763 // We want to explicitly track situations where the size configuration goes from
4764 // undefined to defined. We don't care about crossing the threshold in that case,
4765 // because there is no threshold.
4766 final int oldHeight = oldTaskOverride.screenHeightDp;
4767 final int newHeight = taskConfig.screenHeightDp;
4768 final int undefinedHeight = Configuration.SCREEN_HEIGHT_DP_UNDEFINED;
4769 if ((oldHeight == undefinedHeight && newHeight != undefinedHeight)
4770 || (oldHeight != undefinedHeight && newHeight == undefinedHeight)) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004771 taskChanges |= CONFIG_SCREEN_SIZE;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004772 }
4773 final int oldWidth = oldTaskOverride.screenWidthDp;
4774 final int newWidth = taskConfig.screenWidthDp;
4775 final int undefinedWidth = Configuration.SCREEN_WIDTH_DP_UNDEFINED;
4776 if ((oldWidth == undefinedWidth && newWidth != undefinedWidth)
4777 || (oldWidth != undefinedWidth && newWidth == undefinedWidth)) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004778 taskChanges |= CONFIG_SCREEN_SIZE;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004779 }
4780 final int oldSmallest = oldTaskOverride.smallestScreenWidthDp;
4781 final int newSmallest = taskConfig.smallestScreenWidthDp;
4782 final int undefinedSmallest = Configuration.SMALLEST_SCREEN_WIDTH_DP_UNDEFINED;
4783 if ((oldSmallest == undefinedSmallest && newSmallest != undefinedSmallest)
4784 || (oldSmallest != undefinedSmallest && newSmallest == undefinedSmallest)) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004785 taskChanges |= CONFIG_SMALLEST_SCREEN_SIZE;
4786 }
4787 final int oldLayout = oldTaskOverride.screenLayout;
4788 final int newLayout = taskConfig.screenLayout;
4789 if ((oldLayout == SCREENLAYOUT_UNDEFINED && newLayout != SCREENLAYOUT_UNDEFINED)
4790 || (oldLayout != SCREENLAYOUT_UNDEFINED && newLayout == SCREENLAYOUT_UNDEFINED)) {
4791 taskChanges |= CONFIG_SCREEN_LAYOUT;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004792 }
4793 }
4794 return taskChanges;
4795 }
4796
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004797 private static boolean isResizeOnlyChange(int change) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004798 return (change & ~(CONFIG_SCREEN_SIZE | CONFIG_SMALLEST_SCREEN_SIZE | CONFIG_ORIENTATION
4799 | CONFIG_SCREEN_LAYOUT)) == 0;
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004800 }
4801
Wale Ogunwale83301a92015-09-24 15:54:08 -07004802 private void relaunchActivityLocked(
4803 ActivityRecord r, int changes, boolean andResume, boolean preserveWindow) {
4804 if (mService.mSuppressResizeConfigChanges && preserveWindow) {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004805 r.configChangeFlags = 0;
Wale Ogunwale83301a92015-09-24 15:54:08 -07004806 return;
4807 }
4808
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004809 List<ResultInfo> results = null;
Dianne Hackborn85d558c2014-11-04 10:31:54 -08004810 List<ReferrerIntent> newIntents = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004811 if (andResume) {
4812 results = r.results;
4813 newIntents = r.newIntents;
4814 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004815 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
4816 "Relaunching: " + r + " with results=" + results + " newIntents=" + newIntents
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004817 + " andResume=" + andResume + " preserveWindow=" + preserveWindow);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004818 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004819 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004820 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004821
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004822 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004823
Craig Mautner34b73df2014-01-12 21:11:08 -08004824 mStackSupervisor.removeChildActivityContainers(r);
4825
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004826 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004827 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH,
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08004828 "Moving to " + (andResume ? "RESUMED" : "PAUSED") + " Relaunching " + r
4829 + " callers=" + Debug.getCallers(6));
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004830 r.forceNewConfig = false;
Chong Zhangd78ddb42016-03-02 17:01:14 -08004831 mStackSupervisor.activityRelaunchingLocked(r);
Wale Ogunwale60454db2015-01-23 16:05:07 -08004832 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents, changes,
4833 !andResume, new Configuration(mService.mConfiguration),
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004834 new Configuration(r.task.mOverrideConfig), preserveWindow);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004835 // Note: don't need to call pauseIfSleepingLocked() here, because
4836 // the caller will only pass in 'andResume' if this activity is
4837 // currently resumed, which implies we aren't sleeping.
4838 } catch (RemoteException e) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004839 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004840 }
4841
4842 if (andResume) {
Chong Zhang2b79af12016-02-10 18:47:06 -08004843 if (DEBUG_STATES) {
4844 Slog.d(TAG_STATES, "Resumed after relaunch " + r);
4845 }
Chong Zhangd2cb3112016-07-20 11:13:22 -07004846 r.results = null;
4847 r.newIntents = null;
Andrii Kulianf42cbe82016-06-22 14:49:58 -07004848 mService.showUnsupportedZoomDialogIfNeededLocked(r);
4849 mService.showAskCompatModeDialogLocked(r);
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004850 } else {
4851 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
4852 r.state = ActivityState.PAUSED;
Chong Zhangfec694e2016-08-09 12:57:38 -07004853 // if the app is relaunched when it's stopped, and we're not resuming,
4854 // put it back into stopped state.
4855 if (r.stopped) {
4856 addToStopping(r, true /* immediate */);
4857 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004858 }
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004859
4860 r.configChangeFlags = 0;
Chong Zhang225d1b62016-03-31 14:09:33 -07004861 r.deferRelaunchUntilPaused = false;
4862 r.preserveWindowOnDeferredRelaunch = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004863 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004864
4865 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004866 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4867 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4868 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4869 final ActivityRecord r = activities.get(activityNdx);
4870 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08004871 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08004872 }
4873 if (r.fullscreen && !r.finishing) {
4874 return false;
4875 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004876 }
4877 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07004878 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautner34b73df2014-01-12 21:11:08 -08004879 if (r == null) {
4880 return false;
4881 }
4882 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
4883 + " would have returned true for r=" + r);
4884 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08004885 }
4886
4887 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004888 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4889 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4890 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4891 final ActivityRecord r = activities.get(activityNdx);
4892 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004893 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004894 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004895 }
4896 }
4897 }
4898
Wale Ogunwale540e1232015-05-01 15:35:39 -07004899 boolean finishDisabledPackageActivitiesLocked(String packageName, Set<String> filterByClasses,
4900 boolean doit, boolean evenPersistent, int userId) {
Craig Mautnercae015f2013-02-08 14:31:27 -08004901 boolean didSomething = false;
4902 TaskRecord lastTask = null;
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004903 ComponentName homeActivity = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08004904 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4905 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4906 int numActivities = activities.size();
4907 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
4908 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004909 final boolean sameComponent =
4910 (r.packageName.equals(packageName) && (filterByClasses == null
4911 || filterByClasses.contains(r.realActivity.getClassName())))
4912 || (packageName == null && r.userId == userId);
Craig Mautner56f52db2013-02-25 10:03:01 -08004913 if ((userId == UserHandle.USER_ALL || r.userId == userId)
Wale Ogunwale540e1232015-05-01 15:35:39 -07004914 && (sameComponent || r.task == lastTask)
Craig Mautner56f52db2013-02-25 10:03:01 -08004915 && (r.app == null || evenPersistent || !r.app.persistent)) {
4916 if (!doit) {
4917 if (r.finishing) {
4918 // If this activity is just finishing, then it is not
4919 // interesting as far as something to stop.
4920 continue;
4921 }
4922 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08004923 }
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004924 if (r.isHomeActivity()) {
4925 if (homeActivity != null && homeActivity.equals(r.realActivity)) {
4926 Slog.i(TAG, "Skip force-stop again " + r);
4927 continue;
4928 } else {
4929 homeActivity = r.realActivity;
4930 }
4931 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004932 didSomething = true;
4933 Slog.i(TAG, " Force finishing activity " + r);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004934 if (sameComponent) {
Craig Mautner56f52db2013-02-25 10:03:01 -08004935 if (r.app != null) {
4936 r.app.removed = true;
4937 }
4938 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08004939 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004940 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07004941 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
4942 true)) {
4943 // r has been deleted from mActivities, accommodate.
4944 --numActivities;
4945 --activityNdx;
4946 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004947 }
4948 }
4949 }
4950 return didSomething;
4951 }
4952
Dianne Hackborn09233282014-04-30 11:33:59 -07004953 void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
riddle_hsuddc74152015-04-07 11:30:09 +08004954 boolean focusedStack = mStackSupervisor.getFocusedStack() == this;
4955 boolean topTask = true;
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004956 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004957 final TaskRecord task = mTaskHistory.get(taskNdx);
riddle_hsuddc74152015-04-07 11:30:09 +08004958 if (task.getTopActivity() == null) {
4959 continue;
4960 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004961 ActivityRecord r = null;
4962 ActivityRecord top = null;
Wale Ogunwale6035e012015-04-14 15:54:10 -07004963 ActivityRecord tmp;
Craig Mautneraab647e2013-02-28 16:31:36 -08004964 int numActivities = 0;
4965 int numRunning = 0;
4966 final ArrayList<ActivityRecord> activities = task.mActivities;
Dianne Hackborn885fbe52014-08-23 15:23:58 -07004967 if (!allowed && !task.isHomeTask() && task.effectiveUid != callingUid) {
Dianne Hackborn09233282014-04-30 11:33:59 -07004968 continue;
4969 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004970 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Wale Ogunwale6035e012015-04-14 15:54:10 -07004971 tmp = activities.get(activityNdx);
4972 if (tmp.finishing) {
4973 continue;
4974 }
4975 r = tmp;
Craig Mautnercae015f2013-02-08 14:31:27 -08004976
Craig Mautneraab647e2013-02-28 16:31:36 -08004977 // Initialize state for next task if needed.
4978 if (top == null || (top.state == ActivityState.INITIALIZING)) {
4979 top = r;
4980 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08004981 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004982
4983 // Add 'r' into the current task.
4984 numActivities++;
4985 if (r.app != null && r.app.thread != null) {
4986 numRunning++;
4987 }
4988
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004989 if (DEBUG_ALL) Slog.v(
Craig Mautneraab647e2013-02-28 16:31:36 -08004990 TAG, r.intent.getComponent().flattenToShortString()
4991 + ": task=" + r.task);
4992 }
4993
4994 RunningTaskInfo ci = new RunningTaskInfo();
4995 ci.id = task.taskId;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07004996 ci.stackId = mStackId;
Craig Mautneraab647e2013-02-28 16:31:36 -08004997 ci.baseActivity = r.intent.getComponent();
4998 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004999 ci.lastActiveTime = task.lastActiveTime;
riddle_hsuddc74152015-04-07 11:30:09 +08005000 if (focusedStack && topTask) {
5001 // Give the latest time to ensure foreground task can be sorted
5002 // at the first, because lastActiveTime of creating task is 0.
5003 ci.lastActiveTime = System.currentTimeMillis();
5004 topTask = false;
5005 }
Craig Mautnerc0fd8052013-09-19 11:20:17 -07005006
Craig Mautnerc0ffce52014-07-01 12:38:52 -07005007 if (top.task != null) {
5008 ci.description = top.task.lastDescription;
Craig Mautneraab647e2013-02-28 16:31:36 -08005009 }
5010 ci.numActivities = numActivities;
5011 ci.numRunning = numRunning;
Wale Ogunwale21b60582016-01-27 12:34:16 -08005012 ci.isDockable = task.canGoInDockedStack();
Jorim Jaggi29379ec2016-04-11 23:43:42 -07005013 ci.resizeMode = task.mResizeMode;
Craig Mautneraab647e2013-02-28 16:31:36 -08005014 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08005015 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005016 }
5017
5018 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08005019 final int top = mTaskHistory.size() - 1;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07005020 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08005021 if (top >= 0) {
5022 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
5023 int activityTop = activities.size() - 1;
5024 if (activityTop > 0) {
5025 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
5026 "unhandled-back", true);
5027 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005028 }
5029 }
5030
Craig Mautner6b74cb52013-09-27 17:02:21 -07005031 /**
5032 * Reset local parameters because an app's activity died.
5033 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07005034 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07005035 */
5036 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07005037 if (mPausingActivity != null && mPausingActivity.app == app) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07005038 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG_PAUSE,
Craig Mautnere79d42682013-04-01 19:01:53 -07005039 "App died while pausing: " + mPausingActivity);
5040 mPausingActivity = null;
5041 }
5042 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
5043 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07005044 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07005045 }
5046
Craig Mautner19091252013-10-05 00:03:53 -07005047 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07005048 }
5049
Craig Mautnercae015f2013-02-08 14:31:27 -08005050 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08005051 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5052 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
5053 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
5054 final ActivityRecord r = activities.get(activityNdx);
5055 if (r.app == app) {
5056 Slog.w(TAG, " Force finishing activity "
5057 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07005058 // Force the destroy to skip right to removal.
5059 r.app = null;
5060 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08005061 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005062 }
5063 }
5064 }
5065
Dianne Hackborn390517b2013-05-30 15:03:32 -07005066 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07005067 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07005068 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08005069 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5070 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07005071 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
5072 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07005073 dumpClient, dumpPackage, needSep, header,
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07005074 " Task id #" + task.taskId + "\n" +
5075 " mFullscreen=" + task.mFullscreen + "\n" +
5076 " mBounds=" + task.mBounds + "\n" +
Andrii Kulianf66a83d2016-05-17 12:17:44 -07005077 " mMinWidth=" + task.mMinWidth + "\n" +
5078 " mMinHeight=" + task.mMinHeight + "\n" +
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07005079 " mLastNonFullscreenBounds=" + task.mLastNonFullscreenBounds);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07005080 if (printed) {
5081 header = null;
5082 }
Craig Mautneraab647e2013-02-28 16:31:36 -08005083 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07005084 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08005085 }
5086
5087 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
5088 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
5089
5090 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08005091 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5092 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08005093 }
5094 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08005095 final int top = mTaskHistory.size() - 1;
5096 if (top >= 0) {
5097 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
5098 int listTop = list.size() - 1;
5099 if (listTop >= 0) {
5100 activities.add(list.get(listTop));
5101 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005102 }
5103 } else {
5104 ItemMatcher matcher = new ItemMatcher();
5105 matcher.build(name);
5106
Craig Mautneraab647e2013-02-28 16:31:36 -08005107 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5108 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
5109 if (matcher.match(r1, r1.intent.getComponent())) {
5110 activities.add(r1);
5111 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005112 }
5113 }
5114 }
5115
5116 return activities;
5117 }
5118
5119 ActivityRecord restartPackage(String packageName) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07005120 ActivityRecord starting = topRunningActivityLocked();
Craig Mautnercae015f2013-02-08 14:31:27 -08005121
5122 // All activities that came from the package must be
5123 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08005124 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5125 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
5126 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
5127 final ActivityRecord a = activities.get(activityNdx);
5128 if (a.info.packageName.equals(packageName)) {
5129 a.forceNewConfig = true;
5130 if (starting != null && a == starting && a.visible) {
5131 a.startFreezingScreenLocked(starting.app,
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08005132 CONFIG_SCREEN_LAYOUT);
Craig Mautneraab647e2013-02-28 16:31:36 -08005133 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005134 }
5135 }
5136 }
5137
5138 return starting;
5139 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08005140
Craig Mautner299f9602015-01-26 09:47:33 -08005141 void removeTask(TaskRecord task, String reason) {
Wale Ogunwale06579d62016-04-30 15:29:06 -07005142 removeTask(task, reason, REMOVE_TASK_MODE_DESTROYING);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08005143 }
5144
Wale Ogunwale000957c2015-04-03 08:19:12 -07005145 /**
5146 * Removes the input task from this stack.
5147 * @param task to remove.
5148 * @param reason for removal.
Wale Ogunwale06579d62016-04-30 15:29:06 -07005149 * @param mode task removal mode. Either {@link #REMOVE_TASK_MODE_DESTROYING},
5150 * {@link #REMOVE_TASK_MODE_MOVING}, {@link #REMOVE_TASK_MODE_MOVING_TO_TOP}.
Wale Ogunwale000957c2015-04-03 08:19:12 -07005151 */
Wale Ogunwale06579d62016-04-30 15:29:06 -07005152 void removeTask(TaskRecord task, String reason, int mode) {
5153 if (mode == REMOVE_TASK_MODE_DESTROYING) {
Craig Mautner15df08a2015-04-01 12:17:18 -07005154 mStackSupervisor.removeLockedTaskLocked(task);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08005155 mWindowManager.removeTask(task.taskId);
Wale Ogunwaleb317b222015-11-09 11:14:10 -08005156 if (!StackId.persistTaskBounds(mStackId)) {
5157 // Reset current bounds for task whose bounds shouldn't be persisted so it uses
5158 // default configuration the next time it launches.
5159 task.updateOverrideConfiguration(null);
5160 }
Wale Ogunwale53a29a92015-02-23 15:42:52 -08005161 }
Wale Ogunwale000957c2015-04-03 08:19:12 -07005162
Craig Mautner04a0ea62014-01-13 12:51:26 -08005163 final ActivityRecord r = mResumedActivity;
5164 if (r != null && r.task == task) {
5165 mResumedActivity = null;
5166 }
5167
Craig Mautnerae7ecab2013-09-18 11:48:14 -07005168 final int taskNdx = mTaskHistory.indexOf(task);
5169 final int topTaskNdx = mTaskHistory.size() - 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07005170 if (task.isOverHomeStack() && taskNdx < topTaskNdx) {
5171 final TaskRecord nextTask = mTaskHistory.get(taskNdx + 1);
5172 if (!nextTask.isOverHomeStack()) {
5173 nextTask.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
5174 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07005175 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07005176 mTaskHistory.remove(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07005177 updateTaskMovement(task, true);
Craig Mautner41db4a72014-05-07 17:20:56 -07005178
Wale Ogunwale06579d62016-04-30 15:29:06 -07005179 if (mode == REMOVE_TASK_MODE_DESTROYING && task.mActivities.isEmpty()) {
Amith Yamasani0af6fa72016-01-17 15:36:19 -08005180 // TODO: VI what about activity?
Craig Mautner41db4a72014-05-07 17:20:56 -07005181 final boolean isVoiceSession = task.voiceSession != null;
5182 if (isVoiceSession) {
5183 try {
5184 task.voiceSession.taskFinished(task.intent, task.taskId);
5185 } catch (RemoteException e) {
5186 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07005187 }
Craig Mautner41db4a72014-05-07 17:20:56 -07005188 if (task.autoRemoveFromRecents() || isVoiceSession) {
5189 // Task creator asked to remove this when done, or this task was a voice
5190 // interaction, so it should not remain on the recent tasks list.
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08005191 mRecentTasks.remove(task);
Winson Chung740c3ac2014-11-12 16:14:38 -08005192 task.removedFromRecents();
Craig Mautner41db4a72014-05-07 17:20:56 -07005193 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07005194 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08005195
5196 if (mTaskHistory.isEmpty()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07005197 if (DEBUG_STACK) Slog.i(TAG_STACK, "removeTask: removing stack=" + this);
Wale Ogunwale06579d62016-04-30 15:29:06 -07005198 // We only need to adjust focused stack if this stack is in focus and we are not in the
5199 // process of moving the task to the top of the stack that will be focused.
5200 if (isOnHomeDisplay() && mode != REMOVE_TASK_MODE_MOVING_TO_TOP
5201 && mStackSupervisor.isFocusedStack(this)) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08005202 String myReason = reason + " leftTaskHistoryEmpty";
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07005203 if (mFullscreen
5204 || !adjustFocusToNextFocusableStackLocked(
5205 task.getTaskToReturnTo(), myReason)) {
Wale Ogunwale925d0d12015-09-23 15:40:07 -07005206 mStackSupervisor.moveHomeStackToFront(myReason);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08005207 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08005208 }
Craig Mautner593a4e62014-01-15 17:55:51 -08005209 if (mStacks != null) {
5210 mStacks.remove(this);
5211 mStacks.add(0, this);
5212 }
Wale Ogunwale925d0d12015-09-23 15:40:07 -07005213 if (!isHomeStack()) {
Wale Ogunwale49853bf2015-02-23 09:24:42 -08005214 mActivityContainer.onTaskListEmptyLocked();
5215 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08005216 }
Wale Ogunwale04f4d6b2015-03-11 09:23:25 -07005217
5218 task.stack = null;
Craig Mautner0247fc82013-02-28 14:32:06 -08005219 }
5220
Dianne Hackborn91097de2014-04-04 18:02:06 -07005221 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
5222 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
5223 boolean toTop) {
Craig Mautner21d24a22014-04-23 11:45:37 -07005224 TaskRecord task = new TaskRecord(mService, taskId, info, intent, voiceSession,
5225 voiceInteractor);
Chong Zhang0fa656b2015-08-31 15:17:21 -07005226 // add the task to stack first, mTaskPositioner might need the stack association
Wale Ogunwale5f986092015-12-04 15:35:38 -08005227 addTask(task, toTop, "createTaskRecord");
Chong Zhang75b37202015-12-04 14:16:36 -08005228 final boolean isLockscreenShown = mService.mLockScreenShown == LOCK_SCREEN_SHOWN;
Andrii Kulian2e751b82016-03-16 16:59:32 -07005229 if (!layoutTaskInStack(task, info.windowLayout) && mBounds != null && task.isResizeable()
Chong Zhang75b37202015-12-04 14:16:36 -08005230 && !isLockscreenShown) {
Wale Ogunwalea6e902e2015-09-21 18:37:15 -07005231 task.updateOverrideConfiguration(mBounds);
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07005232 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08005233 return task;
5234 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08005235
Andrii Kulian2e751b82016-03-16 16:59:32 -07005236 boolean layoutTaskInStack(TaskRecord task, ActivityInfo.WindowLayout windowLayout) {
Wale Ogunwale935e5022015-11-10 12:36:10 -08005237 if (mTaskPositioner == null) {
5238 return false;
5239 }
Andrii Kulian2e751b82016-03-16 16:59:32 -07005240 mTaskPositioner.updateDefaultBounds(task, mTaskHistory, windowLayout);
Wale Ogunwale935e5022015-11-10 12:36:10 -08005241 return true;
5242 }
5243
Craig Mautnerc00204b2013-03-05 15:02:14 -08005244 ArrayList<TaskRecord> getAllTasks() {
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08005245 return new ArrayList<>(mTaskHistory);
Craig Mautnerc00204b2013-03-05 15:02:14 -08005246 }
5247
Wale Ogunwale5f986092015-12-04 15:35:38 -08005248 void addTask(final TaskRecord task, final boolean toTop, String reason) {
Wale Ogunwale06579d62016-04-30 15:29:06 -07005249 final ActivityStack prevStack = preAddTask(task, reason, toTop);
Wale Ogunwale5f986092015-12-04 15:35:38 -08005250
Craig Mautnerc00204b2013-03-05 15:02:14 -08005251 task.stack = this;
5252 if (toTop) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07005253 insertTaskAtTop(task, null);
Craig Mautnerc00204b2013-03-05 15:02:14 -08005254 } else {
5255 mTaskHistory.add(0, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07005256 updateTaskMovement(task, false);
Craig Mautnerc00204b2013-03-05 15:02:14 -08005257 }
Wale Ogunwale5f986092015-12-04 15:35:38 -08005258 postAddTask(task, prevStack);
Craig Mautnerc00204b2013-03-05 15:02:14 -08005259 }
5260
Wale Ogunwale5f986092015-12-04 15:35:38 -08005261 void positionTask(final TaskRecord task, int position) {
Jorim Jaggi023da532016-04-20 22:42:32 -07005262 final ActivityRecord topRunningActivity = task.topRunningActivityLocked();
5263 final boolean wasResumed = topRunningActivity == task.stack.mResumedActivity;
Wale Ogunwaleed811d72016-05-06 08:41:19 -07005264 final ActivityStack prevStack = preAddTask(task, "positionTask", !ON_TOP);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07005265 task.stack = this;
5266 insertTaskAtPosition(task, position);
Wale Ogunwale5f986092015-12-04 15:35:38 -08005267 postAddTask(task, prevStack);
Jorim Jaggi023da532016-04-20 22:42:32 -07005268 if (wasResumed) {
5269 if (mResumedActivity != null) {
5270 Log.wtf(TAG, "mResumedActivity was already set when moving mResumedActivity from"
5271 + " other stack to this stack mResumedActivity=" + mResumedActivity
5272 + " other mResumedActivity=" + topRunningActivity);
5273 }
5274 mResumedActivity = topRunningActivity;
5275 }
Wale Ogunwale5f986092015-12-04 15:35:38 -08005276 }
5277
Wale Ogunwale06579d62016-04-30 15:29:06 -07005278 private ActivityStack preAddTask(TaskRecord task, String reason, boolean toTop) {
Wale Ogunwale5f986092015-12-04 15:35:38 -08005279 final ActivityStack prevStack = task.stack;
5280 if (prevStack != null && prevStack != this) {
Wale Ogunwale06579d62016-04-30 15:29:06 -07005281 prevStack.removeTask(task, reason,
5282 toTop ? REMOVE_TASK_MODE_MOVING_TO_TOP : REMOVE_TASK_MODE_MOVING);
Wale Ogunwale5f986092015-12-04 15:35:38 -08005283 }
5284 return prevStack;
5285 }
5286
5287 private void postAddTask(TaskRecord task, ActivityStack prevStack) {
5288 if (prevStack != null) {
Andrii Kulian933076d2016-03-29 17:04:42 -07005289 mStackSupervisor.scheduleReportPictureInPictureModeChangedIfNeeded(task, prevStack);
Wale Ogunwale5f986092015-12-04 15:35:38 -08005290 } else if (task.voiceSession != null) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07005291 try {
5292 task.voiceSession.taskStarted(task.intent, task.taskId);
5293 } catch (RemoteException e) {
5294 }
5295 }
5296 }
5297
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07005298 void addConfigOverride(ActivityRecord r, TaskRecord task) {
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08005299 final Rect bounds = task.updateOverrideConfigurationFromLaunchBounds();
Amith Yamasani0af6fa72016-01-17 15:36:19 -08005300 // TODO: VI deal with activity
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07005301 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
5302 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Wale Ogunwale6cae7652015-12-26 07:36:26 -08005303 (r.info.flags & FLAG_SHOW_FOR_ALL_USERS) != 0, r.userId, r.info.configChanges,
5304 task.voiceSession != null, r.mLaunchTaskBehind, bounds, task.mOverrideConfig,
Yorke Lee0e852472016-06-15 10:03:18 -07005305 task.mResizeMode, r.isAlwaysFocusable(), task.isHomeTask(),
Jiaquan Hedd1e66f2016-06-15 15:15:12 -07005306 r.appInfo.targetSdkVersion, r.mRotationAnimationHint, task.isOnTopLauncher());
Wale Ogunwale706ed792015-08-02 10:29:44 -07005307 r.taskConfigOverride = task.mOverrideConfig;
5308 }
5309
Wale Ogunwaled046a012015-12-24 13:05:59 -08005310 void moveToFrontAndResumeStateIfNeeded(
5311 ActivityRecord r, boolean moveToFront, boolean setResume, String reason) {
5312 if (!moveToFront) {
5313 return;
Wale Ogunwale079a0042015-10-24 11:44:07 -07005314 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08005315
5316 // If the activity owns the last resumed activity, transfer that together,
5317 // so that we don't resume the same activity again in the new stack.
5318 // Apps may depend on onResume()/onPause() being called in pairs.
5319 if (setResume) {
5320 mResumedActivity = r;
5321 }
5322 // Move the stack in which we are placing the activity to the front. The call will also
5323 // make sure the activity focus is set.
5324 moveToFront(reason);
Wale Ogunwale079a0042015-10-24 11:44:07 -07005325 }
5326
5327 /**
5328 * Moves the input activity from its current stack to this one.
5329 * NOTE: The current task of the activity isn't moved to this stack. Instead a new task is
5330 * created on this stack which the activity is added to.
5331 * */
5332 void moveActivityToStack(ActivityRecord r) {
5333 final ActivityStack prevStack = r.task.stack;
5334 if (prevStack.mStackId == mStackId) {
5335 // You are already in the right stack silly...
5336 return;
5337 }
5338
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07005339 final boolean wasFocused = mStackSupervisor.isFocusedStack(prevStack)
Wale Ogunwale079a0042015-10-24 11:44:07 -07005340 && (mStackSupervisor.topRunningActivityLocked() == r);
5341 final boolean wasResumed = wasFocused && (prevStack.mResumedActivity == r);
5342
5343 final TaskRecord task = createTaskRecord(
Suprabh Shukla09a88f52015-12-02 14:36:31 -08005344 mStackSupervisor.getNextTaskIdForUserLocked(r.userId),
5345 r.info, r.intent, null, null, true);
Wale Ogunwale079a0042015-10-24 11:44:07 -07005346 r.setTask(task, null);
5347 task.addActivityToTop(r);
5348 setAppTask(r, task);
Andrii Kulian933076d2016-03-29 17:04:42 -07005349 mStackSupervisor.scheduleReportPictureInPictureModeChangedIfNeeded(task, prevStack);
Wale Ogunwaled046a012015-12-24 13:05:59 -08005350 moveToFrontAndResumeStateIfNeeded(r, wasFocused, wasResumed, "moveActivityToStack");
5351 if (wasResumed) {
5352 prevStack.mResumedActivity = null;
5353 }
Wale Ogunwale079a0042015-10-24 11:44:07 -07005354 }
5355
Wale Ogunwale706ed792015-08-02 10:29:44 -07005356 private void setAppTask(ActivityRecord r, TaskRecord task) {
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08005357 final Rect bounds = task.updateOverrideConfigurationFromLaunchBounds();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08005358 mWindowManager.setAppTask(r.appToken, task.taskId, mStackId, bounds, task.mOverrideConfig,
Jiaquan Hedd1e66f2016-06-15 15:15:12 -07005359 task.mResizeMode, task.isHomeTask(), task.isOnTopLauncher());
Wale Ogunwale706ed792015-08-02 10:29:44 -07005360 r.taskConfigOverride = task.mOverrideConfig;
5361 }
5362
Craig Mautnerc00204b2013-03-05 15:02:14 -08005363 public int getStackId() {
5364 return mStackId;
5365 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07005366
5367 @Override
5368 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07005369 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
5370 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07005371 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08005372
Craig Mautner15df08a2015-04-01 12:17:18 -07005373 void onLockTaskPackagesUpdatedLocked() {
5374 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5375 mTaskHistory.get(taskNdx).setLockTaskAuth();
5376 }
5377 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005378}