blob: b50783c7a83ff07183c369365eae52607628e876 [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;
Jorim Jaggiaf80db42016-04-07 19:19:15 -0700129import com.android.server.wm.WindowManagerService;
130
Craig Mautnercae015f2013-02-08 14:31:27 -0800131import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -0800132import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700133import java.lang.ref.WeakReference;
134import java.util.ArrayList;
135import java.util.Iterator;
136import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -0800137import java.util.Objects;
Wale Ogunwale540e1232015-05-01 15:35:39 -0700138import java.util.Set;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700139
140/**
141 * State and management of a single stack of activities.
142 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700143final class ActivityStack {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800144
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800145 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityStack" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700146 private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
147 private static final String TAG_APP = TAG + POSTFIX_APP;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800148 private static final String TAG_CLEANUP = TAG + POSTFIX_CLEANUP;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700149 private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700150 private static final String TAG_CONTAINERS = TAG + POSTFIX_CONTAINERS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700151 private static final String TAG_PAUSE = TAG + POSTFIX_PAUSE;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700152 private static final String TAG_RELEASE = TAG + POSTFIX_RELEASE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700153 private static final String TAG_RESULTS = TAG + POSTFIX_RESULTS;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700154 private static final String TAG_SAVED_STATE = TAG + POSTFIX_SAVED_STATE;
155 private static final String TAG_SCREENSHOTS = TAG + POSTFIX_SCREENSHOTS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700156 private static final String TAG_STACK = TAG + POSTFIX_STACK;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700157 private static final String TAG_STATES = TAG + POSTFIX_STATES;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700158 private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
159 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
160 private static final String TAG_TRANSITION = TAG + POSTFIX_TRANSITION;
161 private static final String TAG_USER_LEAVING = TAG + POSTFIX_USER_LEAVING;
162 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700163
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700164 // Ticks during which we check progress while waiting for an app to launch.
165 static final int LAUNCH_TICK = 500;
166
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700167 // How long we wait until giving up on the last activity to pause. This
168 // is short because it directly impacts the responsiveness of starting the
169 // next activity.
170 static final int PAUSE_TIMEOUT = 500;
171
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700172 // How long we wait for the activity to tell us it has stopped before
173 // giving up. This is a good amount of time because we really need this
174 // from the application in order to get its saved state.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700175 static final int STOP_TIMEOUT = 10 * 1000;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700176
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700177 // How long we wait until giving up on an activity telling us it has
178 // finished destroying itself.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700179 static final int DESTROY_TIMEOUT = 10 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800180
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700181 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800182 // disabled.
183 static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800184
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700185 // How long between activity launches that we consider safe to not warn
186 // the user about an unexpected activity being launched on top.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700187 static final long START_WARN_TIME = 5 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800188
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700189 // Set to false to disable the preview that is shown while a new activity
190 // is being started.
191 static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800192
Craig Mautner5eda9b32013-07-02 11:58:16 -0700193 // How long to wait for all background Activities to redraw following a call to
194 // convertToTranslucent().
195 static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
196
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -0800197 // How many activities have to be scheduled to stop to force a stop pass.
198 private static final int MAX_STOPPING_TO_FORCE = 3;
199
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700200 enum ActivityState {
201 INITIALIZING,
202 RESUMED,
203 PAUSING,
204 PAUSED,
205 STOPPING,
206 STOPPED,
207 FINISHING,
208 DESTROYING,
209 DESTROYED
210 }
211
Filip Gruszczynski0e381e22016-01-14 16:31:33 -0800212 // Stack is not considered visible.
213 static final int STACK_INVISIBLE = 0;
214 // Stack is considered visible
215 static final int STACK_VISIBLE = 1;
216 // Stack is considered visible, but only becuase it has activity that is visible behind other
217 // activities and there is a specific combination of stacks.
218 static final int STACK_VISIBLE_ACTIVITY_BEHIND = 2;
219
Wale Ogunwale06579d62016-04-30 15:29:06 -0700220 /* The various modes for the method {@link #removeTask}. */
221 // Task is being completely removed from all stacks in the system.
222 static final int REMOVE_TASK_MODE_DESTROYING = 0;
223 // Task is being removed from this stack so we can add it to another stack. In the case we are
224 // moving we don't want to perform some operations on the task like removing it from window
225 // manager or recents.
226 static final int REMOVE_TASK_MODE_MOVING = 1;
227 // Similar to {@link #REMOVE_TASK_MODE_MOVING} and the task will be added to the top of its new
228 // stack and the new stack will be on top of all stacks.
229 static final int REMOVE_TASK_MODE_MOVING_TO_TOP = 2;
230
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700231 final ActivityManagerService mService;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700232 final WindowManagerService mWindowManager;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800233 private final RecentTasks mRecentTasks;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800234
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700235 /**
236 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800237 * running) activities. It contains #TaskRecord objects.
238 */
Todd Kennedy39bfee52016-02-24 10:28:21 -0800239 private final ArrayList<TaskRecord> mTaskHistory = new ArrayList<>();
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800240
241 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700242 * List of running activities, sorted by recent usage.
243 * The first entry in the list is the least recently used.
244 * It contains HistoryRecord objects.
245 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800246 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700247
248 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700249 * Animations that for the current transition have requested not to
250 * be considered for the transition animation.
251 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800252 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700253
254 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700255 * When we are in the process of pausing an activity, before starting the
256 * next one, this variable holds the activity that is currently being paused.
257 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800258 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700259
260 /**
261 * This is the last activity that we put into the paused state. This is
262 * used to determine if we need to do an activity transition while sleeping,
263 * when we normally hold the top activity paused.
264 */
265 ActivityRecord mLastPausedActivity = null;
266
267 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700268 * Activities that specify No History must be removed once the user navigates away from them.
269 * If the device goes to sleep with such an activity in the paused state then we save it here
270 * and finish it later if another activity replaces it on wakeup.
271 */
272 ActivityRecord mLastNoHistoryActivity = null;
273
274 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700275 * Current activity that is resumed, or null if there is none.
276 */
277 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800278
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700279 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700280 * This is the last activity that has been started. It is only used to
281 * identify when multiple activities are started at once so that the user
282 * can be warned they may not be in the activity they think they are.
283 */
284 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800285
Craig Mautner5eda9b32013-07-02 11:58:16 -0700286 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
287 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
288 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
289 // Activity in mTranslucentActivityWaiting is notified via
290 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
291 // background activity being drawn then the same call will be made with a true value.
292 ActivityRecord mTranslucentActivityWaiting = null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700293 private ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent = new ArrayList<>();
Craig Mautner5eda9b32013-07-02 11:58:16 -0700294
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700295 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700296 * Set when we know we are going to be calling updateConfiguration()
297 * soon, so want to skip intermediate config checks.
298 */
299 boolean mConfigWillChange;
300
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700301 // Whether or not this stack covers the entire screen; by default stacks are fullscreen
Todd Kennedyaab56db2015-01-30 09:39:53 -0800302 boolean mFullscreen = true;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -0700303 // Current bounds of the stack or null if fullscreen.
304 Rect mBounds = null;
Todd Kennedyaab56db2015-01-30 09:39:53 -0800305
Jorim Jaggi192086e2016-03-11 17:17:03 +0100306 boolean mUpdateBoundsDeferred;
307 boolean mUpdateBoundsDeferredCalled;
308 final Rect mDeferredBounds = new Rect();
309 final Rect mDeferredTaskBounds = new Rect();
310 final Rect mDeferredTaskInsetBounds = new Rect();
311
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700312 long mLaunchStartTime = 0;
313 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800314
Craig Mautner858d8a62013-04-23 17:08:34 -0700315 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700316
Craig Mautnerc00204b2013-03-05 15:02:14 -0800317 final int mStackId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800318 final ActivityContainer mActivityContainer;
Craig Mautnere0a38842013-12-16 16:14:02 -0800319 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
320 ArrayList<ActivityStack> mStacks;
321 /** The attached Display's unique identifier, or -1 if detached */
322 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800323
Craig Mautner27084302013-03-25 08:05:25 -0700324 /** Run all ActivityStacks through this */
325 final ActivityStackSupervisor mStackSupervisor;
326
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700327 private final LaunchingTaskPositioner mTaskPositioner;
328
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700329 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700330 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
331 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
332 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
333 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700334 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Jose Lima4b6c6692014-08-12 17:41:12 -0700335 static final int RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG =
Craig Mautneree2e45a2014-06-27 12:10:03 -0700336 ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 7;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700337
338 static class ScheduleDestroyArgs {
339 final ProcessRecord mOwner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700340 final String mReason;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700341 ScheduleDestroyArgs(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700342 mOwner = owner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700343 mReason = reason;
344 }
345 }
346
Zoran Marcetaf958b322012-08-09 20:27:12 +0900347 final Handler mHandler;
348
349 final class ActivityStackHandler extends Handler {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800350
Craig Mautnerc8143c62013-09-03 12:15:57 -0700351 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900352 super(looper);
353 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700354
Zoran Marcetaf958b322012-08-09 20:27:12 +0900355 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700356 public void handleMessage(Message msg) {
357 switch (msg.what) {
358 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800359 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700360 // We don't at this point know if the activity is fullscreen,
361 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800362 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700363 synchronized (mService) {
364 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700365 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700366 }
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700367 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800368 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700369 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700370 case LAUNCH_TICK_MSG: {
371 ActivityRecord r = (ActivityRecord)msg.obj;
372 synchronized (mService) {
373 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700374 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700375 }
376 }
377 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700378 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800379 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700380 // We don't at this point know if the activity is fullscreen,
381 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800382 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800383 synchronized (mService) {
Craig Mautner299f9602015-01-26 09:47:33 -0800384 activityDestroyedLocked(r != null ? r.appToken : null, "destroyTimeout");
Craig Mautnerd2328952013-03-05 12:46:26 -0800385 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700386 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700387 case STOP_TIMEOUT_MSG: {
388 ActivityRecord r = (ActivityRecord)msg.obj;
389 // We don't at this point know if the activity is fullscreen,
390 // so we need to be conservative and assume it isn't.
391 Slog.w(TAG, "Activity stop timeout for " + r);
392 synchronized (mService) {
393 if (r.isInHistory()) {
394 activityStoppedLocked(r, null, null, null);
395 }
396 }
397 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700398 case DESTROY_ACTIVITIES_MSG: {
399 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
400 synchronized (mService) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700401 destroyActivitiesLocked(args.mOwner, args.mReason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700402 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700403 } break;
404 case TRANSLUCENT_TIMEOUT_MSG: {
405 synchronized (mService) {
406 notifyActivityDrawnLocked(null);
407 }
408 } break;
Jose Lima4b6c6692014-08-12 17:41:12 -0700409 case RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG: {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700410 synchronized (mService) {
Jose Lima4b6c6692014-08-12 17:41:12 -0700411 final ActivityRecord r = getVisibleBehindActivity();
412 Slog.e(TAG, "Timeout waiting for cancelVisibleBehind player=" + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700413 if (r != null) {
414 mService.killAppAtUsersRequest(r.app, null);
415 }
416 }
417 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700418 }
419 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800420 }
421
Craig Mautner34b73df2014-01-12 21:11:08 -0800422 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800423 int count = 0;
424 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
425 count += mTaskHistory.get(taskNdx).mActivities.size();
426 }
427 return count;
428 }
429
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800430 ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer,
431 RecentTasks recentTasks) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800432 mActivityContainer = activityContainer;
433 mStackSupervisor = activityContainer.getOuter();
434 mService = mStackSupervisor.mService;
435 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
436 mWindowManager = mService.mWindowManager;
437 mStackId = activityContainer.mStackId;
Fyodor Kupolovf63b89c2015-10-27 18:08:56 -0700438 mCurrentUser = mService.mUserController.getCurrentUserIdLocked();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800439 mRecentTasks = recentTasks;
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700440 mTaskPositioner = mStackId == FREEFORM_WORKSPACE_STACK_ID
441 ? new LaunchingTaskPositioner() : null;
442 }
443
444 void attachDisplay(ActivityStackSupervisor.ActivityDisplay activityDisplay, boolean onTop) {
445 mDisplayId = activityDisplay.mDisplayId;
446 mStacks = activityDisplay.mStacks;
447 mBounds = mWindowManager.attachStack(mStackId, activityDisplay.mDisplayId, onTop);
448 mFullscreen = mBounds == null;
449 if (mTaskPositioner != null) {
450 mTaskPositioner.setDisplay(activityDisplay.mDisplay);
451 mTaskPositioner.configure(mBounds);
452 }
Wale Ogunwale961f4852016-02-01 20:25:54 -0800453
454 if (mStackId == DOCKED_STACK_ID) {
455 // If we created a docked stack we want to resize it so it resizes all other stacks
456 // in the system.
457 mStackSupervisor.resizeDockedStackLocked(
458 mBounds, null, null, null, null, PRESERVE_WINDOWS);
459 }
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700460 }
461
462 void detachDisplay() {
463 mDisplayId = Display.INVALID_DISPLAY;
464 mStacks = null;
465 if (mTaskPositioner != null) {
466 mTaskPositioner.reset();
467 }
468 mWindowManager.detachStack(mStackId);
Jorim Jaggi899327f2016-02-25 20:44:18 -0500469 if (mStackId == DOCKED_STACK_ID) {
470 // If we removed a docked stack we want to resize it so it resizes all other stacks
471 // in the system to fullscreen.
472 mStackSupervisor.resizeDockedStackLocked(
473 null, null, null, null, null, PRESERVE_WINDOWS);
474 }
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700475 }
476
Winsonc809cbb2015-11-02 12:06:15 -0800477 public void getDisplaySize(Point out) {
478 mActivityContainer.mActivityDisplay.mDisplay.getSize(out);
479 }
480
Jorim Jaggi192086e2016-03-11 17:17:03 +0100481 /**
482 * Defers updating the bounds of the stack. If the stack was resized/repositioned while
483 * deferring, the bounds will update in {@link #continueUpdateBounds()}.
484 */
485 void deferUpdateBounds() {
486 if (!mUpdateBoundsDeferred) {
487 mUpdateBoundsDeferred = true;
488 mUpdateBoundsDeferredCalled = false;
489 }
490 }
491
492 /**
493 * Continues updating bounds after updates have been deferred. If there was a resize attempt
494 * between {@link #deferUpdateBounds()} and {@link #continueUpdateBounds()}, the stack will
495 * be resized to that bounds.
496 */
497 void continueUpdateBounds() {
498 final boolean wasDeferred = mUpdateBoundsDeferred;
499 mUpdateBoundsDeferred = false;
500 if (wasDeferred && mUpdateBoundsDeferredCalled) {
501 mStackSupervisor.resizeStackUncheckedLocked(this,
502 mDeferredBounds.isEmpty() ? null : mDeferredBounds,
503 mDeferredTaskBounds.isEmpty() ? null : mDeferredTaskBounds,
504 mDeferredTaskInsetBounds.isEmpty() ? null : mDeferredTaskInsetBounds);
505 }
506 }
507
508 boolean updateBoundsAllowed(Rect bounds, Rect tempTaskBounds,
509 Rect tempTaskInsetBounds) {
510 if (!mUpdateBoundsDeferred) {
511 return true;
512 }
513 if (bounds != null) {
514 mDeferredBounds.set(bounds);
515 } else {
516 mDeferredBounds.setEmpty();
517 }
518 if (tempTaskBounds != null) {
519 mDeferredTaskBounds.set(tempTaskBounds);
520 } else {
521 mDeferredTaskBounds.setEmpty();
522 }
523 if (tempTaskInsetBounds != null) {
524 mDeferredTaskInsetBounds.set(tempTaskInsetBounds);
525 } else {
526 mDeferredTaskInsetBounds.setEmpty();
527 }
528 mUpdateBoundsDeferredCalled = true;
529 return false;
530 }
531
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700532 void setBounds(Rect bounds) {
533 mBounds = mFullscreen ? null : new Rect(bounds);
Filip Gruszczynski9ac01a72015-09-04 11:12:17 -0700534 if (mTaskPositioner != null) {
535 mTaskPositioner.configure(bounds);
536 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700537 }
Craig Mautner5962b122012-10-05 14:45:52 -0700538
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700539 final ActivityRecord topRunningActivityLocked() {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800540 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700541 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked();
Craig Mautner6b74cb52013-09-27 17:02:21 -0700542 if (r != null) {
543 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800544 }
545 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700546 return null;
547 }
548
549 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800550 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
551 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800552 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800553 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
554 ActivityRecord r = activities.get(activityNdx);
Chong Zhang87761972016-08-22 13:53:24 -0700555 if (!r.finishing && !r.delayedResume && r != notTop && r.okToShowLocked()) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800556 return r;
557 }
558 }
559 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700560 return null;
561 }
562
563 /**
564 * This is a simplified version of topRunningActivityLocked that provides a number of
565 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800566 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700567 * @param token If non-null, any history records matching this token will be skipped.
568 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800569 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700570 * @return Returns the HistoryRecord of the next activity on the stack.
571 */
572 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800573 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
574 TaskRecord task = mTaskHistory.get(taskNdx);
575 if (task.taskId == taskId) {
576 continue;
577 }
578 ArrayList<ActivityRecord> activities = task.mActivities;
579 for (int i = activities.size() - 1; i >= 0; --i) {
580 final ActivityRecord r = activities.get(i);
581 // Note: the taskId check depends on real taskId fields being non-zero
Chong Zhang87761972016-08-22 13:53:24 -0700582 if (!r.finishing && (token != r.appToken) && r.okToShowLocked()) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800583 return r;
584 }
585 }
586 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700587 return null;
588 }
589
Craig Mautner8849a5e2013-04-02 16:41:03 -0700590 final ActivityRecord topActivity() {
Craig Mautner8849a5e2013-04-02 16:41:03 -0700591 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
592 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Craig Mautner0175b882014-09-07 18:05:31 -0700593 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
594 final ActivityRecord r = activities.get(activityNdx);
595 if (!r.finishing) {
596 return r;
597 }
Craig Mautner8849a5e2013-04-02 16:41:03 -0700598 }
599 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700600 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700601 }
602
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700603 final TaskRecord topTask() {
604 final int size = mTaskHistory.size();
605 if (size > 0) {
606 return mTaskHistory.get(size - 1);
607 }
608 return null;
609 }
610
Craig Mautnerd2328952013-03-05 12:46:26 -0800611 TaskRecord taskForIdLocked(int id) {
612 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
613 final TaskRecord task = mTaskHistory.get(taskNdx);
614 if (task.taskId == id) {
615 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800616 }
617 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700618 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700619 }
620
Craig Mautnerd2328952013-03-05 12:46:26 -0800621 ActivityRecord isInStackLocked(IBinder token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700622 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale60454db2015-01-23 16:05:07 -0800623 return isInStackLocked(r);
624 }
625
626 ActivityRecord isInStackLocked(ActivityRecord r) {
627 if (r == null) {
628 return null;
629 }
630 final TaskRecord task = r.task;
Wale Ogunwale7d701172015-03-11 15:36:30 -0700631 if (task != null && task.stack != null
632 && task.mActivities.contains(r) && mTaskHistory.contains(task)) {
Wale Ogunwale60454db2015-01-23 16:05:07 -0800633 if (task.stack != this) Slog.w(TAG,
Craig Mautnerd2328952013-03-05 12:46:26 -0800634 "Illegal state! task does not point to stack it is in.");
Wale Ogunwale60454db2015-01-23 16:05:07 -0800635 return r;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800636 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800637 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800638 }
639
Craig Mautner2420ead2013-04-01 17:13:20 -0700640 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700641 final boolean hadit = mLRUActivities.remove(r);
642 mLRUActivities.add(r);
643 return hadit;
644 }
645
Craig Mautnerde4ef022013-04-07 19:01:33 -0700646 final boolean isHomeStack() {
647 return mStackId == HOME_STACK_ID;
648 }
649
Winson Chung0583d3d2015-12-18 10:03:12 -0500650 final boolean isDockedStack() {
651 return mStackId == DOCKED_STACK_ID;
652 }
653
654 final boolean isPinnedStack() {
655 return mStackId == PINNED_STACK_ID;
656 }
657
Craig Mautnere0a38842013-12-16 16:14:02 -0800658 final boolean isOnHomeDisplay() {
659 return isAttached() &&
660 mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
661 }
662
Wale Ogunwaleeae451e2015-08-04 15:20:50 -0700663 void moveToFront(String reason) {
664 moveToFront(reason, null);
665 }
666
667 /**
668 * @param reason The reason for moving the stack to the front.
669 * @param task If non-null, the task will be moved to the top of the stack.
670 * */
671 void moveToFront(String reason, TaskRecord task) {
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700672 if (!isAttached()) {
673 return;
674 }
Wale Ogunwale925d0d12015-09-23 15:40:07 -0700675
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700676 mStacks.remove(this);
677 int addIndex = mStacks.size();
678
679 if (addIndex > 0) {
680 final ActivityStack topStack = mStacks.get(addIndex - 1);
Filip Gruszczynski114d5ca2015-12-04 09:05:00 -0800681 if (StackId.isAlwaysOnTop(topStack.mStackId) && topStack != this) {
682 // If the top stack is always on top, we move this stack just below it.
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700683 addIndex--;
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800684 }
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700685 }
686
687 mStacks.add(addIndex, this);
688
689 // TODO(multi-display): Needs to also work if focus is moving to the non-home display.
690 if (isOnHomeDisplay()) {
Wale Ogunwale4cea0f52015-12-25 06:30:31 -0800691 mStackSupervisor.setFocusStackUnchecked(reason, this);
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700692 }
693 if (task != null) {
694 insertTaskAtTop(task, null);
695 } else {
696 task = topTask();
697 }
698 if (task != null) {
699 mWindowManager.moveTaskToTop(task.taskId);
Craig Mautner4a1cb222013-12-04 16:14:06 -0800700 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800701 }
702
Jiaquan Hee13e9642016-06-15 15:16:13 -0700703 /**
704 * @param task If non-null, the task will be moved to the back of the stack.
705 * */
706 void moveToBack(TaskRecord task) {
707 if (!isAttached()) {
708 return;
709 }
710
711 mStacks.remove(this);
712 mStacks.add(0, this);
713
714 if (task != null) {
715 mTaskHistory.remove(task);
716 mTaskHistory.add(0, task);
717 updateTaskMovement(task, false);
718 mWindowManager.moveTaskToBottom(task.taskId);
719 }
720 }
721
Wale Ogunwaled046a012015-12-24 13:05:59 -0800722 boolean isFocusable() {
Wale Ogunwale4cea0f52015-12-25 06:30:31 -0800723 if (StackId.canReceiveKeys(mStackId)) {
724 return true;
725 }
726 // The stack isn't focusable. See if its top activity is focusable to force focus on the
727 // stack.
728 final ActivityRecord r = topRunningActivityLocked();
729 return r != null && r.isFocusable();
Wale Ogunwaled046a012015-12-24 13:05:59 -0800730 }
731
Craig Mautnere0a38842013-12-16 16:14:02 -0800732 final boolean isAttached() {
733 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800734 }
735
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700736 /**
Wale Ogunwale39381972015-12-17 17:15:29 -0800737 * Returns the top activity in any existing task matching the given Intent in the input result.
738 * Returns null if no such task is found.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700739 */
Wale Ogunwale39381972015-12-17 17:15:29 -0800740 void findTaskLocked(ActivityRecord target, FindTaskResult result) {
Craig Mautnerac6f8432013-07-17 13:24:59 -0700741 Intent intent = target.intent;
742 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700743 ComponentName cls = intent.getComponent();
744 if (info.targetActivity != null) {
745 cls = new ComponentName(info.packageName, info.targetActivity);
746 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700747 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautnerd00f4742014-03-12 14:17:26 -0700748 boolean isDocument = intent != null & intent.isDocument();
749 // If documentData is non-null then it must match the existing task data.
750 Uri documentData = isDocument ? intent.getData() : null;
Craig Mautner000f0022013-02-26 15:04:29 -0800751
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700752 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800753 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
754 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn91097de2014-04-04 18:02:06 -0700755 if (task.voiceSession != null) {
756 // We never match voice sessions; those always run independently.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700757 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": voice session");
Dianne Hackborn91097de2014-04-04 18:02:06 -0700758 continue;
759 }
Craig Mautnerac6f8432013-07-17 13:24:59 -0700760 if (task.userId != userId) {
761 // Looking for a different task.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700762 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700763 continue;
764 }
Craig Mautner000f0022013-02-26 15:04:29 -0800765 final ActivityRecord r = task.getTopActivity();
766 if (r == null || r.finishing || r.userId != userId ||
767 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700768 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800769 continue;
770 }
Chong Zhangb546f7e2015-08-05 14:21:36 -0700771 if (r.mActivityType != target.mActivityType) {
772 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch activity type");
773 continue;
774 }
Craig Mautner000f0022013-02-26 15:04:29 -0800775
Craig Mautnerd00f4742014-03-12 14:17:26 -0700776 final Intent taskIntent = task.intent;
777 final Intent affinityIntent = task.affinityIntent;
778 final boolean taskIsDocument;
779 final Uri taskDocumentData;
780 if (taskIntent != null && taskIntent.isDocument()) {
781 taskIsDocument = true;
782 taskDocumentData = taskIntent.getData();
783 } else if (affinityIntent != null && affinityIntent.isDocument()) {
784 taskIsDocument = true;
785 taskDocumentData = affinityIntent.getData();
786 } else {
787 taskIsDocument = false;
788 taskDocumentData = null;
789 }
790
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700791 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Comparing existing cls="
Craig Mautnerd00f4742014-03-12 14:17:26 -0700792 + taskIntent.getComponent().flattenToShortString()
Dianne Hackborn79228822014-09-16 11:11:23 -0700793 + "/aff=" + r.task.rootAffinity + " to new cls="
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700794 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Andrii Kulian206b9fa2016-06-02 13:18:01 -0700795 // TODO Refactor to remove duplications. Check if logic can be simplified.
796 if (taskIntent != null && taskIntent.getComponent() != null &&
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700797 taskIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700798 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700799 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800800 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700801 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
802 "For Intent " + intent + " bringing to top: " + r.intent);
Wale Ogunwale39381972015-12-17 17:15:29 -0800803 result.r = r;
804 result.matchedByRootAffinity = false;
805 break;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700806 } else if (affinityIntent != null && affinityIntent.getComponent() != null &&
807 affinityIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700808 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700809 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800810 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700811 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
812 "For Intent " + intent + " bringing to top: " + r.intent);
Wale Ogunwale39381972015-12-17 17:15:29 -0800813 result.r = r;
814 result.matchedByRootAffinity = false;
815 break;
Andrii Kulian206b9fa2016-06-02 13:18:01 -0700816 } else if (!isDocument && !taskIsDocument
817 && result.r == null && task.canMatchRootAffinity()) {
818 if (task.rootAffinity.equals(target.taskAffinity)) {
819 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching affinity candidate!");
820 // It is possible for multiple tasks to have the same root affinity especially
821 // if they are in separate stacks. We save off this candidate, but keep looking
822 // to see if there is a better candidate.
823 result.r = r;
824 result.matchedByRootAffinity = true;
825 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700826 } else if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700827 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700828 }
829
830 /**
831 * Returns the first activity (starting from the top of the stack) that
832 * is the same as the given activity. Returns null if no such activity
833 * is found.
834 */
Andrii Kuliand3bbb132016-06-16 16:00:20 -0700835 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info,
836 boolean compareIntentFilters) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700837 ComponentName cls = intent.getComponent();
838 if (info.targetActivity != null) {
839 cls = new ComponentName(info.packageName, info.targetActivity);
840 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700841 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700842
Craig Mautner000f0022013-02-26 15:04:29 -0800843 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700844 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautnerac6f8432013-07-17 13:24:59 -0700845 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700846
Craig Mautner000f0022013-02-26 15:04:29 -0800847 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
848 ActivityRecord r = activities.get(activityNdx);
Chong Zhang87761972016-08-22 13:53:24 -0700849 if (!r.okToShowLocked()) {
Wale Ogunwale25073dd2015-07-21 16:54:54 -0700850 continue;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700851 }
Andrii Kuliand3bbb132016-06-16 16:00:20 -0700852 if (!r.finishing && r.userId == userId) {
853 if (compareIntentFilters) {
854 if (r.intent.filterEquals(intent)) {
855 return r;
856 }
857 } else {
858 if (r.intent.getComponent().equals(cls)) {
859 return r;
860 }
861 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700862 }
863 }
864 }
865
866 return null;
867 }
868
Amith Yamasani742a6712011-05-04 14:49:28 -0700869 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700870 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700871 */
Craig Mautner93529a42013-10-04 15:03:13 -0700872 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800873 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700874 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800875 }
876 mCurrentUser = userId;
877
878 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800879 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800880 for (int i = 0; i < index; ) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700881 final TaskRecord task = mTaskHistory.get(i);
882
Chong Zhang87761972016-08-22 13:53:24 -0700883 if (task.okToShowLocked()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700884 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "switchUserLocked: stack=" + getStackId() +
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700885 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800886 mTaskHistory.remove(i);
887 mTaskHistory.add(task);
888 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800889 // Use same value for i.
890 } else {
891 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800892 }
893 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700894 }
895
Craig Mautner2420ead2013-04-01 17:13:20 -0700896 void minimalResumeActivityLocked(ActivityRecord r) {
Wale Ogunwale5658e4b2016-02-12 12:22:19 -0800897 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + r + " (starting new instance)"
898 + " callers=" + Debug.getCallers(5));
Chong Zhang6cda19c2016-06-14 19:07:56 -0700899 setResumedActivityLocked(r, "minimalResumeActivityLocked");
Craig Mautner2420ead2013-04-01 17:13:20 -0700900 completeResumeLocked(r);
Craig Mautner1e8b8722013-10-14 18:24:52 -0700901 setLaunchTime(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700902 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
903 "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700904 }
905
Filip Gruszczynski3d82ed62015-12-10 10:41:39 -0800906 void addRecentActivityLocked(ActivityRecord r) {
Chong Zhang45c25ce2015-08-10 22:18:26 -0700907 if (r != null) {
908 mRecentTasks.addLocked(r.task);
909 r.task.touchActiveTime();
910 }
911 }
912
Narayan Kamath7829c812015-06-08 17:39:43 +0100913 private void startLaunchTraces(String packageName) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700914 if (mFullyDrawnStartTime != 0) {
915 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
916 }
Narayan Kamath7829c812015-06-08 17:39:43 +0100917 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching: " + packageName, 0);
Dianne Hackborncee04b52013-07-03 17:01:28 -0700918 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
919 }
920
921 private void stopFullyDrawnTraceIfNeeded() {
922 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
923 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
924 mFullyDrawnStartTime = 0;
925 }
926 }
927
Craig Mautnere79d42682013-04-01 19:01:53 -0700928 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700929 if (r.displayStartTime == 0) {
930 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
931 if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100932 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700933 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700934 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700935 } else if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100936 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700937 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700938 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700939 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800940
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700941 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700942 // Make sure that there is no activity waiting for this to launch.
943 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
944 r.displayStartTime = r.fullyDrawnStartTime = 0;
945 } else {
946 mStackSupervisor.removeTimeoutsForActivityLocked(r);
947 mStackSupervisor.scheduleIdleTimeoutLocked(r);
948 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700949 }
950
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800951 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800952 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800953 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
954 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
955 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
956 activities.get(activityNdx).setSleeping(false);
957 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800958 }
Craig Mautnerf49b0a42014-11-20 15:06:40 -0800959 if (mPausingActivity != null) {
960 Slog.d(TAG, "awakeFromSleepingLocked: previously pausing activity didn't pause");
961 activityPausedLocked(mPausingActivity.appToken, true);
962 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800963 }
964
Todd Kennedy39bfee52016-02-24 10:28:21 -0800965 void updateActivityApplicationInfoLocked(ApplicationInfo aInfo) {
966 final String packageName = aInfo.packageName;
967 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
968 final List<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
969 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
970 if (packageName.equals(activities.get(activityNdx).packageName)) {
971 activities.get(activityNdx).info.applicationInfo = aInfo;
972 }
973 }
974 }
975 }
976
Craig Mautner0eea92c2013-05-16 13:35:39 -0700977 /**
978 * @return true if something must be done before going to sleep.
979 */
980 boolean checkReadyForSleepLocked() {
981 if (mResumedActivity != null) {
982 // Still have something resumed; can't sleep until it is paused.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700983 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep needs to pause " + mResumedActivity);
984 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
985 "Sleep => pause with userLeaving=false");
Wale Ogunwale950faff2016-08-08 09:51:04 -0700986 startPausingLocked(false, true, null, false);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700987 return true;
988 }
989 if (mPausingActivity != null) {
990 // Still waiting for something to pause; can't sleep yet.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700991 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still waiting to pause " + mPausingActivity);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700992 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800993 }
994
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700995 if (hasVisibleBehindActivity()) {
996 // Stop visible behind activity before going to sleep.
Wale Ogunwale1f544be2015-12-17 10:27:23 -0800997 final ActivityRecord r = getVisibleBehindActivity();
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700998 mStackSupervisor.mStoppingActivities.add(r);
Wale Ogunwale1f544be2015-12-17 10:27:23 -0800999 if (DEBUG_STATES) Slog.v(TAG_STATES, "Sleep still waiting to stop visible behind " + r);
Wale Ogunwale5c42e502015-04-08 09:18:54 -07001000 return true;
1001 }
1002
Craig Mautner0eea92c2013-05-16 13:35:39 -07001003 return false;
1004 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001005
Craig Mautner0eea92c2013-05-16 13:35:39 -07001006 void goToSleep() {
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07001007 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001008
Andrii Kulianf9949d52016-05-06 12:53:25 -07001009 // Make sure any paused or stopped but visible activities are now sleeping.
Craig Mautner0eea92c2013-05-16 13:35:39 -07001010 // This ensures that the activity's onStop() is called.
1011 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1012 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1013 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1014 final ActivityRecord r = activities.get(activityNdx);
Andrii Kulianf9949d52016-05-06 12:53:25 -07001015 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED
1016 || r.state == ActivityState.PAUSED || r.state == ActivityState.PAUSING) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07001017 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001018 }
1019 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001020 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001021 }
Craig Mautner59c00972012-07-30 12:10:24 -07001022
Winson8b1871d2015-11-20 09:56:20 -08001023 public final Bitmap screenshotActivitiesLocked(ActivityRecord who) {
1024 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "screenshotActivitiesLocked: " + who);
Dianne Hackbornff801ec2011-01-22 18:05:38 -08001025 if (who.noDisplay) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001026 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tNo display");
Dianne Hackbornff801ec2011-01-22 18:05:38 -08001027 return null;
1028 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001029
Winson Chung083baf92014-07-11 10:32:42 -07001030 if (isHomeStack()) {
Winson Chung376543b2014-05-21 17:43:28 -07001031 // This is an optimization -- since we never show Home or Recents within Recents itself,
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -08001032 // we can just go ahead and skip taking the screenshot if this is the home stack.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001033 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tHome stack");
Dianne Hackborn4d03fe62013-10-04 17:26:37 -07001034 return null;
1035 }
1036
Winson Chung48a10a52014-08-27 14:36:51 -07001037 int w = mService.mThumbnailWidth;
1038 int h = mService.mThumbnailHeight;
Winson8b1871d2015-11-20 09:56:20 -08001039 float scale = 1f;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08001040 if (w > 0) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001041 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tTaking screenshot");
Winson8b1871d2015-11-20 09:56:20 -08001042
1043 // When this flag is set, we currently take the fullscreen screenshot of the activity
Winson387aac62015-11-25 11:18:56 -08001044 // but scaled to half the size. This gives us a "good-enough" fullscreen thumbnail to
1045 // use within SystemUI while keeping memory usage low.
Winson Chungead5c0f2015-12-14 11:18:57 -05001046 if (ActivityManagerService.TAKE_FULLSCREEN_SCREENSHOTS) {
Winson8b1871d2015-11-20 09:56:20 -08001047 w = h = -1;
Winson21700932016-03-24 17:26:23 -07001048 scale = mService.mFullscreenThumbnailScale;
Winson8b1871d2015-11-20 09:56:20 -08001049 }
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -08001050 return mWindowManager.screenshotApplications(who.appToken, Display.DEFAULT_DISPLAY,
Winson8b1871d2015-11-20 09:56:20 -08001051 w, h, scale);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08001052 }
Winson Chung376543b2014-05-21 17:43:28 -07001053 Slog.e(TAG, "Invalid thumbnail dimensions: " + w + "x" + h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08001054 return null;
1055 }
1056
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001057 /**
1058 * Start pausing the currently resumed activity. It is an error to call this if there
1059 * is already an activity being paused or there is no resumed activity.
1060 *
1061 * @param userLeaving True if this should result in an onUserLeaving to the current activity.
1062 * @param uiSleeping True if this is happening with the user interface going to sleep (the
1063 * screen turning off).
Wale Ogunwale950faff2016-08-08 09:51:04 -07001064 * @param resuming The activity we are currently trying to resume or null if this is not being
1065 * called as part of resuming the top activity, so we shouldn't try to instigate
1066 * a resume here if not null.
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001067 * @param dontWait True if the caller does not want to wait for the pause to complete. If
1068 * set to true, we will immediately complete the pause here before returning.
1069 * @return Returns true if an activity now is in the PAUSING state, and we are waiting for
1070 * it to tell us when it is done.
1071 */
Wale Ogunwale950faff2016-08-08 09:51:04 -07001072 final boolean startPausingLocked(boolean userLeaving, boolean uiSleeping,
1073 ActivityRecord resuming, boolean dontWait) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001074 if (mPausingActivity != null) {
riddle_hsu7dfe4d72015-02-16 18:43:49 +08001075 Slog.wtf(TAG, "Going to pause when pause is already pending for " + mPausingActivity
1076 + " state=" + mPausingActivity.state);
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07001077 if (!mService.isSleepingLocked()) {
riddle_hsu7dfe4d72015-02-16 18:43:49 +08001078 // Avoid recursion among check for sleep and complete pause during sleeping.
1079 // Because activity will be paused immediately after resume, just let pause
1080 // be completed by the order of activity paused from clients.
Wale Ogunwale950faff2016-08-08 09:51:04 -07001081 completePauseLocked(false, resuming);
riddle_hsu7dfe4d72015-02-16 18:43:49 +08001082 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001083 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001084 ActivityRecord prev = mResumedActivity;
1085 if (prev == null) {
Wale Ogunwale950faff2016-08-08 09:51:04 -07001086 if (resuming == null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001087 Slog.wtf(TAG, "Trying to pause when nothing is resumed");
Wale Ogunwaled046a012015-12-24 13:05:59 -08001088 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001089 }
1090 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001091 }
Craig Mautnerdf88d732014-01-27 09:21:32 -08001092
1093 if (mActivityContainer.mParentActivity == null) {
1094 // Top level stack, not a child. Look for child stacks.
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001095 mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping, resuming, dontWait);
Craig Mautnerdf88d732014-01-27 09:21:32 -08001096 }
1097
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001098 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSING: " + prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001099 else if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001100 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001101 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001102 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -07001103 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
1104 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001105 prev.state = ActivityState.PAUSING;
1106 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001107 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -07001108 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
Wale Ogunwale979f5ed2015-10-12 11:22:50 -07001109 if (mService.mHasRecents
1110 && (next == null || next.noDisplay || next.task != prev.task || uiSleeping)) {
Jorim Jaggic2f262b2015-12-07 16:59:10 -08001111 prev.mUpdateTaskThumbnailWhenHidden = true;
Craig Mautner6f6d56f2013-10-24 16:02:07 -07001112 }
Dianne Hackborncee04b52013-07-03 17:01:28 -07001113 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001114
1115 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -08001116
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001117 if (prev.app != null && prev.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001118 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending pause: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001119 try {
1120 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07001121 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001122 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -07001123 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001124 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001125 userLeaving, prev.configChangeFlags, dontWait);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001126 } catch (Exception e) {
1127 // Ignore exception, if process died other code will cleanup.
1128 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001129 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001130 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07001131 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001132 }
1133 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001134 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001135 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07001136 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001137 }
1138
1139 // If we are not going to sleep, we want to ensure the device is
1140 // awake until the next activity is started.
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07001141 if (!uiSleeping && !mService.isSleepingOrShuttingDownLocked()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -07001142 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001143 }
1144
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001145 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001146 // Have the window manager pause its key dispatching until the new
1147 // activity has started. If we're pausing the activity just because
1148 // the screen is being turned off and the UI is sleeping, don't interrupt
1149 // key dispatch; the same activity will pick it up again on wakeup.
1150 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001151 prev.pauseKeyDispatchingLocked();
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001152 } else if (DEBUG_PAUSE) {
1153 Slog.v(TAG_PAUSE, "Key dispatch not paused for screen off");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001154 }
1155
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001156 if (dontWait) {
1157 // If the caller said they don't want to wait for the pause, then complete
1158 // the pause now.
Wale Ogunwale950faff2016-08-08 09:51:04 -07001159 completePauseLocked(false, resuming);
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001160 return false;
1161
1162 } else {
1163 // Schedule a pause timeout in case the app doesn't respond.
1164 // We don't give it much time because this directly impacts the
1165 // responsiveness seen by the user.
1166 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
1167 msg.obj = prev;
1168 prev.pauseTime = SystemClock.uptimeMillis();
1169 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001170 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Waiting for pause to complete...");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001171 return true;
1172 }
1173
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001174 } else {
1175 // This activity failed to schedule the
1176 // pause, so just treat it as being paused now.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001177 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Activity not running, resuming next.");
Wale Ogunwale950faff2016-08-08 09:51:04 -07001178 if (resuming == null) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001179 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001180 }
1181 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001182 }
1183 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001184
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001185 final void activityPausedLocked(IBinder token, boolean timeout) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001186 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1187 "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001188
Craig Mautnerd2328952013-03-05 12:46:26 -08001189 final ActivityRecord r = isInStackLocked(token);
1190 if (r != null) {
1191 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
1192 if (mPausingActivity == r) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001193 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSED: " + r
Craig Mautnerd2328952013-03-05 12:46:26 -08001194 + (timeout ? " (due to timeout)" : " (pause complete)"));
Wale Ogunwale950faff2016-08-08 09:51:04 -07001195 completePauseLocked(true, null);
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001196 return;
Craig Mautnerd2328952013-03-05 12:46:26 -08001197 } else {
1198 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
1199 r.userId, System.identityHashCode(r), r.shortComponentName,
1200 mPausingActivity != null
1201 ? mPausingActivity.shortComponentName : "(none)");
riddle_hsu9caeef72015-10-20 16:34:05 +08001202 if (r.state == ActivityState.PAUSING) {
1203 r.state = ActivityState.PAUSED;
1204 if (r.finishing) {
1205 if (DEBUG_PAUSE) Slog.v(TAG,
1206 "Executing finish of failed to pause activity: " + r);
1207 finishCurrentActivityLocked(r, FINISH_AFTER_VISIBLE, false);
1208 }
louis_chang047dfd42015-04-08 16:35:55 +08001209 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001210 }
1211 }
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001212 mStackSupervisor.ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001213 }
1214
Chong Zhangd78ddb42016-03-02 17:01:14 -08001215 final void activityResumedLocked(IBinder token) {
1216 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
1217 if (DEBUG_SAVED_STATE) Slog.i(TAG_STATES, "Resumed activity; dropping state of: " + r);
1218 r.icicle = null;
1219 r.haveState = false;
1220 }
1221
Craig Mautnera0026042014-04-23 11:45:37 -07001222 final void activityStoppedLocked(ActivityRecord r, Bundle icicle,
1223 PersistableBundle persistentState, CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07001224 if (r.state != ActivityState.STOPPING) {
1225 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
1226 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
1227 return;
1228 }
Craig Mautner21d24a22014-04-23 11:45:37 -07001229 if (persistentState != null) {
1230 r.persistentState = persistentState;
1231 mService.notifyTaskPersisterLocked(r.task, false);
1232 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001233 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001234 if (icicle != null) {
1235 // If icicle is null, this is happening due to a timeout, so we
1236 // haven't really saved the state.
1237 r.icicle = icicle;
1238 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -08001239 r.launchCount = 0;
Winson Chung740c3ac2014-11-12 16:14:38 -08001240 r.updateThumbnailLocked(null, description);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001241 }
1242 if (!r.stopped) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001243 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to STOPPED: " + r + " (stop complete)");
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001244 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
1245 r.stopped = true;
1246 r.state = ActivityState.STOPPED;
Robert Carre12aece2016-02-02 22:43:27 -08001247
Chong Zhang45e6d2d2016-07-20 18:33:56 -07001248 mWindowManager.notifyAppStopped(r.appToken);
Robert Carre12aece2016-02-02 22:43:27 -08001249
Wale Ogunwale1f544be2015-12-17 10:27:23 -08001250 if (getVisibleBehindActivity() == r) {
Jose Lima4b6c6692014-08-12 17:41:12 -07001251 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001252 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -07001253 if (r.finishing) {
1254 r.clearOptionsLocked();
1255 } else {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08001256 if (r.deferRelaunchUntilPaused) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07001257 destroyActivityLocked(r, true, "stop-config");
Wale Ogunwaled046a012015-12-24 13:05:59 -08001258 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001259 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -07001260 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -08001261 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001262 }
1263 }
1264 }
1265
Wale Ogunwale950faff2016-08-08 09:51:04 -07001266 private void completePauseLocked(boolean resumeNext, ActivityRecord resuming) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001267 ActivityRecord prev = mPausingActivity;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001268 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -08001269
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001270 if (prev != null) {
Filip Gruszczynskidba623a2015-12-04 15:45:35 -08001271 final boolean wasStopping = prev.state == ActivityState.STOPPING;
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001272 prev.state = ActivityState.PAUSED;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001273 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001274 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001275 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001276 } else if (prev.app != null) {
Wale Ogunwaled8026642016-02-09 20:40:18 -08001277 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueue pending stop if needed: " + prev
1278 + " wasStopping=" + wasStopping + " visible=" + prev.visible);
Craig Mautner8c14c152015-01-15 17:32:07 -08001279 if (mStackSupervisor.mWaitingVisibleActivities.remove(prev)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001280 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1281 "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001282 }
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08001283 if (prev.deferRelaunchUntilPaused) {
1284 // Complete the deferred relaunch that was waiting for pause to complete.
1285 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Re-launching after pause: " + prev);
1286 relaunchActivityLocked(prev, prev.configChangeFlags, false,
1287 prev.preserveWindowOnDeferredRelaunch);
Filip Gruszczynskidba623a2015-12-04 15:45:35 -08001288 } else if (wasStopping) {
1289 // We are also stopping, the stop request must have gone soon after the pause.
1290 // We can't clobber it, because the stop confirmation will not be handled.
1291 // We don't need to schedule another stop, we only need to let it happen.
1292 prev.state = ActivityState.STOPPING;
Wale Ogunwaled8026642016-02-09 20:40:18 -08001293 } else if ((!prev.visible && !hasVisibleBehindActivity())
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07001294 || mService.isSleepingOrShuttingDownLocked()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07001295 // If we were visible then resumeTopActivities will release resources before
Craig Mautneree2e45a2014-06-27 12:10:03 -07001296 // stopping.
Chong Zhang46b1ac62016-02-18 17:53:57 -08001297 addToStopping(prev, true /* immediate */);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001298 }
1299 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001300 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "App died during pause, not stopping: " + prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001301 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001302 }
Wale Ogunwale07927bf2015-03-28 17:21:05 -07001303 // It is possible the activity was freezing the screen before it was paused.
1304 // In that case go ahead and remove the freeze this activity has on the screen
1305 // since it is no longer visible.
Wale Ogunwalee8524002016-09-13 16:34:57 -07001306 if (prev != null) {
1307 prev.stopFreezingScreenLocked(true /*force*/);
1308 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001309 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001310 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001311
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001312 if (resumeNext) {
1313 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07001314 if (!mService.isSleepingOrShuttingDownLocked()) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001315 mStackSupervisor.resumeFocusedStackTopActivityLocked(topStack, prev, null);
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001316 } else {
1317 mStackSupervisor.checkReadyForSleepLocked();
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001318 ActivityRecord top = topStack.topRunningActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001319 if (top == null || (prev != null && top != prev)) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001320 // If there are no more activities available to run, do resume anyway to start
1321 // something. Also if the top activity on the stack is not the just paused
1322 // activity, we need to go ahead and resume it to ensure we complete an
1323 // in-flight app switch.
1324 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001325 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07001326 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001327 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001328
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001329 if (prev != null) {
1330 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001331
Craig Mautner525f3d92013-05-07 14:01:50 -07001332 if (prev.app != null && prev.cpuTimeAtResume > 0
1333 && mService.mBatteryStatsService.isOnBattery()) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001334 long diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
1335 - prev.cpuTimeAtResume;
Craig Mautner525f3d92013-05-07 14:01:50 -07001336 if (diff > 0) {
1337 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
1338 synchronized (bsi) {
1339 BatteryStatsImpl.Uid.Proc ps =
1340 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -07001341 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -07001342 if (ps != null) {
1343 ps.addForegroundTimeLocked(diff);
1344 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001345 }
1346 }
1347 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001348 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001349 }
Winson Chung740c3ac2014-11-12 16:14:38 -08001350
Andrii Kulian8290f8f2016-06-30 17:51:32 -07001351 // Notify when the task stack has changed, but only if visibilities changed (not just
1352 // focus). Also if there is an active pinned stack - we always want to notify it about
1353 // task stack changes, because its positioning may depend on it.
1354 if (mStackSupervisor.mAppVisibilitiesChangedSinceLastPause
1355 || mService.mStackSupervisor.getStack(PINNED_STACK_ID) != null) {
Jorim Jaggia0fdeec2016-01-07 14:42:28 +01001356 mService.notifyTaskStackChangedLocked();
1357 mStackSupervisor.mAppVisibilitiesChangedSinceLastPause = false;
1358 }
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001359
Wale Ogunwale950faff2016-08-08 09:51:04 -07001360 mStackSupervisor.ensureActivitiesVisibleLocked(resuming, 0, !PRESERVE_WINDOWS);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001361 }
1362
Chong Zhang46b1ac62016-02-18 17:53:57 -08001363 private void addToStopping(ActivityRecord r, boolean immediate) {
1364 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1365 mStackSupervisor.mStoppingActivities.add(r);
1366 }
1367
1368 // If we already have a few activities waiting to stop, then give up
1369 // on things going idle and start clearing them out. Or if r is the
1370 // last of activity of the last task the stack will be empty and must
1371 // be cleared immediately.
1372 boolean forceIdle = mStackSupervisor.mStoppingActivities.size() > MAX_STOPPING_TO_FORCE
1373 || (r.frontOfTask && mTaskHistory.size() <= 1);
1374
1375 if (immediate || forceIdle) {
1376 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Scheduling idle now: forceIdle="
1377 + forceIdle + "immediate=" + immediate);
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -08001378 mStackSupervisor.scheduleIdleLocked();
1379 } else {
1380 mStackSupervisor.checkReadyForSleepLocked();
1381 }
1382 }
1383
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001384 /**
1385 * Once we know that we have asked an application to put an activity in
1386 * the resumed state (either by launching it or explicitly telling it),
1387 * this function updates the rest of our state to match that fact.
1388 */
Craig Mautner525f3d92013-05-07 14:01:50 -07001389 private void completeResumeLocked(ActivityRecord next) {
Chong Zhang2b79af12016-02-10 18:47:06 -08001390 next.visible = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001391 next.idle = false;
1392 next.results = null;
1393 next.newIntents = null;
Chong Zhang2b79af12016-02-10 18:47:06 -08001394 next.stopped = false;
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001395
Chong Zhang85ee6542015-10-02 13:36:38 -07001396 if (next.isHomeActivity()) {
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001397 ProcessRecord app = next.task.mActivities.get(0).app;
1398 if (app != null && app != mService.mHomeProcess) {
1399 mService.mHomeProcess = app;
1400 }
1401 }
1402
Craig Mautner07566322013-09-26 16:42:55 -07001403 if (next.nowVisible) {
1404 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
Chong Zhang5022da32016-06-21 16:31:37 -07001405 mStackSupervisor.reportActivityVisibleLocked(next);
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02001406 mStackSupervisor.notifyActivityDrawnForKeyguard();
Craig Mautner07566322013-09-26 16:42:55 -07001407 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001408
1409 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -07001410 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001411
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001412 mStackSupervisor.reportResumedActivityLocked(next);
1413
1414 next.resumeKeyDispatchingLocked();
1415 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001416
1417 // Mark the point when the activity is resuming
1418 // TODO: To be more accurate, the mark should be before the onCreate,
1419 // not after the onResume. But for subsequent starts, onResume is fine.
1420 if (next.app != null) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001421 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001422 } else {
1423 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1424 }
Winson Chung376543b2014-05-21 17:43:28 -07001425
George Mount6ba042b2014-07-28 11:12:28 -07001426 next.returningOptions = null;
Craig Mautner64ccb702014-10-01 09:38:40 -07001427
Wale Ogunwale1f544be2015-12-17 10:27:23 -08001428 if (getVisibleBehindActivity() == next) {
Craig Mautner64ccb702014-10-01 09:38:40 -07001429 // When resuming an activity, require it to call requestVisibleBehind() again.
Wale Ogunwale1f544be2015-12-17 10:27:23 -08001430 setVisibleBehindActivity(null);
Craig Mautner64ccb702014-10-01 09:38:40 -07001431 }
Chong Zhang6cda19c2016-06-14 19:07:56 -07001432 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001433 }
1434
Craig Mautner2568c3a2015-03-26 14:22:34 -07001435 private void setVisible(ActivityRecord r, boolean visible) {
Craig Mautnere3a00d72014-04-16 08:31:19 -07001436 r.visible = visible;
Jorim Jaggic2f262b2015-12-07 16:59:10 -08001437 if (!visible && r.mUpdateTaskThumbnailWhenHidden) {
1438 r.updateThumbnailLocked(r.task.stack.screenshotActivitiesLocked(r), null);
1439 r.mUpdateTaskThumbnailWhenHidden = false;
1440 }
Craig Mautnere3a00d72014-04-16 08:31:19 -07001441 mWindowManager.setAppVisibility(r.appToken, visible);
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001442 final ArrayList<ActivityContainer> containers = r.mChildContainers;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001443 for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001444 ActivityContainer container = containers.get(containerNdx);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001445 container.setVisible(visible);
1446 }
Jorim Jaggia0fdeec2016-01-07 14:42:28 +01001447 mStackSupervisor.mAppVisibilitiesChangedSinceLastPause = true;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001448 }
1449
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001450 // Find the first visible activity above the passed activity and if it is translucent return it
1451 // otherwise return null;
1452 ActivityRecord findNextTranslucentActivity(ActivityRecord r) {
1453 TaskRecord task = r.task;
1454 if (task == null) {
1455 return null;
1456 }
1457
1458 ActivityStack stack = task.stack;
1459 if (stack == null) {
1460 return null;
1461 }
1462
1463 int stackNdx = mStacks.indexOf(stack);
1464
1465 ArrayList<TaskRecord> tasks = stack.mTaskHistory;
1466 int taskNdx = tasks.indexOf(task);
1467
1468 ArrayList<ActivityRecord> activities = task.mActivities;
1469 int activityNdx = activities.indexOf(r) + 1;
1470
1471 final int numStacks = mStacks.size();
1472 while (stackNdx < numStacks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001473 final ActivityStack historyStack = mStacks.get(stackNdx);
Todd Kennedyaab56db2015-01-30 09:39:53 -08001474 tasks = historyStack.mTaskHistory;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001475 final int numTasks = tasks.size();
1476 while (taskNdx < numTasks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001477 final TaskRecord currentTask = tasks.get(taskNdx);
1478 activities = currentTask.mActivities;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001479 final int numActivities = activities.size();
1480 while (activityNdx < numActivities) {
1481 final ActivityRecord activity = activities.get(activityNdx);
1482 if (!activity.finishing) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001483 return historyStack.mFullscreen
1484 && currentTask.mFullscreen && activity.fullscreen ? null : activity;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001485 }
1486 ++activityNdx;
1487 }
1488 activityNdx = 0;
1489 ++taskNdx;
1490 }
1491 taskNdx = 0;
1492 ++stackNdx;
1493 }
1494
1495 return null;
1496 }
1497
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08001498 ActivityStack getNextFocusableStackLocked() {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001499 ArrayList<ActivityStack> stacks = mStacks;
1500 final ActivityRecord parent = mActivityContainer.mParentActivity;
1501 if (parent != null) {
1502 stacks = parent.task.stack.mStacks;
1503 }
1504 if (stacks != null) {
1505 for (int i = stacks.size() - 1; i >= 0; --i) {
1506 ActivityStack stack = stacks.get(i);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001507 if (stack != this && stack.isFocusable()
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001508 && stack.getStackVisibilityLocked(null) != STACK_INVISIBLE) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001509 return stack;
1510 }
1511 }
1512 }
1513 return null;
1514 }
1515
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001516 /** Returns true if the stack contains a fullscreen task. */
1517 private boolean hasFullscreenTask() {
1518 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
1519 final TaskRecord task = mTaskHistory.get(i);
1520 if (task.mFullscreen) {
1521 return true;
1522 }
1523 }
1524 return false;
1525 }
1526
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001527 /**
1528 * Returns true if the stack is translucent and can have other contents visible behind it if
1529 * needed. A stack is considered translucent if it don't contain a visible or
1530 * starting (about to be visible) activity that is fullscreen (opaque).
1531 * @param starting The currently starting activity or null if there is none.
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001532 * @param stackBehindId The id of the stack directly behind this one.
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001533 */
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001534 private boolean isStackTranslucent(ActivityRecord starting, int stackBehindId) {
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001535 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1536 final TaskRecord task = mTaskHistory.get(taskNdx);
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001537 final ArrayList<ActivityRecord> activities = task.mActivities;
1538 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1539 final ActivityRecord r = activities.get(activityNdx);
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001540
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001541 if (r.finishing) {
1542 // We don't factor in finishing activities when determining translucency since
1543 // they will be gone soon.
1544 continue;
1545 }
1546
1547 if (!r.visible && r != starting) {
1548 // Also ignore invisible activities that are not the currently starting
1549 // activity (about to be visible).
1550 continue;
1551 }
1552
1553 if (r.fullscreen) {
1554 // Stack isn't translucent if it has at least one fullscreen activity
1555 // that is visible.
1556 return false;
1557 }
1558
1559 if (!isHomeStack() && r.frontOfTask
1560 && task.isOverHomeStack() && stackBehindId != HOME_STACK_ID) {
1561 // Stack isn't translucent if it's top activity should have the home stack
1562 // behind it and the stack currently behind it isn't the home stack.
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001563 return false;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001564 }
1565 }
1566 }
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001567 return true;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001568 }
1569
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001570 /**
1571 * Returns stack's visibility: {@link #STACK_INVISIBLE}, {@link #STACK_VISIBLE} or
1572 * {@link #STACK_VISIBLE_ACTIVITY_BEHIND}.
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001573 * @param starting The currently starting activity or null if there is none.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001574 */
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001575 int getStackVisibilityLocked(ActivityRecord starting) {
Jose Lima7ba71252014-04-30 12:59:27 -07001576 if (!isAttached()) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001577 return STACK_INVISIBLE;
Jose Lima7ba71252014-04-30 12:59:27 -07001578 }
1579
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07001580 if (mStackSupervisor.isFrontStack(this) || mStackSupervisor.isFocusedStack(this)) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001581 return STACK_VISIBLE;
Wale Ogunwale99db1862015-10-23 20:08:22 -07001582 }
1583
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001584 final int stackIndex = mStacks.indexOf(this);
1585
1586 if (stackIndex == mStacks.size() - 1) {
1587 Slog.wtf(TAG,
1588 "Stack=" + this + " isn't front stack but is at the top of the stack list");
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001589 return STACK_INVISIBLE;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001590 }
1591
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001592 final ActivityStack focusedStack = mStackSupervisor.getFocusedStack();
1593 final int focusedStackId = focusedStack.mStackId;
1594
Jiaquan He9bc01a82016-07-08 10:29:38 -07001595 final TaskRecord topFocusedTask = focusedStack.topTask();
1596 final boolean isOnTopLauncherFocused = topFocusedTask != null &&
1597 topFocusedTask.isOnTopLauncher();
1598 if (isOnTopLauncherFocused) {
1599 // When an on-top launcher is focused, we should find out whether the freeform stack or
1600 // the fullscreen stack appears first underneath and has activities to show, and then
1601 // make it visible.
1602 boolean behindFullscreenOrFreeForm = false;
1603 for (int stackBehindFocusedIndex = mStacks.indexOf(focusedStack) - 1;
1604 stackBehindFocusedIndex >= 0; stackBehindFocusedIndex--) {
1605 ActivityStack stack = mStacks.get(stackBehindFocusedIndex);
1606 if ((stack.mStackId == FREEFORM_WORKSPACE_STACK_ID
1607 || stack.mStackId == FULLSCREEN_WORKSPACE_STACK_ID)
1608 && stack.topRunningActivityLocked() != null) {
1609 if (stackIndex == stackBehindFocusedIndex) {
1610 return !behindFullscreenOrFreeForm ? STACK_VISIBLE : STACK_INVISIBLE;
1611 }
1612 behindFullscreenOrFreeForm = true;
1613 }
1614 }
1615 }
Jiaquan Hec4dcd4b2016-07-29 15:31:10 -07001616 // If an on-top launcher is on the top of the home stack but the home stack is not focused,
1617 // then the whole stack should be invisible.
1618 TaskRecord topTask = topTask();
1619 if (mStackId != focusedStackId && topTask != null && topTask.isOnTopLauncher()) {
1620 // We're here mostly because the on-top launcher didn't have a chance to move itself to
1621 // back. We should move it to back as soon as possible to avoid other activities
1622 // returning to it or other visibility issues.
1623 moveTaskToBackLocked(topTask.taskId);
1624 return STACK_INVISIBLE;
1625 }
Jiaquan He9bc01a82016-07-08 10:29:38 -07001626
Wale Ogunwalecff4aa32015-12-11 10:44:25 -08001627 if (mStackId == FULLSCREEN_WORKSPACE_STACK_ID
Filip Gruszczynski4e7fe712016-01-13 13:22:44 -08001628 && hasVisibleBehindActivity() && focusedStackId == HOME_STACK_ID
1629 && !focusedStack.topActivity().fullscreen) {
Wale Ogunwalecff4aa32015-12-11 10:44:25 -08001630 // The fullscreen stack should be visible if it has a visible behind activity behind
Filip Gruszczynski4e7fe712016-01-13 13:22:44 -08001631 // the home stack that is translucent.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001632 return STACK_VISIBLE_ACTIVITY_BEHIND;
Wale Ogunwalecff4aa32015-12-11 10:44:25 -08001633 }
1634
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001635 if (mStackId == DOCKED_STACK_ID) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001636 // Docked stack is always visible, except in the case where the top running activity
Jorim Jaggi42625d1b2016-02-11 20:11:07 -08001637 // task in the focus stack doesn't support any form of resizing but we show it for the
1638 // home task even though it's not resizable.
Wale Ogunwaled26176f2016-01-25 20:04:04 -08001639 final ActivityRecord r = focusedStack.topRunningActivityLocked();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001640 final TaskRecord task = r != null ? r.task : null;
Jorim Jaggi42625d1b2016-02-11 20:11:07 -08001641 return task == null || task.canGoInDockedStack() || task.isHomeTask() ? STACK_VISIBLE
1642 : STACK_INVISIBLE;
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001643 }
1644
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001645 // Find the first stack behind focused stack that actually got something visible.
1646 int stackBehindFocusedIndex = mStacks.indexOf(focusedStack) - 1;
1647 while (stackBehindFocusedIndex >= 0 &&
1648 mStacks.get(stackBehindFocusedIndex).topRunningActivityLocked() == null) {
1649 stackBehindFocusedIndex--;
Chong Zhangb16cf342015-11-12 17:22:40 -08001650 }
Wale Ogunwale99db1862015-10-23 20:08:22 -07001651 if ((focusedStackId == DOCKED_STACK_ID || focusedStackId == PINNED_STACK_ID)
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001652 && stackIndex == stackBehindFocusedIndex) {
Wale Ogunwale99db1862015-10-23 20:08:22 -07001653 // Stacks directly behind the docked or pinned stack are always visible.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001654 return STACK_VISIBLE;
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001655 }
1656
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001657 final int stackBehindFocusedId = (stackBehindFocusedIndex >= 0)
1658 ? mStacks.get(stackBehindFocusedIndex).mStackId : INVALID_STACK_ID;
1659
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001660 if (focusedStackId == FULLSCREEN_WORKSPACE_STACK_ID
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001661 && focusedStack.isStackTranslucent(starting, stackBehindFocusedId)) {
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001662 // Stacks behind the fullscreen stack with a translucent activity are always
1663 // visible so they can act as a backdrop to the translucent activity.
1664 // For example, dialog activities
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001665 if (stackIndex == stackBehindFocusedIndex) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001666 return STACK_VISIBLE;
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001667 }
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001668 if (stackBehindFocusedIndex >= 0) {
1669 if ((stackBehindFocusedId == DOCKED_STACK_ID
1670 || stackBehindFocusedId == PINNED_STACK_ID)
1671 && stackIndex == (stackBehindFocusedIndex - 1)) {
Wale Ogunwale99db1862015-10-23 20:08:22 -07001672 // The stack behind the docked or pinned stack is also visible so we can have a
1673 // complete backdrop to the translucent activity when the docked stack is up.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001674 return STACK_VISIBLE;
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001675 }
1676 }
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001677 }
1678
Wale Ogunwale3797c222015-10-27 14:21:58 -07001679 if (StackId.isStaticStack(mStackId)) {
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001680 // Visibility of any static stack should have been determined by the conditions above.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001681 return STACK_INVISIBLE;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001682 }
1683
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001684 for (int i = stackIndex + 1; i < mStacks.size(); i++) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001685 final ActivityStack stack = mStacks.get(i);
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001686
1687 if (!stack.mFullscreen && !stack.hasFullscreenTask()) {
1688 continue;
1689 }
1690
Wale Ogunwale3797c222015-10-27 14:21:58 -07001691 if (!StackId.isDynamicStacksVisibleBehindAllowed(stack.mStackId)) {
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001692 // These stacks can't have any dynamic stacks visible behind them.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001693 return STACK_INVISIBLE;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001694 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001695
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001696 if (!stack.isStackTranslucent(starting, INVALID_STACK_ID)) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001697 return STACK_INVISIBLE;
Jose Lima7ba71252014-04-30 12:59:27 -07001698 }
1699 }
1700
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001701 return STACK_VISIBLE;
Jose Lima7ba71252014-04-30 12:59:27 -07001702 }
1703
Chong Zhangfdcc4d42015-10-14 16:50:12 -07001704 final int rankTaskLayers(int baseLayer) {
1705 int layer = 0;
1706 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1707 final TaskRecord task = mTaskHistory.get(taskNdx);
1708 ActivityRecord r = task.topRunningActivityLocked();
1709 if (r == null || r.finishing || !r.visible) {
1710 task.mLayerRank = -1;
1711 } else {
1712 task.mLayerRank = baseLayer + layer++;
1713 }
1714 }
1715 return layer;
1716 }
1717
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001718 /**
1719 * Make sure that all activities that need to be visible (that is, they
1720 * currently can be seen by the user) actually are.
1721 */
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07001722 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges,
1723 boolean preserveWindows) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001724 ActivityRecord top = topRunningActivityLocked();
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001725 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "ensureActivitiesVisible behind " + top
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001726 + " configChanges=0x" + Integer.toHexString(configChanges));
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001727 if (top != null) {
1728 checkTranslucentActivityWaiting(top);
1729 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001730
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001731 // If the top activity is not fullscreen, then we need to
1732 // make sure any activities under it are now visible.
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001733 boolean aboveTop = top != null;
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001734 final int stackVisibility = getStackVisibilityLocked(starting);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001735 final boolean stackInvisible = stackVisibility != STACK_VISIBLE;
1736 final boolean stackVisibleBehind = stackVisibility == STACK_VISIBLE_ACTIVITY_BEHIND;
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001737 boolean behindFullscreenActivity = stackInvisible;
Andrii Kulianc11ce7b2016-06-27 10:53:53 -07001738 boolean resumeNextActivity = mStackSupervisor.isFocusedStack(this)
1739 && (isInStackLocked(starting) == null);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001740 boolean behindTranslucentActivity = false;
1741 final ActivityRecord visibleBehind = getVisibleBehindActivity();
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001742 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001743 final TaskRecord task = mTaskHistory.get(taskNdx);
1744 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001745 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1746 final ActivityRecord r = activities.get(activityNdx);
1747 if (r.finishing) {
Chong Zhang22bc8512016-04-07 13:47:18 -07001748 // Normally the screenshot will be taken in makeInvisible(). When an activity
1749 // is finishing, we no longer change its visibility, but we still need to take
1750 // the screenshots if startPausingLocked decided it should be taken.
1751 if (r.mUpdateTaskThumbnailWhenHidden) {
1752 r.updateThumbnailLocked(screenshotActivitiesLocked(r), null);
1753 r.mUpdateTaskThumbnailWhenHidden = false;
1754 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001755 continue;
1756 }
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001757 final boolean isTop = r == top;
1758 if (aboveTop && !isTop) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001759 continue;
1760 }
1761 aboveTop = false;
Wale Ogunwalee76407c2016-05-16 17:04:37 -07001762
1763 if (shouldBeVisible(r, behindTranslucentActivity, stackVisibleBehind,
1764 visibleBehind, behindFullscreenActivity)) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001765 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Make visible? " + r
1766 + " finishing=" + r.finishing + " state=" + r.state);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001767 // First: if this is not the current activity being started, make
1768 // sure it matches the current configuration.
Craig Mautnerbb742462014-07-07 15:28:55 -07001769 if (r != starting) {
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07001770 ensureActivityConfigurationLocked(r, 0, preserveWindows);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001771 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001772
1773 if (r.app == null || r.app.thread == null) {
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001774 if (makeVisibleAndRestartIfNeeded(starting, configChanges, isTop,
Wale Ogunwaled046a012015-12-24 13:05:59 -08001775 resumeNextActivity, r)) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001776 if (activityNdx >= activities.size()) {
1777 // Record may be removed if its process needs to restart.
1778 activityNdx = activities.size() - 1;
1779 } else {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001780 resumeNextActivity = false;
riddle_hsu36ee73d2015-06-05 16:38:38 +08001781 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001782 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001783 } else if (r.visible) {
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001784 // If this activity is already visible, then there is nothing to do here.
Chong Zhang371c4422016-05-11 10:48:32 -07001785 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1786 "Skipping: already visible at " + r);
1787
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001788 if (handleAlreadyVisible(r)) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001789 resumeNextActivity = false;
Wale Ogunwale85b90ab2015-04-27 20:54:47 -07001790 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001791 } else {
Jorim Jaggie66edb12016-02-05 12:41:17 -08001792 makeVisibleIfNeeded(starting, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001793 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001794 // Aggregate current change flags.
1795 configChanges |= r.configChangeFlags;
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001796 behindFullscreenActivity = updateBehindFullscreen(stackInvisible,
1797 behindFullscreenActivity, task, r);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001798 if (behindFullscreenActivity && !r.fullscreen) {
1799 behindTranslucentActivity = true;
1800 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001801 } else {
Wale Ogunwale834c2362016-01-23 18:14:58 -08001802 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Make invisible? " + r
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001803 + " finishing=" + r.finishing + " state=" + r.state + " stackInvisible="
1804 + stackInvisible + " behindFullscreenActivity="
1805 + behindFullscreenActivity + " mLaunchTaskBehind="
1806 + r.mLaunchTaskBehind);
1807 makeInvisible(r, visibleBehind);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001808 }
1809 }
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001810 if (mStackId == FREEFORM_WORKSPACE_STACK_ID) {
1811 // The visibility of tasks and the activities they contain in freeform stack are
1812 // determined individually unlike other stacks where the visibility or fullscreen
1813 // status of an activity in a previous task affects other.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001814 behindFullscreenActivity = stackVisibility == STACK_INVISIBLE;
Wale Ogunwale74e26592016-02-05 11:48:37 -08001815 } else if (mStackId == HOME_STACK_ID) {
Jiaquan He9bc01a82016-07-08 10:29:38 -07001816 if (task.isOnTopLauncher()) {
1817 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "On-top launcher: at " + task
1818 + " stackInvisible=" + stackInvisible
1819 + " behindFullscreenActivity=" + behindFullscreenActivity);
1820 // When an on-top launcher is visible, (e.g. it's on the top of the home stack),
1821 // other tasks in the home stack could be visible if and only if:
1822 // - some app is running in the docked stack;
1823 // - no app is running in either the fullscreen stack or the freefrom stack.
1824 final ActivityStack dockedStack = mStackSupervisor.getStack(DOCKED_STACK_ID);
1825 final ActivityStack fullscreenStack = mStackSupervisor.getStack(
1826 FULLSCREEN_WORKSPACE_STACK_ID);
1827 final ActivityStack freeformStack = mStackSupervisor.getStack(
1828 FREEFORM_WORKSPACE_STACK_ID);
1829 final boolean dockedStackEmpty = dockedStack == null ||
1830 dockedStack.topRunningActivityLocked() == null;
1831 final boolean fullscreenStackEmpty = fullscreenStack == null ||
1832 fullscreenStack.topRunningActivityLocked() == null;
1833 final boolean freeformStackEmpty = freeformStack == null ||
1834 freeformStack.topRunningActivityLocked() == null;
1835 behindFullscreenActivity = dockedStackEmpty || !fullscreenStackEmpty ||
1836 !freeformStackEmpty;
1837 } else if (task.isHomeTask()) {
Wale Ogunwale74e26592016-02-05 11:48:37 -08001838 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Home task: at " + task
1839 + " stackInvisible=" + stackInvisible
1840 + " behindFullscreenActivity=" + behindFullscreenActivity);
1841 // No other task in the home stack should be visible behind the home activity.
1842 // Home activities is usually a translucent activity with the wallpaper behind
1843 // them. However, when they don't have the wallpaper behind them, we want to
1844 // show activities in the next application stack behind them vs. another
1845 // task in the home stack like recents.
1846 behindFullscreenActivity = true;
1847 } else if (task.isRecentsTask()
1848 && task.getTaskToReturnTo() == APPLICATION_ACTIVITY_TYPE) {
1849 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1850 "Recents task returning to app: at " + task
1851 + " stackInvisible=" + stackInvisible
1852 + " behindFullscreenActivity=" + behindFullscreenActivity);
1853 // We don't want any other tasks in the home stack visible if the recents
1854 // activity is going to be returning to an application activity type.
1855 // We do this to preserve the visible order the user used to get into the
1856 // recents activity. The recents activity is normally translucent and if it
1857 // doesn't have the wallpaper behind it the next activity in the home stack
1858 // shouldn't be visible when the home stack is brought to the front to display
1859 // the recents activity from an app.
1860 behindFullscreenActivity = true;
1861 }
1862
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001863 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001864 }
Craig Mautnereb8abf72014-07-02 15:04:09 -07001865
1866 if (mTranslucentActivityWaiting != null &&
1867 mUndrawnActivitiesBelowTopTranslucent.isEmpty()) {
1868 // Nothing is getting drawn or everything was already visible, don't wait for timeout.
1869 notifyActivityDrawnLocked(null);
1870 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001871 }
Craig Mautner58547802013-03-05 08:23:53 -08001872
Wale Ogunwalee76407c2016-05-16 17:04:37 -07001873 /** Return true if the input activity should be made visible */
1874 private boolean shouldBeVisible(ActivityRecord r, boolean behindTranslucentActivity,
1875 boolean stackVisibleBehind, ActivityRecord visibleBehind,
1876 boolean behindFullscreenActivity) {
Wale Ogunwalee76407c2016-05-16 17:04:37 -07001877
Chong Zhang87761972016-08-22 13:53:24 -07001878 if (r == null || !r.okToShowLocked()) {
Wale Ogunwalee76407c2016-05-16 17:04:37 -07001879 return false;
1880 }
1881
Wale Ogunwale8c09c7d2016-05-23 09:10:24 -07001882 // mLaunchingBehind: Activities launching behind are at the back of the task stack
1883 // but must be drawn initially for the animation as though they were visible.
1884 final boolean activityVisibleBehind =
1885 (behindTranslucentActivity || stackVisibleBehind) && visibleBehind == r;
1886
Wale Ogunwalee76407c2016-05-16 17:04:37 -07001887 boolean isVisible =
1888 !behindFullscreenActivity || r.mLaunchTaskBehind || activityVisibleBehind;
1889
Wale Ogunwaleca2af9e2016-05-26 14:43:19 -07001890 if (mService.mSupportsLeanbackOnly && isVisible && r.isRecentsActivity()) {
1891 // On devices that support leanback only (Android TV), Recents activity can only be
1892 // visible if the home stack is the focused stack or we are in split-screen mode.
Wale Ogunwale8c09c7d2016-05-23 09:10:24 -07001893 isVisible = mStackSupervisor.getStack(DOCKED_STACK_ID) != null
1894 || mStackSupervisor.isFocusedStack(this);
Wale Ogunwalee76407c2016-05-16 17:04:37 -07001895 }
1896
1897 return isVisible;
1898 }
1899
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001900 private void checkTranslucentActivityWaiting(ActivityRecord top) {
1901 if (mTranslucentActivityWaiting != top) {
1902 mUndrawnActivitiesBelowTopTranslucent.clear();
1903 if (mTranslucentActivityWaiting != null) {
1904 // Call the callback with a timeout indication.
1905 notifyActivityDrawnLocked(null);
1906 mTranslucentActivityWaiting = null;
1907 }
1908 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1909 }
1910 }
1911
1912 private boolean makeVisibleAndRestartIfNeeded(ActivityRecord starting, int configChanges,
Wale Ogunwaled046a012015-12-24 13:05:59 -08001913 boolean isTop, boolean andResume, ActivityRecord r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001914 // We need to make sure the app is running if it's the top, or it is just made visible from
1915 // invisible. If the app is already visible, it must have died while it was visible. In this
1916 // case, we'll show the dead window but will not restart the app. Otherwise we could end up
1917 // thrashing.
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001918 if (isTop || !r.visible) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001919 // This activity needs to be visible, but isn't even running...
1920 // get it started and resume if no other stack in this stack is resumed.
1921 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Start and freeze screen for " + r);
1922 if (r != starting) {
1923 r.startFreezingScreenLocked(r.app, configChanges);
1924 }
1925 if (!r.visible || r.mLaunchTaskBehind) {
1926 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Starting and making visible: " + r);
1927 setVisible(r, true);
1928 }
1929 if (r != starting) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001930 mStackSupervisor.startSpecificActivityLocked(r, andResume, false);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001931 return true;
1932 }
1933 }
1934 return false;
1935 }
1936
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001937 private void makeInvisible(ActivityRecord r, ActivityRecord visibleBehind) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001938 if (!r.visible) {
1939 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Already invisible: " + r);
1940 return;
1941 }
1942 // Now for any activities that aren't visible to the user, make sure they no longer are
1943 // keeping the screen frozen.
Filip Gruszczynski4e7fe712016-01-13 13:22:44 -08001944 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Making invisible: " + r + " " + r.state);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001945 try {
1946 setVisible(r, false);
1947 switch (r.state) {
1948 case STOPPING:
1949 case STOPPED:
1950 if (r.app != null && r.app.thread != null) {
1951 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1952 "Scheduling invisibility: " + r);
1953 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1954 }
1955 break;
1956
1957 case INITIALIZING:
1958 case RESUMED:
1959 case PAUSING:
1960 case PAUSED:
1961 // This case created for transitioning activities from
1962 // translucent to opaque {@link Activity#convertToOpaque}.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001963 if (visibleBehind == r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001964 releaseBackgroundResources(r);
1965 } else {
Chong Zhang46b1ac62016-02-18 17:53:57 -08001966 addToStopping(r, true /* immediate */);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001967 }
1968 break;
1969
1970 default:
1971 break;
1972 }
1973 } catch (Exception e) {
1974 // Just skip on any failure; we'll make it visible when it next restarts.
1975 Slog.w(TAG, "Exception thrown making hidden: " + r.intent.getComponent(), e);
1976 }
1977 }
1978
1979 private boolean updateBehindFullscreen(boolean stackInvisible, boolean behindFullscreenActivity,
1980 TaskRecord task, ActivityRecord r) {
1981 if (r.fullscreen) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001982 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Fullscreen: at " + r
Wale Ogunwale673cbd22016-01-30 18:30:55 -08001983 + " stackInvisible=" + stackInvisible
1984 + " behindFullscreenActivity=" + behindFullscreenActivity);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001985 // At this point, nothing else needs to be shown in this task.
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001986 behindFullscreenActivity = true;
Wale Ogunwale74e26592016-02-05 11:48:37 -08001987 } else if (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001988 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Showing home: at " + r
1989 + " stackInvisible=" + stackInvisible
1990 + " behindFullscreenActivity=" + behindFullscreenActivity);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001991 behindFullscreenActivity = true;
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001992 }
1993 return behindFullscreenActivity;
1994 }
1995
Jorim Jaggie66edb12016-02-05 12:41:17 -08001996 private void makeVisibleIfNeeded(ActivityRecord starting, ActivityRecord r) {
1997
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001998 // This activity is not currently visible, but is running. Tell it to become visible.
Jorim Jaggie66edb12016-02-05 12:41:17 -08001999 if (r.state == ActivityState.RESUMED || r == starting) {
Chong Zhange05db742016-02-16 16:58:37 -08002000 if (DEBUG_VISIBILITY) Slog.d(TAG_VISIBILITY,
2001 "Not making visible, r=" + r + " state=" + r.state + " starting=" + starting);
Jorim Jaggie66edb12016-02-05 12:41:17 -08002002 return;
2003 }
2004
2005 // If this activity is paused, tell it to now show its window.
2006 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
2007 "Making visible and scheduling visibility: " + r);
2008 try {
2009 if (mTranslucentActivityWaiting != null) {
2010 r.updateOptionsLocked(r.returningOptions);
2011 mUndrawnActivitiesBelowTopTranslucent.add(r);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002012 }
Jorim Jaggie66edb12016-02-05 12:41:17 -08002013 setVisible(r, true);
2014 r.sleeping = false;
2015 r.app.pendingUiClean = true;
2016 r.app.thread.scheduleWindowVisibility(r.appToken, true);
Jorim Jaggid47e7e12016-03-01 09:57:38 +01002017 // The activity may be waiting for stop, but that is no longer
2018 // appropriate for it.
2019 mStackSupervisor.mStoppingActivities.remove(r);
2020 mStackSupervisor.mGoingToSleepActivities.remove(r);
Jorim Jaggie66edb12016-02-05 12:41:17 -08002021 } catch (Exception e) {
2022 // Just skip on any failure; we'll make it
2023 // visible when it next restarts.
2024 Slog.w(TAG, "Exception thrown making visibile: " + r.intent.getComponent(), e);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002025 }
Chong Zhang371c4422016-05-11 10:48:32 -07002026 handleAlreadyVisible(r);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002027 }
2028
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08002029 private boolean handleAlreadyVisible(ActivityRecord r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002030 r.stopFreezingScreenLocked(false);
2031 try {
2032 if (r.returningOptions != null) {
2033 r.app.thread.scheduleOnNewActivityOptions(r.appToken, r.returningOptions);
2034 }
2035 } catch(RemoteException e) {
2036 }
2037 return r.state == ActivityState.RESUMED;
2038 }
2039
Todd Kennedyaab56db2015-01-30 09:39:53 -08002040 void convertActivityToTranslucent(ActivityRecord r) {
Craig Mautner5eda9b32013-07-02 11:58:16 -07002041 mTranslucentActivityWaiting = r;
2042 mUndrawnActivitiesBelowTopTranslucent.clear();
2043 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
2044 }
2045
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07002046 void clearOtherAppTimeTrackers(AppTimeTracker except) {
2047 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2048 final TaskRecord task = mTaskHistory.get(taskNdx);
2049 final ArrayList<ActivityRecord> activities = task.mActivities;
2050 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2051 final ActivityRecord r = activities.get(activityNdx);
2052 if ( r.appTimeTracker != except) {
2053 r.appTimeTracker = null;
2054 }
2055 }
2056 }
2057 }
2058
Craig Mautner5eda9b32013-07-02 11:58:16 -07002059 /**
2060 * Called as activities below the top translucent activity are redrawn. When the last one is
2061 * redrawn notify the top activity by calling
2062 * {@link Activity#onTranslucentConversionComplete}.
2063 *
2064 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
2065 * occurred and the activity will be notified immediately.
2066 */
2067 void notifyActivityDrawnLocked(ActivityRecord r) {
Craig Mautner6985bad2014-04-21 15:22:06 -07002068 mActivityContainer.setDrawn();
Craig Mautner5eda9b32013-07-02 11:58:16 -07002069 if ((r == null)
2070 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
2071 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
2072 // The last undrawn activity below the top has just been drawn. If there is an
2073 // opaque activity at the top, notify it that it can become translucent safely now.
2074 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
2075 mTranslucentActivityWaiting = null;
2076 mUndrawnActivitiesBelowTopTranslucent.clear();
2077 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
2078
Craig Mautner71dd1b62014-02-18 15:48:52 -08002079 if (waitingActivity != null) {
2080 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
2081 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
2082 try {
2083 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
2084 waitingActivity.appToken, r != null);
2085 } catch (RemoteException e) {
2086 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07002087 }
2088 }
2089 }
2090 }
2091
Craig Mautnera61bc652013-10-28 15:43:18 -07002092 /** If any activities below the top running one are in the INITIALIZING state and they have a
2093 * starting window displayed then remove that starting window. It is possible that the activity
2094 * in this state will never resumed in which case that starting window will be orphaned. */
2095 void cancelInitializingActivities() {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002096 final ActivityRecord topActivity = topRunningActivityLocked();
Craig Mautnera61bc652013-10-28 15:43:18 -07002097 boolean aboveTop = true;
Wale Ogunwale68741142016-05-17 09:40:02 -07002098 // We don't want to clear starting window for activities that aren't behind fullscreen
2099 // activities as we need to display their starting window until they are done initializing.
2100 boolean behindFullscreenActivity = false;
Wale Ogunwale98742a52016-07-12 10:29:12 -07002101
2102 if (getStackVisibilityLocked(null) == STACK_INVISIBLE) {
2103 // The stack is not visible, so no activity in it should be displaying a starting
2104 // window. Mark all activities below top and behind fullscreen.
2105 aboveTop = false;
2106 behindFullscreenActivity = true;
2107 }
2108
Craig Mautnera61bc652013-10-28 15:43:18 -07002109 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2110 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2111 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2112 final ActivityRecord r = activities.get(activityNdx);
2113 if (aboveTop) {
2114 if (r == topActivity) {
2115 aboveTop = false;
2116 }
Wale Ogunwale68741142016-05-17 09:40:02 -07002117 behindFullscreenActivity |= r.fullscreen;
Craig Mautnera61bc652013-10-28 15:43:18 -07002118 continue;
2119 }
2120
Wale Ogunwalef40c11b2016-02-26 08:16:02 -08002121 if (r.state == ActivityState.INITIALIZING
Wale Ogunwale68741142016-05-17 09:40:02 -07002122 && r.mStartingWindowState == STARTING_WINDOW_SHOWN
2123 && behindFullscreenActivity) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002124 if (DEBUG_VISIBILITY) Slog.w(TAG_VISIBILITY,
2125 "Found orphaned starting window " + r);
Wale Ogunwalef40c11b2016-02-26 08:16:02 -08002126 r.mStartingWindowState = STARTING_WINDOW_REMOVED;
Craig Mautnera61bc652013-10-28 15:43:18 -07002127 mWindowManager.removeAppStartingWindow(r.appToken);
2128 }
Wale Ogunwale68741142016-05-17 09:40:02 -07002129
2130 behindFullscreenActivity |= r.fullscreen;
Craig Mautnera61bc652013-10-28 15:43:18 -07002131 }
2132 }
2133 }
2134
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002135 /**
2136 * Ensure that the top activity in the stack is resumed.
2137 *
2138 * @param prev The previously resumed activity, for when in the process
2139 * of pausing; can be null to call from elsewhere.
Wale Ogunwaled046a012015-12-24 13:05:59 -08002140 * @param options Activity options.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002141 *
2142 * @return Returns true if something is being resumed, or false if
2143 * nothing happened.
Wale Ogunwaled046a012015-12-24 13:05:59 -08002144 *
2145 * NOTE: It is not safe to call this method directly as it can cause an activity in a
2146 * non-focused stack to be resumed.
2147 * Use {@link ActivityStackSupervisor#resumeFocusedStackTopActivityLocked} to resume the
2148 * right activity for the current system state.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002149 */
Wale Ogunwaled046a012015-12-24 13:05:59 -08002150 boolean resumeTopActivityUncheckedLocked(ActivityRecord prev, ActivityOptions options) {
Craig Mautner42d04db2014-11-06 12:13:23 -08002151 if (mStackSupervisor.inResumeTopActivity) {
Craig Mautner544efa72014-09-04 16:41:20 -07002152 // Don't even start recursing.
2153 return false;
2154 }
2155
2156 boolean result = false;
2157 try {
2158 // Protect against recursion.
Craig Mautner42d04db2014-11-06 12:13:23 -08002159 mStackSupervisor.inResumeTopActivity = true;
2160 if (mService.mLockScreenShown == ActivityManagerService.LOCK_SCREEN_LEAVING) {
2161 mService.mLockScreenShown = ActivityManagerService.LOCK_SCREEN_HIDDEN;
Jeff Brown9ef94012014-11-21 13:04:42 -08002162 mService.updateSleepIfNeededLocked();
Craig Mautner42d04db2014-11-06 12:13:23 -08002163 }
Craig Mautner544efa72014-09-04 16:41:20 -07002164 result = resumeTopActivityInnerLocked(prev, options);
2165 } finally {
Craig Mautner42d04db2014-11-06 12:13:23 -08002166 mStackSupervisor.inResumeTopActivity = false;
Craig Mautner544efa72014-09-04 16:41:20 -07002167 }
2168 return result;
2169 }
2170
Chong Zhang6cda19c2016-06-14 19:07:56 -07002171 void setResumedActivityLocked(ActivityRecord r, String reason) {
2172 // TODO: move mResumedActivity to stack supervisor,
2173 // there should only be 1 global copy of resumed activity.
2174 mResumedActivity = r;
Chong Zhangd2cb3112016-07-20 11:13:22 -07002175 r.state = ActivityState.RESUMED;
Chong Zhang6cda19c2016-06-14 19:07:56 -07002176 mService.setResumedActivityUncheckLocked(r, reason);
2177 r.task.touchActiveTime();
2178 mRecentTasks.addLocked(r.task);
2179 }
2180
Chong Zhang280d3322015-11-03 17:27:26 -08002181 private boolean resumeTopActivityInnerLocked(ActivityRecord prev, ActivityOptions options) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002182 if (DEBUG_LOCKSCREEN) mService.logLockScreen("");
Craig Mautner5314a402013-09-26 12:40:16 -07002183
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07002184 if (!mService.mBooting && !mService.mBooted) {
2185 // Not ready yet!
2186 return false;
2187 }
2188
Craig Mautnerdf88d732014-01-27 09:21:32 -08002189 ActivityRecord parent = mActivityContainer.mParentActivity;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002190 if ((parent != null && parent.state != ActivityState.RESUMED) ||
Craig Mautnerd163e752014-06-13 17:18:47 -07002191 !mActivityContainer.isAttachedLocked()) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08002192 // Do not resume this stack if its parent is not resumed.
2193 // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
2194 return false;
2195 }
2196
Wale Ogunwale2be760d2016-02-17 11:16:10 -08002197 mStackSupervisor.cancelInitializingActivities();
Craig Mautnera61bc652013-10-28 15:43:18 -07002198
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002199 // Find the first activity that is not finishing.
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002200 final ActivityRecord next = topRunningActivityLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002201
2202 // Remember how we'll process this pause/resume situation, and ensure
2203 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002204 final boolean userLeaving = mStackSupervisor.mUserLeaving;
2205 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002206
Craig Mautner84984fa2014-06-19 11:19:20 -07002207 final TaskRecord prevTask = prev != null ? prev.task : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002208 if (next == null) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002209 // There are no more activities!
2210 final String reason = "noMoreActivities";
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07002211 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack()
2212 ? HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
2213 if (!mFullscreen && adjustFocusToNextFocusableStackLocked(returnTaskType, reason)) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002214 // Try to move focus to the next visible stack with a running activity if this
2215 // stack is not covering the entire screen.
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08002216 return mStackSupervisor.resumeFocusedStackTopActivityLocked(
2217 mStackSupervisor.getFocusedStack(), prev, null);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002218 }
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08002219
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002220 // Let's just start up the Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07002221 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002222 if (DEBUG_STATES) Slog.d(TAG_STATES,
2223 "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07002224 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnere0a38842013-12-16 16:14:02 -08002225 // Only resume home if on home display
Craig Mautner84984fa2014-06-19 11:19:20 -07002226 return isOnHomeDisplay() &&
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002227 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002228 }
2229
2230 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08002231
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002232 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002233 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
2234 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002235 // Make sure we have executed any pending transitions, since there
2236 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002237 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002238 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07002239 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002240 if (DEBUG_STATES) Slog.d(TAG_STATES,
2241 "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07002242 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002243 return false;
2244 }
2245
Craig Mautner525f3d92013-05-07 14:01:50 -07002246 final TaskRecord nextTask = next.task;
bulicccd230712014-05-12 14:34:50 -07002247 if (prevTask != null && prevTask.stack == this &&
Craig Mautner84984fa2014-06-19 11:19:20 -07002248 prevTask.isOverHomeStack() && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07002249 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07002250 if (prevTask == nextTask) {
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002251 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07002252 } else if (prevTask != topTask()) {
Craig Mautner84984fa2014-06-19 11:19:20 -07002253 // This task is going away but it was supposed to return to the home stack.
Craig Mautnere418ecd2013-05-01 17:02:29 -07002254 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07002255 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07002256 mTaskHistory.get(taskNdx).setTaskToReturnTo(HOME_ACTIVITY_TYPE);
louis_chang2d094e92015-01-21 19:01:52 +08002257 } else if (!isOnHomeDisplay()) {
2258 return false;
2259 } else if (!isHomeStack()){
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002260 if (DEBUG_STATES) Slog.d(TAG_STATES,
Craig Mautnere0a38842013-12-16 16:14:02 -08002261 "resumeTopActivityLocked: Launching home next");
Craig Mautner84984fa2014-06-19 11:19:20 -07002262 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
2263 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
2264 return isOnHomeDisplay() &&
Craig Mautner3c878f22015-01-26 13:57:19 -08002265 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, "prevFinished");
Craig Mautnere418ecd2013-05-01 17:02:29 -07002266 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002267 }
2268
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002269 // If we are sleeping, and there is no resumed activity, and the top
2270 // activity is paused, well that is the state we want.
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07002271 if (mService.isSleepingOrShuttingDownLocked()
p13451dbad2872012-04-18 11:39:23 +09002272 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07002273 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002274 // Make sure we have executed any pending transitions, since there
2275 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002276 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002277 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07002278 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002279 if (DEBUG_STATES) Slog.d(TAG_STATES,
2280 "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07002281 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002282 return false;
2283 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002284
2285 // Make sure that the user who owns this activity is started. If not,
2286 // we will just leave it as is because someone should be bringing
2287 // another user's activities to the top of the stack.
Fyodor Kupolov610acda2015-10-19 18:44:07 -07002288 if (!mService.mUserController.hasStartedUserState(next.userId)) {
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002289 Slog.w(TAG, "Skipping resume of top activity " + next
2290 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07002291 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002292 return false;
2293 }
2294
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002295 // The activity may be waiting for stop, but that is no longer
2296 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002297 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002298 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002299 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07002300 mStackSupervisor.mWaitingVisibleActivities.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002301
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002302 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resuming " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002303
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08002304 // If we are currently pausing an activity, then don't do anything until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07002305 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002306 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG_PAUSE,
Craig Mautnerac6f8432013-07-17 13:24:59 -07002307 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07002308 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002309 return false;
2310 }
2311
Dianne Hackborn3d07c942015-03-13 18:02:54 -07002312 mStackSupervisor.setLaunchSource(next.info.applicationInfo.uid);
2313
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08002314 // We need to start pausing the current activity so the top one can be resumed...
2315 final boolean dontWaitForPause = (next.info.flags & FLAG_RESUME_WHILE_PAUSING) != 0;
Wale Ogunwale950faff2016-08-08 09:51:04 -07002316 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving, next, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07002317 if (mResumedActivity != null) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002318 if (DEBUG_STATES) Slog.d(TAG_STATES,
2319 "resumeTopActivityLocked: Pausing " + mResumedActivity);
Wale Ogunwale950faff2016-08-08 09:51:04 -07002320 pausing |= startPausingLocked(userLeaving, false, next, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07002321 }
2322 if (pausing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002323 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG_STATES,
Craig Mautnerac6f8432013-07-17 13:24:59 -07002324 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07002325 // At this point we want to put the upcoming activity's process
2326 // at the top of the LRU list, since we know we will be needing it
2327 // very soon and it would be a waste to let it get killed if it
2328 // happens to be sitting towards the end.
2329 if (next.app != null && next.app.thread != null) {
Dianne Hackborndb926082013-10-31 16:32:44 -07002330 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07002331 }
Craig Mautnercf910b02013-04-23 11:23:27 -07002332 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002333 return true;
Wale Ogunwalecac5c322016-05-23 10:56:33 -07002334 } else if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
2335 mStackSupervisor.allResumedActivitiesComplete()) {
2336 // It is possible for the activity to be resumed when we paused back stacks above if the
2337 // next activity doesn't have to wait for pause to complete.
2338 // So, nothing else to-do except:
2339 // Make sure we have executed any pending transitions, since there
2340 // should be nothing left to do at this point.
2341 mWindowManager.executeAppTransition();
2342 mNoAnimActivities.clear();
2343 ActivityOptions.abort(options);
2344 if (DEBUG_STATES) Slog.d(TAG_STATES,
2345 "resumeTopActivityLocked: Top activity resumed (dontWaitForPause) " + next);
2346 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2347 return true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002348 }
2349
Christopher Tated3f175c2012-06-14 14:16:54 -07002350 // If the most recent activity was noHistory but was only stopped rather
2351 // than stopped+finished because the device went to sleep, we need to make
2352 // sure to finish it as we're making a new activity topmost.
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07002353 if (mService.isSleepingLocked() && mLastNoHistoryActivity != null &&
Craig Mautner0f922742013-08-06 08:44:42 -07002354 !mLastNoHistoryActivity.finishing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002355 if (DEBUG_STATES) Slog.d(TAG_STATES,
2356 "no-history finish of " + mLastNoHistoryActivity + " on new resume");
Craig Mautner0f922742013-08-06 08:44:42 -07002357 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
Todd Kennedy539db512014-12-15 09:57:55 -08002358 null, "resume-no-history", false);
Craig Mautner0f922742013-08-06 08:44:42 -07002359 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07002360 }
2361
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002362 if (prev != null && prev != next) {
Craig Mautner8c14c152015-01-15 17:32:07 -08002363 if (!mStackSupervisor.mWaitingVisibleActivities.contains(prev)
2364 && next != null && !next.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002365 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002366 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2367 "Resuming top, waiting visible to hide: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002368 } else {
2369 // The next activity is already visible, so hide the previous
2370 // activity's windows right now so we can show the new one ASAP.
2371 // We only do this if the previous is finishing, which should mean
2372 // it is on top of the one being resumed so hiding it quickly
2373 // is good. Otherwise, we want to do the normal route of allowing
2374 // the resumed activity to be shown so we can decide if the
2375 // previous should actually be hidden depending on whether the
2376 // new one is found to be full-screen or not.
2377 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002378 mWindowManager.setAppVisibility(prev.appToken, false);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002379 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2380 "Not waiting for visible to hide: " + prev + ", waitingVisible="
Craig Mautner8c14c152015-01-15 17:32:07 -08002381 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002382 + ", nowVisible=" + next.nowVisible);
2383 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002384 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
Craig Mautner8c14c152015-01-15 17:32:07 -08002385 "Previous already visible but still waiting to hide: " + prev
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002386 + ", waitingVisible="
2387 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
2388 + ", nowVisible=" + next.nowVisible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002389 }
2390 }
2391 }
2392
Dianne Hackborne7f97212011-02-24 14:40:20 -08002393 // Launching this app's activity, make sure the app is no longer
2394 // considered stopped.
2395 try {
2396 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07002397 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08002398 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08002399 } catch (IllegalArgumentException e) {
2400 Slog.w(TAG, "Failed trying to unstop package "
2401 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08002402 }
2403
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002404 // We are starting up the next activity, so tell the window manager
2405 // that the previous one will be hidden soon. This way it can know
2406 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07002407 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002408 if (prev != null) {
2409 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002410 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002411 "Prepare close transition: prev=" + prev);
2412 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002413 anim = false;
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002414 mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002415 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002416 mWindowManager.prepareAppTransition(prev.task == next.task
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002417 ? TRANSIT_ACTIVITY_CLOSE
2418 : TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002419 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002420 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002421 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002422 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
2423 "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002424 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002425 anim = false;
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002426 mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002427 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002428 mWindowManager.prepareAppTransition(prev.task == next.task
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002429 ? TRANSIT_ACTIVITY_OPEN
Craig Mautnerbb742462014-07-07 15:28:55 -07002430 : next.mLaunchTaskBehind
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002431 ? TRANSIT_TASK_OPEN_BEHIND
2432 : TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002433 }
2434 }
Craig Mautner967212c2013-04-13 21:10:58 -07002435 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002436 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002437 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002438 anim = false;
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002439 mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002440 } else {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002441 mWindowManager.prepareAppTransition(TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002442 }
2443 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08002444
2445 Bundle resumeAnimOptions = null;
Craig Mautner525f3d92013-05-07 14:01:50 -07002446 if (anim) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08002447 ActivityOptions opts = next.getOptionsForTargetActivityLocked();
2448 if (opts != null) {
2449 resumeAnimOptions = opts.toBundle();
2450 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07002451 next.applyOptionsLocked();
2452 } else {
2453 next.clearOptionsLocked();
2454 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002455
Craig Mautnercf910b02013-04-23 11:23:27 -07002456 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002457 if (next.app != null && next.app.thread != null) {
Chong Zhangdea4bd92016-03-15 12:50:03 -07002458 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resume running: " + next
2459 + " stopped=" + next.stopped + " visible=" + next.visible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002460
Chong Zhangd127c6d2016-05-02 16:36:41 -07002461 // If the previous activity is translucent, force a visibility update of
2462 // the next activity, so that it's added to WM's opening app list, and
2463 // transition animation can be set up properly.
2464 // For example, pressing Home button with a translucent activity in focus.
2465 // Launcher is already visible in this case. If we don't add it to opening
2466 // apps, maybeUpdateTransitToWallpaper() will fail to identify this as a
2467 // TRANSIT_WALLPAPER_OPEN animation, and run some funny animation.
2468 final boolean lastActivityTranslucent = lastStack != null
2469 && (!lastStack.mFullscreen
2470 || (lastStack.mLastPausedActivity != null
2471 && !lastStack.mLastPausedActivity.fullscreen));
2472
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002473 // This activity is now becoming visible.
Chong Zhangd127c6d2016-05-02 16:36:41 -07002474 if (!next.visible || next.stopped || lastActivityTranslucent) {
Jorim Jaggi1b025a62016-02-03 19:27:49 -08002475 mWindowManager.setAppVisibility(next.appToken, true);
2476 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002477
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07002478 // schedule launch ticks to collect information about slow apps.
2479 next.startLaunchTickingLocked();
2480
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002481 ActivityRecord lastResumedActivity =
2482 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002483 ActivityState lastState = next.state;
2484
2485 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08002486
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002487 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + next + " (in existing)");
Chong Zhang6cda19c2016-06-14 19:07:56 -07002488
2489 setResumedActivityLocked(next, "resumeTopActivityInnerLocked");
2490
Dianne Hackborndb926082013-10-31 16:32:44 -07002491 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002492 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07002493 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002494
2495 // Have the window manager re-evaluate the orientation of
2496 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07002497 boolean notUpdated = true;
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07002498 if (mStackSupervisor.isFocusedStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002499 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07002500 mService.mConfiguration,
2501 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
2502 if (config != null) {
2503 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002504 }
Maxim Bogatov05075302015-05-19 18:33:08 -07002505 notUpdated = !mService.updateConfigurationLocked(config, next, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002506 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07002507
Craig Mautner525f3d92013-05-07 14:01:50 -07002508 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002509 // The configuration update wasn't able to keep the existing
2510 // instance of the activity, and instead started a new one.
2511 // We should be all done, but let's just make sure our activity
2512 // is still at the top and schedule another run if something
2513 // weird happened.
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002514 ActivityRecord nextNext = topRunningActivityLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002515 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_STATES,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002516 "Activity config changed during resume: " + next
2517 + ", new next: " + nextNext);
2518 if (nextNext != next) {
2519 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07002520 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002521 }
Chong Zhangd2cb3112016-07-20 11:13:22 -07002522 if (!next.visible || next.stopped) {
2523 mWindowManager.setAppVisibility(next.appToken, true);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002524 }
Chong Zhangd2cb3112016-07-20 11:13:22 -07002525 completeResumeLocked(next);
Craig Mautnercf910b02013-04-23 11:23:27 -07002526 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Chong Zhangd2cb3112016-07-20 11:13:22 -07002527 return true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002528 }
Craig Mautner58547802013-03-05 08:23:53 -08002529
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002530 try {
2531 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002532 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002533 if (a != null) {
2534 final int N = a.size();
2535 if (!next.finishing && N > 0) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002536 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS,
2537 "Delivering results to " + next + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002538 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002539 }
2540 }
2541
Chong Zhangad24f962016-08-25 12:12:33 -07002542 boolean allowSavedSurface = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002543 if (next.newIntents != null) {
Chong Zhangad24f962016-08-25 12:12:33 -07002544 // Restrict saved surface to launcher start, or there is no intent at all
2545 // (eg. task being brought to front). If the intent is something else,
2546 // likely the app is going to show some specific page or view, instead of
2547 // what's left last time.
2548 for (int i = next.newIntents.size() - 1; i >= 0; i--) {
2549 final Intent intent = next.newIntents.get(i);
Chong Zhangb0a87432016-08-25 12:12:33 -07002550 if (intent != null && !ActivityRecord.isMainIntent(intent)) {
Chong Zhangad24f962016-08-25 12:12:33 -07002551 allowSavedSurface = false;
2552 break;
2553 }
2554 }
Wale Ogunwale826c7062016-09-13 08:25:54 -07002555 next.app.thread.scheduleNewIntent(
2556 next.newIntents, next.appToken, false /* andPause */);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002557 }
2558
Wale Ogunwale8d5a5422016-03-03 18:28:21 -08002559 // Well the app will no longer be stopped.
2560 // Clear app token stopped state in window manager if needed.
Chong Zhangad24f962016-08-25 12:12:33 -07002561 mWindowManager.notifyAppResumed(next.appToken, next.stopped, allowSavedSurface);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -08002562
Craig Mautner299f9602015-01-26 09:47:33 -08002563 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY, next.userId,
2564 System.identityHashCode(next), next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08002565
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002566 next.sleeping = false;
Alan Viverette5f31b982016-06-21 14:46:14 -04002567 mService.showUnsupportedZoomDialogIfNeededLocked(next);
Craig Mautner2420ead2013-04-01 17:13:20 -07002568 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07002569 next.app.pendingUiClean = true;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07002570 next.app.forceProcessStateUpTo(mService.mTopProcessState);
George Mount2c92c972014-03-20 09:38:23 -07002571 next.clearOptionsLocked();
Dianne Hackborna413dc02013-07-12 12:02:55 -07002572 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Adam Powellcfbe9be2013-11-06 14:58:58 -08002573 mService.isNextTransitionForward(), resumeAnimOptions);
Craig Mautner58547802013-03-05 08:23:53 -08002574
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002575 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002576 } catch (Exception e) {
2577 // Whoops, need to restart this activity!
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002578 if (DEBUG_STATES) Slog.v(TAG_STATES, "Resume failed; resetting state to "
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002579 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002580 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002581 if (lastStack != null) {
2582 lastStack.mResumedActivity = lastResumedActivity;
2583 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002584 Slog.i(TAG, "Restarting because process died: " + next);
2585 if (!next.hasBeenLaunched) {
2586 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002587 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
2588 mStackSupervisor.isFrontStack(lastStack)) {
Wale Ogunwale3b232392016-05-13 15:37:13 -07002589 next.showStartingWindow(null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002590 }
George Mount2c92c972014-03-20 09:38:23 -07002591 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07002592 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002593 return true;
2594 }
2595
2596 // From this point on, if something goes wrong there is no way
2597 // to recover the activity.
2598 try {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002599 completeResumeLocked(next);
2600 } catch (Exception e) {
2601 // If any exception gets thrown, toss away this
2602 // activity and try the next one.
2603 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002604 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002605 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07002606 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002607 return true;
2608 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002609 } else {
2610 // Whoops, need to restart this activity!
2611 if (!next.hasBeenLaunched) {
2612 next.hasBeenLaunched = true;
2613 } else {
2614 if (SHOW_APP_STARTING_PREVIEW) {
Wale Ogunwale3b232392016-05-13 15:37:13 -07002615 next.showStartingWindow(null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002616 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002617 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Restarting: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002618 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002619 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Restarting " + next);
George Mount2c92c972014-03-20 09:38:23 -07002620 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002621 }
2622
Craig Mautnercf910b02013-04-23 11:23:27 -07002623 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002624 return true;
2625 }
2626
riddle_hsuc215a4f2014-12-27 12:10:45 +08002627 private TaskRecord getNextTask(TaskRecord targetTask) {
2628 final int index = mTaskHistory.indexOf(targetTask);
2629 if (index >= 0) {
2630 final int numTasks = mTaskHistory.size();
2631 for (int i = index + 1; i < numTasks; ++i) {
2632 TaskRecord task = mTaskHistory.get(i);
2633 if (task.userId == targetTask.userId) {
2634 return task;
2635 }
2636 }
2637 }
2638 return null;
2639 }
2640
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002641 private void insertTaskAtPosition(TaskRecord task, int position) {
2642 if (position >= mTaskHistory.size()) {
2643 insertTaskAtTop(task, null);
2644 return;
2645 }
2646 // Calculate maximum possible position for this task.
2647 int maxPosition = mTaskHistory.size();
Chong Zhang87761972016-08-22 13:53:24 -07002648 if (!task.okToShowLocked()) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002649 // Put non-current user tasks below current user tasks.
2650 while (maxPosition > 0) {
2651 final TaskRecord tmpTask = mTaskHistory.get(maxPosition - 1);
2652 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002653 || tmpTask.topRunningActivityLocked() == null) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002654 break;
2655 }
2656 maxPosition--;
2657 }
2658 }
2659 position = Math.min(position, maxPosition);
2660 mTaskHistory.remove(task);
2661 mTaskHistory.add(position, task);
2662 updateTaskMovement(task, true);
2663 }
2664
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002665 private void insertTaskAtTop(TaskRecord task, ActivityRecord newActivity) {
Andrii Kuliandc0f8932016-06-28 16:34:02 -07002666 boolean isLastTaskOverHome = false;
riddle_hsuc215a4f2014-12-27 12:10:45 +08002667 // If the moving task is over home stack, transfer its return type to next task
2668 if (task.isOverHomeStack()) {
2669 final TaskRecord nextTask = getNextTask(task);
2670 if (nextTask != null) {
2671 nextTask.setTaskToReturnTo(task.getTaskToReturnTo());
Andrii Kuliandc0f8932016-06-28 16:34:02 -07002672 } else {
2673 isLastTaskOverHome = true;
riddle_hsuc215a4f2014-12-27 12:10:45 +08002674 }
2675 }
2676
Craig Mautner9c85c202013-10-04 20:11:26 -07002677 // If this is being moved to the top by another activity or being launched from the home
riddle_hsuc215a4f2014-12-27 12:10:45 +08002678 // activity, set mTaskToReturnTo accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08002679 if (isOnHomeDisplay()) {
2680 ActivityStack lastStack = mStackSupervisor.getLastStack();
2681 final boolean fromHome = lastStack.isHomeStack();
Jiaquan Hee13e9642016-06-15 15:16:13 -07002682 final boolean fromOnTopLauncher = lastStack.topTask() != null &&
2683 lastStack.topTask().isOnTopLauncher();
2684 if (fromOnTopLauncher) {
2685 // Since an on-top launcher will is moved to back when tasks are launched from it,
2686 // those tasks should first try to return to a non-home activity.
2687 // This also makes sure that non-home activities are visible under a transparent
2688 // non-home activity.
2689 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
2690 } else if (!isHomeStack() && (fromHome || topTask() != task)) {
Andrii Kuliandc0f8932016-06-28 16:34:02 -07002691 // If it's a last task over home - we default to keep its return to type not to
2692 // make underlying task focused when this one will be finished.
2693 int returnToType = isLastTaskOverHome
2694 ? task.getTaskToReturnTo() : APPLICATION_ACTIVITY_TYPE;
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08002695 if (fromHome && StackId.allowTopTaskToReturnHome(mStackId)) {
2696 returnToType = lastStack.topTask() == null
2697 ? HOME_ACTIVITY_TYPE : lastStack.topTask().taskType;
2698 }
2699 task.setTaskToReturnTo(returnToType);
Craig Mautnere0a38842013-12-16 16:14:02 -08002700 }
2701 } else {
Craig Mautner84984fa2014-06-19 11:19:20 -07002702 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner9c85c202013-10-04 20:11:26 -07002703 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07002704
Craig Mautnerac6f8432013-07-17 13:24:59 -07002705 mTaskHistory.remove(task);
2706 // Now put task at top.
Craig Mautnerbb742462014-07-07 15:28:55 -07002707 int taskNdx = mTaskHistory.size();
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002708 final boolean notShownWhenLocked =
Chong Zhang87761972016-08-22 13:53:24 -07002709 (newActivity != null && !newActivity.okToShowLocked())
2710 || (newActivity == null && !task.okToShowLocked());
2711 if (notShownWhenLocked) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002712 // Put non-current user tasks below current user tasks.
Craig Mautnerbb742462014-07-07 15:28:55 -07002713 while (--taskNdx >= 0) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002714 final TaskRecord tmpTask = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002715 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002716 || tmpTask.topRunningActivityLocked() == null) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002717 break;
2718 }
2719 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002720 ++taskNdx;
Craig Mautnerac6f8432013-07-17 13:24:59 -07002721 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002722 mTaskHistory.add(taskNdx, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07002723 updateTaskMovement(task, true);
Craig Mautnerac6f8432013-07-17 13:24:59 -07002724 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08002725
Filip Gruszczynski3d82ed62015-12-10 10:41:39 -08002726 final void startActivityLocked(ActivityRecord r, boolean newTask, boolean keepCurTransition,
2727 ActivityOptions options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002728 TaskRecord rTask = r.task;
2729 final int taskId = rTask.taskId;
Craig Mautnerbb742462014-07-07 15:28:55 -07002730 // mLaunchTaskBehind tasks get placed at the back of the task stack.
2731 if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
Craig Mautner77878772013-03-04 19:46:24 -08002732 // Last activity in task had been removed or ActivityManagerService is reusing task.
2733 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08002734 // Might not even be in.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002735 insertTaskAtTop(rTask, r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002736 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08002737 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002738 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002739 if (!newTask) {
2740 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08002741 boolean startIt = true;
2742 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2743 task = mTaskHistory.get(taskNdx);
riddle_hsu9bcc6e82014-07-31 00:26:51 +08002744 if (task.getTopActivity() == null) {
2745 // All activities in task are finishing.
2746 continue;
2747 }
Craig Mautner70a86932013-02-28 22:37:44 -08002748 if (task == r.task) {
2749 // Here it is! Now, if this is not yet visible to the
2750 // user, then just add it without starting; it will
2751 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08002752 if (!startIt) {
2753 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
2754 + task, new RuntimeException("here").fillInStackTrace());
2755 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002756 r.putInHistory();
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002757 addConfigOverride(r, task);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002758 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002759 return;
2760 }
2761 break;
Craig Mautner70a86932013-02-28 22:37:44 -08002762 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002763 startIt = false;
2764 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002765 }
2766 }
2767
2768 // Place a new activity at top of stack, so it is next to interact
2769 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08002770
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002771 // If we are not placing the new activity frontmost, we do not want
2772 // to deliver the onUserLeaving callback to the actual frontmost
2773 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08002774 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002775 mStackSupervisor.mUserLeaving = false;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002776 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
Craig Mautner70a86932013-02-28 22:37:44 -08002777 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002778 }
Craig Mautner70a86932013-02-28 22:37:44 -08002779
2780 task = r.task;
2781
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002782 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08002783 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08002784 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08002785 task.addActivityToTop(r);
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002786 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08002787
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002788 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002789 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002790 // We want to show the starting preview window if we are
2791 // switching to a new task, or the next activity's process is
2792 // not currently running.
2793 boolean showStartingIcon = newTask;
2794 ProcessRecord proc = r.app;
2795 if (proc == null) {
2796 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
2797 }
2798 if (proc == null || proc.thread == null) {
2799 showStartingIcon = true;
2800 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002801 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002802 "Prepare open transition: starting " + r);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002803 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002804 mWindowManager.prepareAppTransition(TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002805 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002806 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002807 mWindowManager.prepareAppTransition(newTask
Craig Mautnerbb742462014-07-07 15:28:55 -07002808 ? r.mLaunchTaskBehind
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002809 ? TRANSIT_TASK_OPEN_BEHIND
2810 : TRANSIT_TASK_OPEN
2811 : TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002812 mNoAnimActivities.remove(r);
2813 }
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002814 addConfigOverride(r, task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002815 boolean doShow = true;
2816 if (newTask) {
2817 // Even though this activity is starting fresh, we still need
2818 // to reset it to make sure we apply affinities to move any
2819 // existing activities from other tasks in to it.
2820 // If the caller has requested that the target task be
2821 // reset, then do so.
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002822 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002823 resetTaskIfNeededLocked(r, r);
2824 doShow = topRunningNonDelayedActivityLocked(null) == r;
2825 }
Chong Zhang280d3322015-11-03 17:27:26 -08002826 } else if (options != null && options.getAnimationType()
George Mount70778d72014-07-01 16:33:45 -07002827 == ActivityOptions.ANIM_SCENE_TRANSITION) {
2828 doShow = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002829 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002830 if (r.mLaunchTaskBehind) {
2831 // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2832 // tell WindowManager that r is visible even though it is at the back of the stack.
2833 mWindowManager.setAppVisibility(r.appToken, true);
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07002834 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Craig Mautnerbb742462014-07-07 15:28:55 -07002835 } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002836 // Figure out if we are transitioning from another activity that is
2837 // "has the same starting icon" as the next one. This allows the
2838 // window manager to keep the previous window it had previously
2839 // created, if it still had one.
Wale Ogunwale3b232392016-05-13 15:37:13 -07002840 ActivityRecord prev = r.task.topRunningActivityWithStartingWindowLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002841 if (prev != null) {
2842 // We don't want to reuse the previous starting preview if:
2843 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07002844 if (prev.task != r.task) {
2845 prev = null;
2846 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002847 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07002848 else if (prev.nowVisible) {
2849 prev = null;
2850 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002851 }
Wale Ogunwale3b232392016-05-13 15:37:13 -07002852 r.showStartingWindow(prev, showStartingIcon);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002853 }
2854 } else {
2855 // If this is the first activity, don't do any fancy animations,
2856 // because there is nothing for it to animate on top of.
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002857 addConfigOverride(r, task);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002858 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002859 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002860 }
2861
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002862 /**
2863 * Perform a reset of the given task, if needed as part of launching it.
2864 * Returns the new HistoryRecord at the top of the task.
2865 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08002866 /**
2867 * Helper method for #resetTaskIfNeededLocked.
2868 * We are inside of the task being reset... we'll either finish this activity, push it out
2869 * for another task, or leave it as-is.
2870 * @param task The task containing the Activity (taskTop) that might be reset.
2871 * @param forceReset
2872 * @return An ActivityOptions that needs to be processed.
2873 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002874 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002875 ActivityOptions topOptions = null;
2876
2877 int replyChainEnd = -1;
2878 boolean canMoveOptions = true;
2879
2880 // We only do this for activities that are not the root of the task (since if we finish
2881 // the root, we may no longer have the task!).
2882 final ArrayList<ActivityRecord> activities = task.mActivities;
2883 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002884 final int rootActivityNdx = task.findEffectiveRootIndex();
2885 for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002886 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002887 if (target.frontOfTask)
2888 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002889
2890 final int flags = target.info.flags;
2891 final boolean finishOnTaskLaunch =
2892 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2893 final boolean allowTaskReparenting =
2894 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2895 final boolean clearWhenTaskReset =
2896 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
2897
2898 if (!finishOnTaskLaunch
2899 && !clearWhenTaskReset
2900 && target.resultTo != null) {
2901 // If this activity is sending a reply to a previous
2902 // activity, we can't do anything with it now until
2903 // we reach the start of the reply chain.
2904 // XXX note that we are assuming the result is always
2905 // to the previous activity, which is almost always
2906 // the case but we really shouldn't count on.
2907 if (replyChainEnd < 0) {
2908 replyChainEnd = i;
2909 }
2910 } else if (!finishOnTaskLaunch
2911 && !clearWhenTaskReset
2912 && allowTaskReparenting
2913 && target.taskAffinity != null
2914 && !target.taskAffinity.equals(task.affinity)) {
2915 // If this activity has an affinity for another
2916 // task, then we need to move it out of here. We will
2917 // move it as far out of the way as possible, to the
2918 // bottom of the activity stack. This also keeps it
2919 // correctly ordered with any activities we previously
2920 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08002921 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002922 final ActivityRecord bottom =
2923 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08002924 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002925 if (bottom != null && target.taskAffinity != null
2926 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002927 // If the activity currently at the bottom has the
2928 // same task affinity as the one we are moving,
2929 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08002930 targetTask = bottom.task;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002931 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07002932 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002933 } else {
Suprabh Shukla09a88f52015-12-02 14:36:31 -08002934 targetTask = createTaskRecord(
2935 mStackSupervisor.getNextTaskIdForUserLocked(target.userId),
2936 target.info, null, null, null, false);
Craig Mautner329f4122013-11-07 09:10:42 -08002937 targetTask.affinityIntent = target.intent;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002938 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnere3a74d52013-02-22 14:14:58 -08002939 + " out to new task " + target.task);
2940 }
2941
Wale Ogunwale706ed792015-08-02 10:29:44 -07002942 setAppTask(target, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002943
Craig Mautner525f3d92013-05-07 14:01:50 -07002944 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002945 final int start = replyChainEnd < 0 ? i : replyChainEnd;
2946 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07002947 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002948 if (p.finishing) {
2949 continue;
2950 }
2951
Craig Mautnere3a74d52013-02-22 14:14:58 -08002952 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002953 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002954 topOptions = p.takeOptionsLocked();
2955 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002956 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002957 }
2958 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002959 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2960 "Removing activity " + p + " from task=" + task + " adding to task="
2961 + targetTask + " Callers=" + Debug.getCallers(4));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002962 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2963 "Pushing next activity " + p + " out to target's task " + target.task);
Craig Mautnera228ae92014-07-09 05:44:55 -07002964 p.setTask(targetTask, null);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002965 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08002966
Wale Ogunwale706ed792015-08-02 10:29:44 -07002967 setAppTask(p, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002968 }
2969
Wale Ogunwale706ed792015-08-02 10:29:44 -07002970 mWindowManager.moveTaskToBottom(targetTask.taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002971 replyChainEnd = -1;
2972 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2973 // If the activity should just be removed -- either
2974 // because it asks for it, or the task should be
2975 // cleared -- then finish it and anything that is
2976 // part of its reply chain.
2977 int end;
2978 if (clearWhenTaskReset) {
2979 // In this case, we want to finish this activity
2980 // and everything above it, so be sneaky and pretend
2981 // like these are all in the reply chain.
Mark Lu4b5a9a02014-12-09 14:47:13 +08002982 end = activities.size() - 1;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002983 } else if (replyChainEnd < 0) {
2984 end = i;
2985 } else {
2986 end = replyChainEnd;
2987 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002988 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002989 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002990 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002991 if (p.finishing) {
2992 continue;
2993 }
2994 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002995 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002996 topOptions = p.takeOptionsLocked();
2997 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002998 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002999 }
3000 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003001 if (DEBUG_TASKS) Slog.w(TAG_TASKS,
Craig Mautner58547802013-03-05 08:23:53 -08003002 "resetTaskIntendedTask: calling finishActivity on " + p);
Todd Kennedy539db512014-12-15 09:57:55 -08003003 if (finishActivityLocked(
3004 p, Activity.RESULT_CANCELED, null, "reset-task", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003005 end--;
3006 srcPos--;
3007 }
3008 }
3009 replyChainEnd = -1;
3010 } else {
3011 // If we were in the middle of a chain, well the
3012 // activity that started it all doesn't want anything
3013 // special, so leave it all as-is.
3014 replyChainEnd = -1;
3015 }
3016 }
3017
3018 return topOptions;
3019 }
3020
3021 /**
3022 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
3023 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
3024 * @param affinityTask The task we are looking for an affinity to.
3025 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
3026 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
3027 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
3028 */
Craig Mautner525f3d92013-05-07 14:01:50 -07003029 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08003030 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003031 int replyChainEnd = -1;
3032 final int taskId = task.taskId;
3033 final String taskAffinity = task.affinity;
3034
3035 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
3036 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07003037 final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
3038
3039 // Do not operate on or below the effective root Activity.
3040 for (int i = numActivities - 1; i > rootActivityNdx; --i) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003041 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00003042 if (target.frontOfTask)
3043 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003044
3045 final int flags = target.info.flags;
3046 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
3047 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
3048
3049 if (target.resultTo != null) {
3050 // If this activity is sending a reply to a previous
3051 // activity, we can't do anything with it now until
3052 // we reach the start of the reply chain.
3053 // XXX note that we are assuming the result is always
3054 // to the previous activity, which is almost always
3055 // the case but we really shouldn't count on.
3056 if (replyChainEnd < 0) {
3057 replyChainEnd = i;
3058 }
3059 } else if (topTaskIsHigher
3060 && allowTaskReparenting
3061 && taskAffinity != null
3062 && taskAffinity.equals(target.taskAffinity)) {
3063 // This activity has an affinity for our task. Either remove it if we are
3064 // clearing or move it over to our task. Note that
3065 // we currently punt on the case where we are resetting a
3066 // task that is not at the top but who has activities above
3067 // with an affinity to it... this is really not a normal
3068 // case, and we will need to later pull that task to the front
3069 // and usually at that point we will do the reset and pick
3070 // up those remaining activities. (This only happens if
3071 // someone starts an activity in a new task from an activity
3072 // in a task that is not currently on top.)
3073 if (forceReset || finishOnTaskLaunch) {
3074 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003075 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
3076 "Finishing task at index " + start + " to " + i);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003077 for (int srcPos = start; srcPos >= i; --srcPos) {
3078 final ActivityRecord p = activities.get(srcPos);
3079 if (p.finishing) {
3080 continue;
3081 }
Todd Kennedy539db512014-12-15 09:57:55 -08003082 finishActivityLocked(
3083 p, Activity.RESULT_CANCELED, null, "move-affinity", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003084 }
3085 } else {
Craig Mautner77878772013-03-04 19:46:24 -08003086 if (taskInsertionPoint < 0) {
3087 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08003088
Craig Mautner77878772013-03-04 19:46:24 -08003089 }
Craig Mautner77878772013-03-04 19:46:24 -08003090
3091 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003092 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
3093 "Reparenting from task=" + affinityTask + ":" + start + "-" + i
3094 + " to task=" + task + ":" + taskInsertionPoint);
Craig Mautner77878772013-03-04 19:46:24 -08003095 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003096 final ActivityRecord p = activities.get(srcPos);
Craig Mautnera228ae92014-07-09 05:44:55 -07003097 p.setTask(task, null);
Craig Mautner77878772013-03-04 19:46:24 -08003098 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003099
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003100 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3101 "Removing and adding activity " + p + " to stack at " + task
3102 + " callers=" + Debug.getCallers(3));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003103 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Pulling activity " + p
3104 + " from " + srcPos + " in to resetting task " + task);
Wale Ogunwale706ed792015-08-02 10:29:44 -07003105 setAppTask(p, task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003106 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003107 mWindowManager.moveTaskToTop(taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003108
3109 // Now we've moved it in to place... but what if this is
3110 // a singleTop activity and we have put it on top of another
3111 // instance of the same activity? Then we drop the instance
3112 // below so it remains singleTop.
3113 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
3114 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003115 int targetNdx = taskActivities.indexOf(target);
3116 if (targetNdx > 0) {
3117 ActivityRecord p = taskActivities.get(targetNdx - 1);
3118 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08003119 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
3120 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003121 }
3122 }
3123 }
3124 }
3125
3126 replyChainEnd = -1;
3127 }
3128 }
Craig Mautner77878772013-03-04 19:46:24 -08003129 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003130 }
3131
Craig Mautner8849a5e2013-04-02 16:41:03 -07003132 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08003133 ActivityRecord newActivity) {
3134 boolean forceReset =
3135 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
3136 if (ACTIVITY_INACTIVE_RESET_TIME > 0
3137 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
3138 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
3139 forceReset = true;
3140 }
3141 }
3142
3143 final TaskRecord task = taskTop.task;
3144
3145 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
3146 * for remaining tasks. Used for later tasks to reparent to task. */
3147 boolean taskFound = false;
3148
3149 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
3150 ActivityOptions topOptions = null;
3151
Craig Mautner77878772013-03-04 19:46:24 -08003152 // Preserve the location for reparenting in the new task.
3153 int reparentInsertionPoint = -1;
3154
Craig Mautnere3a74d52013-02-22 14:14:58 -08003155 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
3156 final TaskRecord targetTask = mTaskHistory.get(i);
3157
3158 if (targetTask == task) {
3159 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
3160 taskFound = true;
3161 } else {
Craig Mautner77878772013-03-04 19:46:24 -08003162 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
3163 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003164 }
3165 }
3166
Craig Mautner70a86932013-02-28 22:37:44 -08003167 int taskNdx = mTaskHistory.indexOf(task);
riddle_hsu1d7919a2015-03-11 17:09:50 +08003168 if (taskNdx >= 0) {
3169 do {
3170 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
3171 } while (taskTop == null && taskNdx >= 0);
3172 }
Craig Mautner70a86932013-02-28 22:37:44 -08003173
Craig Mautnere3a74d52013-02-22 14:14:58 -08003174 if (topOptions != null) {
3175 // If we got some ActivityOptions from an activity on top that
3176 // was removed from the task, propagate them to the new real top.
3177 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003178 taskTop.updateOptionsLocked(topOptions);
3179 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003180 topOptions.abort();
3181 }
3182 }
3183
3184 return taskTop;
3185 }
3186
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003187 void sendActivityResultLocked(int callingUid, ActivityRecord r,
3188 String resultWho, int requestCode, int resultCode, Intent data) {
3189
3190 if (callingUid > 0) {
3191 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003192 data, r.getUriPermissionsLocked(), r.userId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003193 }
3194
3195 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
3196 + " : who=" + resultWho + " req=" + requestCode
3197 + " res=" + resultCode + " data=" + data);
3198 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
3199 try {
3200 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
3201 list.add(new ResultInfo(resultWho, requestCode,
3202 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08003203 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003204 return;
3205 } catch (Exception e) {
3206 Slog.w(TAG, "Exception thrown sending result to " + r, e);
3207 }
3208 }
3209
3210 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
3211 }
3212
Chong Zhang6cda19c2016-06-14 19:07:56 -07003213 private void adjustFocusedActivityStackLocked(ActivityRecord r, String reason) {
3214 if (!mStackSupervisor.isFocusedStack(this) || mResumedActivity != r) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08003215 return;
3216 }
3217
3218 final ActivityRecord next = topRunningActivityLocked();
3219 final String myReason = reason + " adjustFocus";
3220 if (next != r) {
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08003221 if (next != null && StackId.keepFocusInStackIfPossible(mStackId) && isFocusable()) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08003222 // For freeform, docked, and pinned stacks we always keep the focus within the
Chong Zhang6cda19c2016-06-14 19:07:56 -07003223 // stack as long as there is a running activity.
Wale Ogunwaled045c822015-12-02 09:14:28 -08003224 return;
3225 } else {
3226 final TaskRecord task = r.task;
3227 if (r.frontOfTask && task == topTask() && task.isOverHomeStack()) {
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07003228 final int taskToReturnTo = task.getTaskToReturnTo();
3229
Wale Ogunwaled045c822015-12-02 09:14:28 -08003230 // For non-fullscreen stack, we want to move the focus to the next visible
3231 // stack to prevent the home screen from moving to the top and obscuring
3232 // other visible stacks.
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07003233 if (!mFullscreen
3234 && adjustFocusToNextFocusableStackLocked(taskToReturnTo, myReason)) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08003235 return;
3236 }
3237 // Move the home stack to the top if this stack is fullscreen or there is no
3238 // other visible stack.
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07003239 if (mStackSupervisor.moveHomeStackTaskToTop(taskToReturnTo, myReason)) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08003240 // Activity focus was already adjusted. Nothing else to do...
3241 return;
Wale Ogunwaled80c2632015-03-13 10:26:26 -07003242 }
Craig Mautner04f0b702013-10-22 12:31:01 -07003243 }
3244 }
Wale Ogunwaled045c822015-12-02 09:14:28 -08003245 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08003246
Chong Zhang6cda19c2016-06-14 19:07:56 -07003247 mStackSupervisor.moveFocusableActivityStackToFrontLocked(
3248 mStackSupervisor.topRunningActivityLocked(), myReason);
Craig Mautner04f0b702013-10-22 12:31:01 -07003249 }
3250
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07003251 private boolean adjustFocusToNextFocusableStackLocked(int taskToReturnTo, String reason) {
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08003252 final ActivityStack stack = getNextFocusableStackLocked();
3253 final String myReason = reason + " adjustFocusToNextFocusableStack";
Wale Ogunwaled697cea2015-02-20 17:19:49 -08003254 if (stack == null) {
3255 return false;
3256 }
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07003257
Wale Ogunwalec750f5f2016-03-28 07:43:51 -07003258 final ActivityRecord top = stack.topRunningActivityLocked();
3259
3260 if (stack.isHomeStack() && (top == null || !top.visible)) {
3261 // If we will be focusing on the home stack next and its current top activity isn't
3262 // visible, then use the task return to value to determine the home task to display next.
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07003263 return mStackSupervisor.moveHomeStackTaskToTop(taskToReturnTo, reason);
3264 }
Chong Zhang6cda19c2016-06-14 19:07:56 -07003265
3266 stack.moveToFront(myReason);
3267 return true;
Wale Ogunwaled697cea2015-02-20 17:19:49 -08003268 }
3269
Craig Mautnerf3333272013-04-22 10:55:53 -07003270 final void stopActivityLocked(ActivityRecord r) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003271 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Stopping: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003272 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
3273 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
3274 if (!r.finishing) {
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07003275 if (!mService.isSleepingLocked()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003276 if (DEBUG_STATES) Slog.d(TAG_STATES, "no-history finish of " + r);
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07003277 if (requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
3278 "stop-no-history", false)) {
3279 // Activity was finished, no need to continue trying to schedule stop.
Chong Zhang6cda19c2016-06-14 19:07:56 -07003280 adjustFocusedActivityStackLocked(r, "stopActivityFinished");
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07003281 r.resumeKeyDispatchingLocked();
3282 return;
3283 }
Christopher Tated3f175c2012-06-14 14:16:54 -07003284 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003285 if (DEBUG_STATES) Slog.d(TAG_STATES, "Not finishing noHistory " + r
Christopher Tated3f175c2012-06-14 14:16:54 -07003286 + " on stop because we're just sleeping");
3287 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003288 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07003289 }
3290
3291 if (r.app != null && r.app.thread != null) {
Chong Zhang6cda19c2016-06-14 19:07:56 -07003292 adjustFocusedActivityStackLocked(r, "stopActivity");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08003293 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003294 try {
3295 r.stopped = false;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003296 if (DEBUG_STATES) Slog.v(TAG_STATES,
3297 "Moving to STOPPING: " + r + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003298 r.state = ActivityState.STOPPING;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003299 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
3300 "Stopping visible=" + r.visible + " for " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003301 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003302 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003303 }
Wale Ogunwalecd7043e2016-02-27 17:37:46 -08003304 EventLogTags.writeAmStopActivity(
3305 r.userId, System.identityHashCode(r), r.shortComponentName);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003306 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07003307 if (mService.isSleepingOrShuttingDownLocked()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08003308 r.setSleeping(true);
3309 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003310 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003311 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003312 } catch (Exception e) {
3313 // Maybe just ignore exceptions here... if the process
3314 // has crashed, our death notification will clean things
3315 // up.
3316 Slog.w(TAG, "Exception thrown during pause", e);
3317 // Just in case, assume it to be stopped.
3318 r.stopped = true;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003319 if (DEBUG_STATES) Slog.v(TAG_STATES, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003320 r.state = ActivityState.STOPPED;
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08003321 if (r.deferRelaunchUntilPaused) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003322 destroyActivityLocked(r, true, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003323 }
3324 }
3325 }
3326 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07003327
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003328 /**
3329 * @return Returns true if the activity is being finished, false if for
3330 * some reason it is being left as-is.
3331 */
3332 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003333 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003334 ActivityRecord r = isInStackLocked(token);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003335 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(TAG_STATES,
3336 "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07003337 + ", result=" + resultCode + ", data=" + resultData
3338 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003339 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003340 return false;
3341 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003342
Craig Mautnerd44711d2013-02-23 11:24:36 -08003343 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003344 return true;
3345 }
3346
Craig Mautnerd2328952013-03-05 12:46:26 -08003347 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08003348 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3349 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3350 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3351 ActivityRecord r = activities.get(activityNdx);
3352 if (r.resultTo == self && r.requestCode == requestCode) {
3353 if ((r.resultWho == null && resultWho == null) ||
3354 (r.resultWho != null && r.resultWho.equals(resultWho))) {
3355 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
3356 false);
3357 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003358 }
3359 }
3360 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003361 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003362 }
3363
Adrian Roos20d7df32016-01-12 18:59:43 +01003364 final TaskRecord finishTopRunningActivityLocked(ProcessRecord app, String reason) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07003365 ActivityRecord r = topRunningActivityLocked();
Adrian Roos20d7df32016-01-12 18:59:43 +01003366 TaskRecord finishedTask = null;
3367 if (r == null || r.app != app) {
3368 return null;
3369 }
3370 Slog.w(TAG, " Force finishing activity "
3371 + r.intent.getComponent().flattenToShortString());
3372 int taskNdx = mTaskHistory.indexOf(r.task);
3373 int activityNdx = r.task.mActivities.indexOf(r);
3374 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
3375 finishedTask = r.task;
3376 // Also terminate any activities below it that aren't yet
3377 // stopped, to avoid a situation where one will get
3378 // re-start our crashing activity once it gets resumed again.
3379 --activityNdx;
3380 if (activityNdx < 0) {
3381 do {
3382 --taskNdx;
3383 if (taskNdx < 0) {
3384 break;
3385 }
3386 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
3387 } while (activityNdx < 0);
3388 }
3389 if (activityNdx >= 0) {
3390 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
3391 if (r.state == ActivityState.RESUMED
3392 || r.state == ActivityState.PAUSING
3393 || r.state == ActivityState.PAUSED) {
3394 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
3395 Slog.w(TAG, " Force finishing activity "
3396 + r.intent.getComponent().flattenToShortString());
3397 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003398 }
3399 }
3400 }
Adrian Roos20d7df32016-01-12 18:59:43 +01003401 return finishedTask;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003402 }
3403
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003404 final void finishVoiceTask(IVoiceInteractionSession session) {
3405 IBinder sessionBinder = session.asBinder();
3406 boolean didOne = false;
3407 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3408 TaskRecord tr = mTaskHistory.get(taskNdx);
3409 if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
3410 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
3411 ActivityRecord r = tr.mActivities.get(activityNdx);
3412 if (!r.finishing) {
3413 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
3414 false);
3415 didOne = true;
3416 }
3417 }
Amith Yamasani0af6fa72016-01-17 15:36:19 -08003418 } else {
3419 // Check if any of the activities are using voice
3420 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
3421 ActivityRecord r = tr.mActivities.get(activityNdx);
3422 if (r.voiceSession != null
3423 && r.voiceSession.asBinder() == sessionBinder) {
3424 // Inform of cancellation
3425 r.clearVoiceSessionLocked();
3426 try {
3427 r.app.thread.scheduleLocalVoiceInteractionStarted((IBinder) r.appToken,
3428 null);
3429 } catch (RemoteException re) {
3430 // Ok
3431 }
Amith Yamasani0af6fa72016-01-17 15:36:19 -08003432 mService.finishRunningVoiceLocked();
3433 break;
3434 }
3435 }
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003436 }
3437 }
Amith Yamasani0af6fa72016-01-17 15:36:19 -08003438
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003439 if (didOne) {
3440 mService.updateOomAdjLocked();
3441 }
3442 }
3443
Craig Mautnerd2328952013-03-05 12:46:26 -08003444 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003445 ArrayList<ActivityRecord> activities = r.task.mActivities;
3446 for (int index = activities.indexOf(r); index >= 0; --index) {
3447 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08003448 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003449 break;
3450 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003451 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003452 }
3453 return true;
3454 }
3455
Dianne Hackborn5c607432012-02-28 14:44:19 -08003456 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
3457 // send the result
3458 ActivityRecord resultTo = r.resultTo;
3459 if (resultTo != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003460 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "Adding result to " + resultTo
Dianne Hackborn5c607432012-02-28 14:44:19 -08003461 + " who=" + r.resultWho + " req=" + r.requestCode
3462 + " res=" + resultCode + " data=" + resultData);
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003463 if (resultTo.userId != r.userId) {
Nicolas Prevot6b942b82014-06-02 15:20:42 +01003464 if (resultData != null) {
Nicolas Prevot107f7b72015-07-01 16:31:48 +01003465 resultData.prepareToLeaveUser(r.userId);
Nicolas Prevot6b942b82014-06-02 15:20:42 +01003466 }
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003467 }
Dianne Hackborn5c607432012-02-28 14:44:19 -08003468 if (r.info.applicationInfo.uid > 0) {
3469 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
3470 resultTo.packageName, resultData,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003471 resultTo.getUriPermissionsLocked(), resultTo.userId);
Dianne Hackborn5c607432012-02-28 14:44:19 -08003472 }
3473 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
3474 resultData);
3475 r.resultTo = null;
3476 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003477 else if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "No result destination from " + r);
Dianne Hackborn5c607432012-02-28 14:44:19 -08003478
3479 // Make sure this HistoryRecord is not holding on to other resources,
3480 // because clients have remote IPC references to this object so we
3481 // can't assume that will go away and want to avoid circular IPC refs.
3482 r.results = null;
3483 r.pendingResults = null;
3484 r.newIntents = null;
3485 r.icicle = null;
3486 }
3487
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003488 /**
3489 * @return Returns true if this activity has been removed from the history
3490 * list, or false if it is still in the list and will be removed later.
3491 */
Craig Mautnerf3333272013-04-22 10:55:53 -07003492 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
3493 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003494 if (r.finishing) {
3495 Slog.w(TAG, "Duplicate finish request for " + r);
3496 return false;
3497 }
3498
Wale Ogunwale7d701172015-03-11 15:36:30 -07003499 r.makeFinishingLocked();
Craig Mautneraea74a52014-03-08 14:23:10 -08003500 final TaskRecord task = r.task;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003501 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003502 r.userId, System.identityHashCode(r),
Craig Mautneraea74a52014-03-08 14:23:10 -08003503 task.taskId, r.shortComponentName, reason);
3504 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003505 final int index = activities.indexOf(r);
3506 if (index < (activities.size() - 1)) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003507 task.setFrontOfTask();
Craig Mautnerd00f4742014-03-12 14:17:26 -07003508 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003509 // If the caller asked that this activity (and all above it)
3510 // be cleared when the task is reset, don't lose that information,
3511 // but propagate it up to the next activity.
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08003512 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003513 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003514 }
3515 }
3516
3517 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07003518
Chong Zhang6cda19c2016-06-14 19:07:56 -07003519 adjustFocusedActivityStackLocked(r, "finishActivity");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003520
Dianne Hackborn5c607432012-02-28 14:44:19 -08003521 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07003522
Jorim Jaggiaf80db42016-04-07 19:19:15 -07003523 final boolean endTask = index <= 0;
3524 final int transit = endTask ? TRANSIT_TASK_CLOSE : TRANSIT_ACTIVITY_CLOSE;
Craig Mautnerde4ef022013-04-07 19:01:33 -07003525 if (mResumedActivity == r) {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07003526
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003527 if (DEBUG_VISIBILITY || DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003528 "Prepare close transition: finishing " + r);
Jorim Jaggiaf80db42016-04-07 19:19:15 -07003529 mWindowManager.prepareAppTransition(transit, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08003530
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003531 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003532 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003533
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08003534 if (mPausingActivity == null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003535 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish needs to pause: " + r);
3536 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
3537 "finish() => pause with userLeaving=false");
Wale Ogunwale950faff2016-08-08 09:51:04 -07003538 startPausingLocked(false, false, null, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003539 }
3540
Craig Mautneraea74a52014-03-08 14:23:10 -08003541 if (endTask) {
Craig Mautner15df08a2015-04-01 12:17:18 -07003542 mStackSupervisor.removeLockedTaskLocked(task);
Craig Mautneraea74a52014-03-08 14:23:10 -08003543 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003544 } else if (r.state != ActivityState.PAUSING) {
3545 // If the activity is PAUSING, we will complete the finish once
3546 // it is done pausing; else we can just directly finish it here.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003547 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish not pausing: " + r);
Chong Zhang66ed4c62015-11-12 14:56:28 -08003548 if (r.visible) {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07003549 mWindowManager.prepareAppTransition(transit, false);
Chong Zhang66ed4c62015-11-12 14:56:28 -08003550 mWindowManager.setAppVisibility(r.appToken, false);
Jorim Jaggiaf80db42016-04-07 19:19:15 -07003551 mWindowManager.executeAppTransition();
Chong Zhangb8bd0692016-04-27 17:29:28 -07003552 if (!mStackSupervisor.mWaitingVisibleActivities.contains(r)) {
3553 mStackSupervisor.mWaitingVisibleActivities.add(r);
3554 }
Chong Zhang66ed4c62015-11-12 14:56:28 -08003555 }
Chong Zhang4c5f7ff2016-04-22 11:31:51 -07003556 return finishCurrentActivityLocked(r, (r.visible || r.nowVisible) ?
3557 FINISH_AFTER_VISIBLE : FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003558 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003559 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish waiting for pause of: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003560 }
3561
3562 return false;
3563 }
3564
Craig Mautnerf3333272013-04-22 10:55:53 -07003565 static final int FINISH_IMMEDIATELY = 0;
3566 static final int FINISH_AFTER_PAUSE = 1;
3567 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003568
Craig Mautnerf3333272013-04-22 10:55:53 -07003569 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003570 // First things first: if this activity is currently visible,
3571 // and the resumed activity is not yet visible, then hold off on
3572 // finishing until the resumed one becomes visible.
Chong Zhang824b6dc2016-04-27 14:11:12 -07003573
3574 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
3575
Chong Zhangefd9a5b2016-04-26 16:21:07 -07003576 if (mode == FINISH_AFTER_VISIBLE && (r.visible || r.nowVisible)
Chong Zhang824b6dc2016-04-27 14:11:12 -07003577 && next != null && !next.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07003578 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
Chong Zhang46b1ac62016-02-18 17:53:57 -08003579 addToStopping(r, false /* immediate */);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003580 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003581 if (DEBUG_STATES) Slog.v(TAG_STATES,
3582 "Moving to STOPPING: "+ r + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003583 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003584 if (oomAdj) {
3585 mService.updateOomAdjLocked();
3586 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003587 return r;
3588 }
3589
3590 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003591 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07003592 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003593 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003594 if (mResumedActivity == r) {
3595 mResumedActivity = null;
3596 }
3597 final ActivityState prevState = r.state;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003598 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003599 r.state = ActivityState.FINISHING;
Andrii Kulian995fa2b2016-07-29 12:55:41 -07003600 final boolean finishingActivityInNonFocusedStack
3601 = r.task.stack != mStackSupervisor.getFocusedStack()
3602 && prevState == ActivityState.PAUSED && mode == FINISH_AFTER_VISIBLE;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003603
3604 if (mode == FINISH_IMMEDIATELY
Wale Ogunwaleae30f302016-05-02 10:35:45 -07003605 || (prevState == ActivityState.PAUSED
Andrii Kulian995fa2b2016-07-29 12:55:41 -07003606 && (mode == FINISH_AFTER_PAUSE || mStackId == PINNED_STACK_ID))
3607 || finishingActivityInNonFocusedStack
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003608 || prevState == ActivityState.STOPPED
3609 || prevState == ActivityState.INITIALIZING) {
Wale Ogunwale7d701172015-03-11 15:36:30 -07003610 r.makeFinishingLocked();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003611 boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm");
Andrii Kulian7318d632016-07-20 18:59:28 -07003612
Andrii Kulian995fa2b2016-07-29 12:55:41 -07003613 if (finishingActivityInNonFocusedStack) {
3614 // Finishing activity that was in paused state and it was in not currently focused
3615 // stack, need to make something visible in its place.
Andrii Kulian7318d632016-07-20 18:59:28 -07003616 mStackSupervisor.ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
3617 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003618 if (activityRemoved) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08003619 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003620 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003621 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS,
Craig Mautnerd163e752014-06-13 17:18:47 -07003622 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
3623 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003624 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003625 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003626
3627 // Need to go through the full pause cycle to get this
3628 // activity into the stopped state and then finish it.
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003629 if (DEBUG_ALL) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07003630 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02003631 r.resumeKeyDispatchingLocked();
Wale Ogunwaled046a012015-12-24 13:05:59 -08003632 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003633 return r;
3634 }
3635
Craig Mautneree36c772014-07-16 14:56:05 -07003636 void finishAllActivitiesLocked(boolean immediately) {
3637 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003638 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3639 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3640 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3641 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07003642 noActivitiesInStack = false;
3643 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003644 continue;
3645 }
Craig Mautneree36c772014-07-16 14:56:05 -07003646 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003647 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
3648 }
3649 }
Craig Mautneree36c772014-07-16 14:56:05 -07003650 if (noActivitiesInStack) {
3651 mActivityContainer.onTaskListEmptyLocked();
3652 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003653 }
3654
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003655 final boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
3656 // Basic case: for simple app-centric recents, we need to recreate
3657 // the task if the affinity has changed.
3658 if (srec == null || srec.task.affinity == null ||
3659 !srec.task.affinity.equals(destAffinity)) {
3660 return true;
3661 }
3662 // Document-centric case: an app may be split in to multiple documents;
3663 // they need to re-create their task if this current activity is the root
3664 // of a document, unless simply finishing it will return them to the the
3665 // correct app behind.
Dianne Hackbornf3eb8432014-09-19 17:21:46 -07003666 if (srec.frontOfTask && srec.task != null && srec.task.getBaseIntent() != null
3667 && srec.task.getBaseIntent().isDocument()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003668 // Okay, this activity is at the root of its task. What to do, what to do...
3669 if (srec.task.getTaskToReturnTo() != ActivityRecord.APPLICATION_ACTIVITY_TYPE) {
3670 // Finishing won't return to an application, so we need to recreate.
3671 return true;
3672 }
3673 // We now need to get the task below it to determine what to do.
3674 int taskIdx = mTaskHistory.indexOf(srec.task);
3675 if (taskIdx <= 0) {
3676 Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
3677 return false;
3678 }
3679 if (taskIdx == 0) {
3680 // At the bottom of the stack, nothing to go back to.
3681 return true;
3682 }
3683 TaskRecord prevTask = mTaskHistory.get(taskIdx);
3684 if (!srec.task.affinity.equals(prevTask.affinity)) {
3685 // These are different apps, so need to recreate.
3686 return true;
3687 }
3688 }
3689 return false;
3690 }
3691
Wale Ogunwale7d701172015-03-11 15:36:30 -07003692 final boolean navigateUpToLocked(ActivityRecord srec, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003693 Intent resultData) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003694 final TaskRecord task = srec.task;
3695 final ArrayList<ActivityRecord> activities = task.mActivities;
3696 final int start = activities.indexOf(srec);
3697 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003698 return false;
3699 }
3700 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08003701 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003702 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08003703 final ComponentName dest = destIntent.getComponent();
3704 if (start > 0 && dest != null) {
3705 for (int i = finishTo; i >= 0; i--) {
3706 ActivityRecord r = activities.get(i);
3707 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003708 r.info.name.equals(dest.getClassName())) {
3709 finishTo = i;
3710 parent = r;
3711 foundParentInTask = true;
3712 break;
3713 }
3714 }
3715 }
3716
3717 IActivityController controller = mService.mController;
3718 if (controller != null) {
3719 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
3720 if (next != null) {
3721 // ask watcher if this is allowed
3722 boolean resumeOK = true;
3723 try {
3724 resumeOK = controller.activityResuming(next.packageName);
3725 } catch (RemoteException e) {
3726 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003727 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003728 }
3729
3730 if (!resumeOK) {
3731 return false;
3732 }
3733 }
3734 }
3735 final long origId = Binder.clearCallingIdentity();
3736 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003737 ActivityRecord r = activities.get(i);
3738 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003739 // Only return the supplied result for the first activity finished
3740 resultCode = Activity.RESULT_CANCELED;
3741 resultData = null;
3742 }
3743
3744 if (parent != null && foundParentInTask) {
3745 final int parentLaunchMode = parent.info.launchMode;
3746 final int destIntentFlags = destIntent.getFlags();
3747 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
3748 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
3749 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
3750 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003751 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
3752 srec.packageName);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003753 } else {
3754 try {
3755 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
3756 destIntent.getComponent(), 0, srec.userId);
Filip Gruszczynski303210b2016-01-08 16:28:08 -08003757 int res = mService.mActivityStarter.startActivityLocked(srec.app.thread,
3758 destIntent, null /*ephemeralIntent*/, null, aInfo, null /*rInfo*/, null,
3759 null, parent.appToken, null, 0, -1, parent.launchedFromUid,
Todd Kennedy7440f172015-12-09 14:31:22 -08003760 parent.launchedFromPackage, -1, parent.launchedFromUid, 0, null,
3761 false, true, null, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003762 foundParentInTask = res == ActivityManager.START_SUCCESS;
3763 } catch (RemoteException e) {
3764 foundParentInTask = false;
3765 }
3766 requestFinishActivityLocked(parent.appToken, resultCode,
Todd Kennedy539db512014-12-15 09:57:55 -08003767 resultData, "navigate-top", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003768 }
3769 }
3770 Binder.restoreCallingIdentity(origId);
3771 return foundParentInTask;
3772 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003773 /**
3774 * Perform the common clean-up of an activity record. This is called both
3775 * as part of destroyActivityLocked() (when destroying the client-side
3776 * representation) and cleaning things up as a result of its hosting
3777 * processing going away, in which case there is no remaining client-side
3778 * state to destroy so only the cleanup here is needed.
Craig Mautneracebdc82015-02-24 10:53:03 -08003779 *
3780 * Note: Call before #removeActivityFromHistoryLocked.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003781 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003782 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
3783 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003784 if (mResumedActivity == r) {
3785 mResumedActivity = null;
3786 }
Craig Mautner1872ce32014-03-28 23:05:42 +00003787 if (mPausingActivity == r) {
3788 mPausingActivity = null;
3789 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003790
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08003791 r.deferRelaunchUntilPaused = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003792 r.frozenBeforeDestroy = false;
3793
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003794 if (setState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003795 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (cleaning up)");
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003796 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003797 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003798 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003799 }
3800
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003801 // Make sure this record is no longer in the pending finishes list.
3802 // This could happen, for example, if we are trimming activities
3803 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07003804 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003805 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07003806
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003807 // Remove any pending results.
3808 if (r.finishing && r.pendingResults != null) {
3809 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
3810 PendingIntentRecord rec = apr.get();
3811 if (rec != null) {
3812 mService.cancelIntentSenderLocked(rec, false);
3813 }
3814 }
3815 r.pendingResults = null;
3816 }
3817
3818 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07003819 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003820 }
3821
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003822 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003823 removeTimeoutsForActivityLocked(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003824 if (getVisibleBehindActivity() == r) {
3825 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003826 }
Wale Ogunwale8fd75422016-06-24 14:20:37 -07003827
3828 // Clean-up activities are no longer relaunching (e.g. app process died). Notify window
3829 // manager so it can update its bookkeeping.
3830 mWindowManager.notifyAppRelaunchesCleared(r.appToken);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003831 }
3832
3833 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07003834 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003835 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003836 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07003837 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07003838 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003839 }
3840
Chong Zhangbffd8892016-08-08 11:16:06 -07003841 private void removeActivityFromHistoryLocked(ActivityRecord r, String reason) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003842 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003843 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
Wale Ogunwale7d701172015-03-11 15:36:30 -07003844 r.makeFinishingLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003845 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3846 "Removing activity " + r + " from stack callers=" + Debug.getCallers(5));
3847
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003848 r.takeFromHistory();
3849 removeTimeoutsForActivityLocked(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003850 if (DEBUG_STATES) Slog.v(TAG_STATES,
3851 "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003852 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003853 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003854 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003855 mWindowManager.removeAppToken(r.appToken);
Craig Mautner312ba862014-02-10 17:55:01 -08003856 final TaskRecord task = r.task;
3857 if (task != null && task.removeActivity(r)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003858 if (DEBUG_STACK) Slog.i(TAG_STACK,
Craig Mautner312ba862014-02-10 17:55:01 -08003859 "removeActivityFromHistoryLocked: last activity removed from " + this);
Chong Zhangbffd8892016-08-08 11:16:06 -07003860 if (mStackSupervisor.isFocusedStack(this) && task == topTask() &&
Craig Mautner84984fa2014-06-19 11:19:20 -07003861 task.isOverHomeStack()) {
Craig Mautner299f9602015-01-26 09:47:33 -08003862 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(), reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003863 }
Craig Mautner299f9602015-01-26 09:47:33 -08003864 removeTask(task, reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003865 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003866 cleanUpActivityServicesLocked(r);
3867 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003868 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003869
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003870 /**
3871 * Perform clean-up of service connections in an activity record.
3872 */
3873 final void cleanUpActivityServicesLocked(ActivityRecord r) {
3874 // Throw away any services that have been bound by this activity.
3875 if (r.connections != null) {
3876 Iterator<ConnectionRecord> it = r.connections.iterator();
3877 while (it.hasNext()) {
3878 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07003879 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003880 }
3881 r.connections = null;
3882 }
3883 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003884
Craig Mautneree2e45a2014-06-27 12:10:03 -07003885 final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003886 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003887 msg.obj = new ScheduleDestroyArgs(owner, reason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003888 mHandler.sendMessage(msg);
3889 }
3890
Craig Mautneree2e45a2014-06-27 12:10:03 -07003891 final void destroyActivitiesLocked(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003892 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003893 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003894 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3895 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3896 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3897 final ActivityRecord r = activities.get(activityNdx);
3898 if (r.finishing) {
3899 continue;
3900 }
3901 if (r.fullscreen) {
3902 lastIsOpaque = true;
3903 }
3904 if (owner != null && r.app != owner) {
3905 continue;
3906 }
3907 if (!lastIsOpaque) {
3908 continue;
3909 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003910 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003911 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Destroying " + r + " in state " + r.state
Craig Mautnerd44711d2013-02-23 11:24:36 -08003912 + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003913 + " pausing=" + mPausingActivity + " for reason " + reason);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003914 if (destroyActivityLocked(r, true, reason)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003915 activityRemoved = true;
3916 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003917 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003918 }
3919 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003920 if (activityRemoved) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08003921 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003922 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003923 }
3924
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003925 final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
3926 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003927 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
3928 "Destroying " + r + " in state " + r.state + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003929 + " pausing=" + mPausingActivity + " for reason " + reason);
3930 return destroyActivityLocked(r, true, reason);
3931 }
3932 return false;
3933 }
3934
3935 final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
3936 String reason) {
3937 // Iterate over tasks starting at the back (oldest) first.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003938 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Trying to release some activities in " + app);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003939 int maxTasks = tasks.size() / 4;
3940 if (maxTasks < 1) {
3941 maxTasks = 1;
3942 }
3943 int numReleased = 0;
3944 for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
3945 final TaskRecord task = mTaskHistory.get(taskNdx);
3946 if (!tasks.contains(task)) {
3947 continue;
3948 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003949 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Looking for activities to release in " + task);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003950 int curNum = 0;
3951 final ArrayList<ActivityRecord> activities = task.mActivities;
3952 for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
3953 final ActivityRecord activity = activities.get(actNdx);
3954 if (activity.app == app && activity.isDestroyable()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003955 if (DEBUG_RELEASE) Slog.v(TAG_RELEASE, "Destroying " + activity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003956 + " in state " + activity.state + " resumed=" + mResumedActivity
3957 + " pausing=" + mPausingActivity + " for reason " + reason);
3958 destroyActivityLocked(activity, true, reason);
3959 if (activities.get(actNdx) != activity) {
3960 // Was removed from list, back up so we don't miss the next one.
3961 actNdx--;
3962 }
3963 curNum++;
3964 }
3965 }
3966 if (curNum > 0) {
3967 numReleased += curNum;
3968 maxTasks--;
3969 if (mTaskHistory.get(taskNdx) != task) {
3970 // The entire task got removed, back up so we don't miss the next one.
3971 taskNdx--;
3972 }
3973 }
3974 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003975 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE,
3976 "Done releasing: did " + numReleased + " activities");
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003977 return numReleased;
3978 }
3979
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003980 /**
3981 * Destroy the current CLIENT SIDE instance of an activity. This may be
3982 * called both when actually finishing an activity, or when performing
3983 * a configuration switch where we destroy the current client-side object
3984 * but then create a new client-side object for this same HistoryRecord.
3985 */
Craig Mautneree2e45a2014-06-27 12:10:03 -07003986 final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003987 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(TAG_SWITCH,
3988 "Removing activity from " + reason + ": token=" + r
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07003989 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003990 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003991 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07003992 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003993
3994 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003995
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003996 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003997
3998 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003999
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004000 if (hadApp) {
4001 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004002 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004003 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
4004 mService.mHeavyWeightProcess = null;
4005 mService.mHandler.sendEmptyMessage(
4006 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
4007 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07004008 if (r.app.activities.isEmpty()) {
Dianne Hackborn465fa392014-09-14 14:21:18 -07004009 // Update any services we are bound to that might care about whether
4010 // their client may have activities.
4011 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07004012 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07004013 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07004014 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004015 }
4016 }
4017
4018 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004019
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004020 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004021 if (DEBUG_SWITCH) Slog.i(TAG_SWITCH, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08004022 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004023 r.configChangeFlags);
4024 } catch (Exception e) {
4025 // We can just ignore exceptions here... if the process
4026 // has crashed, our death notification will clean things
4027 // up.
4028 //Slog.w(TAG, "Exception thrown during finish", e);
4029 if (r.finishing) {
Chong Zhangbffd8892016-08-08 11:16:06 -07004030 removeActivityFromHistoryLocked(r, reason + " exceptionInScheduleDestroy");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004031 removedFromHistory = true;
4032 skipDestroy = true;
4033 }
4034 }
4035
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004036 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004037
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004038 // If the activity is finishing, we need to wait on removing it
4039 // from the list to give it a chance to do its cleanup. During
4040 // that time it may make calls back with its token so we need to
4041 // be able to find it on the list and so we don't want to remove
4042 // it from the list yet. Otherwise, we can just immediately put
4043 // it in the destroyed state since we are not removing it from the
4044 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004045 if (r.finishing && !skipDestroy) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004046 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYING: " + r
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004047 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004048 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07004049 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004050 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
4051 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004052 if (DEBUG_STATES) Slog.v(TAG_STATES,
4053 "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004054 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004055 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004056 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004057 }
4058 } else {
4059 // remove this record from the history.
4060 if (r.finishing) {
Chong Zhangbffd8892016-08-08 11:16:06 -07004061 removeActivityFromHistoryLocked(r, reason + " hadNoApp");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004062 removedFromHistory = true;
4063 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004064 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004065 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004066 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004067 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004068 }
4069 }
4070
4071 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004072
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004073 if (!mLRUActivities.remove(r) && hadApp) {
4074 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
4075 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004076
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004077 return removedFromHistory;
4078 }
4079
Craig Mautner299f9602015-01-26 09:47:33 -08004080 final void activityDestroyedLocked(IBinder token, String reason) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004081 final long origId = Binder.clearCallingIdentity();
4082 try {
Wale Ogunwale7d701172015-03-11 15:36:30 -07004083 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautnerd2328952013-03-05 12:46:26 -08004084 if (r != null) {
4085 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004086 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004087 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS, "activityDestroyedLocked: r=" + r);
Craig Mautnerd2328952013-03-05 12:46:26 -08004088
Wale Ogunwale60454db2015-01-23 16:05:07 -08004089 if (isInStackLocked(r) != null) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004090 if (r.state == ActivityState.DESTROYING) {
4091 cleanUpActivityLocked(r, true, false);
Chong Zhangbffd8892016-08-08 11:16:06 -07004092 removeActivityFromHistoryLocked(r, reason);
Craig Mautnerd2328952013-03-05 12:46:26 -08004093 }
4094 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08004095 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08004096 } finally {
4097 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004098 }
4099 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004100
Todd Kennedyaab56db2015-01-30 09:39:53 -08004101 void releaseBackgroundResources(ActivityRecord r) {
Jose Lima4b6c6692014-08-12 17:41:12 -07004102 if (hasVisibleBehindActivity() &&
4103 !mHandler.hasMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG)) {
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08004104 if (r == topRunningActivityLocked()
4105 && getStackVisibilityLocked(null) == STACK_VISIBLE) {
Craig Mautner64ccb702014-10-01 09:38:40 -07004106 // Don't release the top activity if it has requested to run behind the next
Filip Gruszczynski4e7fe712016-01-13 13:22:44 -08004107 // activity and the stack is currently visible.
Craig Mautner64ccb702014-10-01 09:38:40 -07004108 return;
4109 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004110 if (DEBUG_STATES) Slog.d(TAG_STATES, "releaseBackgroundResources activtyDisplay=" +
Jose Lima4b6c6692014-08-12 17:41:12 -07004111 mActivityContainer.mActivityDisplay + " visibleBehind=" + r + " app=" + r.app +
Craig Mautneree2e45a2014-06-27 12:10:03 -07004112 " thread=" + r.app.thread);
4113 if (r != null && r.app != null && r.app.thread != null) {
4114 try {
Jose Lima4b6c6692014-08-12 17:41:12 -07004115 r.app.thread.scheduleCancelVisibleBehind(r.appToken);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004116 } catch (RemoteException e) {
4117 }
Jose Lima4b6c6692014-08-12 17:41:12 -07004118 mHandler.sendEmptyMessageDelayed(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG, 500);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004119 } else {
Jose Lima4b6c6692014-08-12 17:41:12 -07004120 Slog.e(TAG, "releaseBackgroundResources: activity " + r + " no longer running");
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08004121 backgroundResourcesReleased();
Craig Mautneree2e45a2014-06-27 12:10:03 -07004122 }
4123 }
4124 }
4125
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08004126 final void backgroundResourcesReleased() {
Jose Lima4b6c6692014-08-12 17:41:12 -07004127 mHandler.removeMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG);
4128 final ActivityRecord r = getVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07004129 if (r != null) {
4130 mStackSupervisor.mStoppingActivities.add(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07004131 setVisibleBehindActivity(null);
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08004132 mStackSupervisor.scheduleIdleTimeoutLocked(null);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004133 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08004134 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Craig Mautneree2e45a2014-06-27 12:10:03 -07004135 }
4136
Jose Lima4b6c6692014-08-12 17:41:12 -07004137 boolean hasVisibleBehindActivity() {
4138 return isAttached() && mActivityContainer.mActivityDisplay.hasVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07004139 }
4140
Jose Lima4b6c6692014-08-12 17:41:12 -07004141 void setVisibleBehindActivity(ActivityRecord r) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07004142 if (isAttached()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07004143 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004144 }
4145 }
4146
Jose Lima4b6c6692014-08-12 17:41:12 -07004147 ActivityRecord getVisibleBehindActivity() {
4148 return isAttached() ? mActivityContainer.mActivityDisplay.mVisibleBehindActivity : null;
Craig Mautneree2e45a2014-06-27 12:10:03 -07004149 }
4150
Craig Mautner05d6272ba2013-02-11 09:39:27 -08004151 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
4152 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004153 int i = list.size();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004154 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
4155 "Removing app " + app + " from list " + listName + " with " + i + " entries");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004156 while (i > 0) {
4157 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08004158 ActivityRecord r = list.get(i);
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004159 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004160 if (r.app == app) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004161 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004162 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07004163 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004164 }
4165 }
4166 }
4167
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004168 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
4169 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07004170 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
4171 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07004172 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
4173 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07004174 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004175 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07004176 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
4177 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004178
4179 boolean hasVisibleActivities = false;
4180
4181 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08004182 int i = numActivities();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004183 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
4184 "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08004185 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4186 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4187 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4188 final ActivityRecord r = activities.get(activityNdx);
4189 --i;
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004190 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
4191 "Record #" + i + " " + r + ": app=" + r.app);
Craig Mautner0247fc82013-02-28 14:32:06 -08004192 if (r.app == app) {
riddle_hsu558e8492015-04-02 16:43:13 +08004193 if (r.visible) {
4194 hasVisibleActivities = true;
4195 }
Craig Mautneracebdc82015-02-24 10:53:03 -08004196 final boolean remove;
Craig Mautner0247fc82013-02-28 14:32:06 -08004197 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
4198 // Don't currently have state for the activity, or
4199 // it is finishing -- always remove it.
4200 remove = true;
Chong Zhang112eb8c2015-11-02 11:17:00 -08004201 } else if (!r.visible && r.launchCount > 2 &&
4202 r.lastLaunchTime > (SystemClock.uptimeMillis() - 60000)) {
Craig Mautner0247fc82013-02-28 14:32:06 -08004203 // We have launched this activity too many times since it was
4204 // able to run, so give up and remove it.
Chong Zhang112eb8c2015-11-02 11:17:00 -08004205 // (Note if the activity is visible, we don't remove the record.
4206 // We leave the dead window on the screen but the process will
4207 // not be restarted unless user explicitly tap on it.)
Craig Mautner0247fc82013-02-28 14:32:06 -08004208 remove = true;
4209 } else {
4210 // The process may be gone, but the activity lives on!
4211 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004212 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004213 if (remove) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004214 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) Slog.i(TAG_ADD_REMOVE,
4215 "Removing activity " + r + " from stack at " + i
4216 + ": haveState=" + r.haveState
4217 + " stateNotNeeded=" + r.stateNotNeeded
4218 + " finishing=" + r.finishing
4219 + " state=" + r.state + " callers=" + Debug.getCallers(5));
Craig Mautner0247fc82013-02-28 14:32:06 -08004220 if (!r.finishing) {
4221 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
4222 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
4223 r.userId, System.identityHashCode(r),
4224 r.task.taskId, r.shortComponentName,
4225 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07004226 if (r.state == ActivityState.RESUMED) {
4227 mService.updateUsageStats(r, false);
4228 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004229 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004230 } else {
4231 // We have the current state for this activity, so
4232 // it can be restarted later when needed.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004233 if (DEBUG_ALL) Slog.v(TAG, "Keeping entry, setting app to null");
4234 if (DEBUG_APP) Slog.v(TAG_APP,
4235 "Clearing app during removeHistory for activity " + r);
Craig Mautner0247fc82013-02-28 14:32:06 -08004236 r.app = null;
Chong Zhang112eb8c2015-11-02 11:17:00 -08004237 // Set nowVisible to previous visible state. If the app was visible while
4238 // it died, we leave the dead window on screen so it's basically visible.
4239 // This is needed when user later tap on the dead window, we need to stop
4240 // other apps when user transfers focus to the restarted activity.
4241 r.nowVisible = r.visible;
Craig Mautner0247fc82013-02-28 14:32:06 -08004242 if (!r.haveState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004243 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
Craig Mautner0247fc82013-02-28 14:32:06 -08004244 "App died, clearing saved state of " + r);
4245 r.icicle = null;
4246 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004247 }
Craig Mautnerd2328952013-03-05 12:46:26 -08004248 cleanUpActivityLocked(r, true, true);
Craig Mautneracebdc82015-02-24 10:53:03 -08004249 if (remove) {
Chong Zhangbffd8892016-08-08 11:16:06 -07004250 removeActivityFromHistoryLocked(r, "appDied");
Craig Mautneracebdc82015-02-24 10:53:03 -08004251 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004252 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004253 }
4254 }
4255
4256 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004257 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004258
Chong Zhang280d3322015-11-03 17:27:26 -08004259 final void updateTransitLocked(int transit, ActivityOptions options) {
Dianne Hackborn7f58b952012-04-18 12:59:29 -07004260 if (options != null) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07004261 ActivityRecord r = topRunningActivityLocked();
Dianne Hackborn7f58b952012-04-18 12:59:29 -07004262 if (r != null && r.state != ActivityState.RESUMED) {
4263 r.updateOptionsLocked(options);
4264 } else {
4265 ActivityOptions.abort(options);
4266 }
4267 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004268 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07004269 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08004270
Craig Mautner21d24a22014-04-23 11:45:37 -07004271 void updateTaskMovement(TaskRecord task, boolean toFront) {
4272 if (task.isPersistable) {
4273 task.mLastTimeMoved = System.currentTimeMillis();
4274 // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
4275 // recently will be most negative, tasks sent to the bottom before that will be less
4276 // negative. Similarly for recent tasks moved to the top which will be most positive.
4277 if (!toFront) {
4278 task.mLastTimeMoved *= -1;
4279 }
4280 }
Chong Zhangfdcc4d42015-10-14 16:50:12 -07004281 mStackSupervisor.invalidateTaskLayers();
Craig Mautner21d24a22014-04-23 11:45:37 -07004282 }
4283
Craig Mautner84984fa2014-06-19 11:19:20 -07004284 void moveHomeStackTaskToTop(int homeStackTaskType) {
Craig Mautnera82aa092013-09-13 15:34:08 -07004285 final int top = mTaskHistory.size() - 1;
4286 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
4287 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07004288 if (task.taskType == homeStackTaskType) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004289 if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG_STACK,
4290 "moveHomeStackTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07004291 mTaskHistory.remove(taskNdx);
4292 mTaskHistory.add(top, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004293 updateTaskMovement(task, true);
Craig Mautnera82aa092013-09-13 15:34:08 -07004294 return;
4295 }
4296 }
4297 }
4298
Chong Zhang280d3322015-11-03 17:27:26 -08004299 final void moveTaskToFrontLocked(TaskRecord tr, boolean noAnimation, ActivityOptions options,
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07004300 AppTimeTracker timeTracker, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004301 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004302
Craig Mautner11bf9a52013-02-19 14:08:51 -08004303 final int numTasks = mTaskHistory.size();
4304 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07004305 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08004306 // nothing to do!
Craig Mautner8f5f7e92015-01-26 18:03:13 -08004307 if (noAnimation) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08004308 ActivityOptions.abort(options);
4309 } else {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07004310 updateTransitLocked(TRANSIT_TASK_TO_FRONT, options);
Craig Mautner11bf9a52013-02-19 14:08:51 -08004311 }
4312 return;
4313 }
4314
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07004315 if (timeTracker != null) {
4316 // The caller wants a time tracker associated with this task.
4317 for (int i = tr.mActivities.size() - 1; i >= 0; i--) {
4318 tr.mActivities.get(i).appTimeTracker = timeTracker;
4319 }
4320 }
4321
Craig Mautner11bf9a52013-02-19 14:08:51 -08004322 // Shift all activities with this task up to the top
4323 // of the stack, keeping them in the same internal order.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07004324 insertTaskAtTop(tr, null);
Wale Ogunwaled80c2632015-03-13 10:26:26 -07004325
Chong Zhang45c25ce2015-08-10 22:18:26 -07004326 // Don't refocus if invisible to current user
4327 ActivityRecord top = tr.getTopActivity();
Chong Zhang87761972016-08-22 13:53:24 -07004328 if (top == null || !top.okToShowLocked()) {
Chong Zhang45c25ce2015-08-10 22:18:26 -07004329 addRecentActivityLocked(top);
4330 ActivityOptions.abort(options);
4331 return;
4332 }
4333
Wale Ogunwaled80c2632015-03-13 10:26:26 -07004334 // Set focus to the top running activity of this stack.
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07004335 ActivityRecord r = topRunningActivityLocked();
Chong Zhang6cda19c2016-06-14 19:07:56 -07004336 mStackSupervisor.moveFocusableActivityStackToFrontLocked(r, reason);
Craig Mautner11bf9a52013-02-19 14:08:51 -08004337
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004338 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to front transition: task=" + tr);
Craig Mautner8f5f7e92015-01-26 18:03:13 -08004339 if (noAnimation) {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07004340 mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004341 if (r != null) {
4342 mNoAnimActivities.add(r);
4343 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07004344 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004345 } else {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07004346 updateTransitLocked(TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004347 }
Craig Mautner30e2d722013-02-12 11:30:16 -08004348
Wale Ogunwaled046a012015-12-24 13:05:59 -08004349 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Craig Mautner58547802013-03-05 08:23:53 -08004350 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004351 }
4352
4353 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004354 * Worker method for rearranging history stack. Implements the function of moving all
4355 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004356 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004357 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004358 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
4359 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004360 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004361 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004362 * @return Returns true if the move completed, false if not.
4363 */
Craig Mautner299f9602015-01-26 09:47:33 -08004364 final boolean moveTaskToBackLocked(int taskId) {
Craig Mautneraea74a52014-03-08 14:23:10 -08004365 final TaskRecord tr = taskForIdLocked(taskId);
4366 if (tr == null) {
4367 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
4368 return false;
4369 }
4370
4371 Slog.i(TAG, "moveTaskToBack: " + tr);
Craig Mautner15df08a2015-04-01 12:17:18 -07004372 mStackSupervisor.removeLockedTaskLocked(tr);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08004373
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004374 // If we have a watcher, preflight the move before committing to it. First check
4375 // for *other* available tasks, but if none are available, then try again allowing the
4376 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07004377 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004378 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004379 if (next == null) {
4380 next = topRunningActivityLocked(null, 0);
4381 }
4382 if (next != null) {
4383 // ask watcher if this is allowed
4384 boolean moveOK = true;
4385 try {
4386 moveOK = mService.mController.activityResuming(next.packageName);
4387 } catch (RemoteException e) {
4388 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07004389 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004390 }
4391 if (!moveOK) {
4392 return false;
4393 }
4394 }
4395 }
4396
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004397 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004398
Wale Ogunwale285ccef2015-12-11 14:56:37 -08004399 if (mStackId == HOME_STACK_ID && topTask().isHomeTask()) {
Jiaquan Hee13e9642016-06-15 15:16:13 -07004400 if (topTask().isOnTopLauncher()) {
4401 // An on-top launcher doesn't affect the visibility of activities on other stacks
4402 // behind it. So if we're moving an on-top launcher to the back, we want to move the
4403 // focus to the next focusable stack and resume an activity there.
4404 // Besides, when the docked stack is visible, we should also move the home stack to
4405 // the back to avoid the recents pops up on top of a fullscreen or freeform
4406 // activity.
4407
4408 // Move the home stack to back.
4409 moveToBack(topTask());
4410
4411 // Resume an activity in the next focusable stack.
4412 adjustFocusToNextFocusableStackLocked(APPLICATION_ACTIVITY_TYPE, "moveTaskToBack");
4413 mStackSupervisor.resumeFocusedStackTopActivityLocked();
4414 return true;
4415 }
4416
Wale Ogunwale285ccef2015-12-11 14:56:37 -08004417 // For the case where we are moving the home task back and there is an activity visible
4418 // behind it on the fullscreen stack, we want to move the focus to the visible behind
4419 // activity to maintain order with what the user is seeing.
4420 final ActivityStack fullscreenStack =
4421 mStackSupervisor.getStack(FULLSCREEN_WORKSPACE_STACK_ID);
4422 if (fullscreenStack != null && fullscreenStack.hasVisibleBehindActivity()) {
4423 final ActivityRecord visibleBehind = fullscreenStack.getVisibleBehindActivity();
Chong Zhang6cda19c2016-06-14 19:07:56 -07004424 mStackSupervisor.moveFocusableActivityStackToFrontLocked(visibleBehind, "moveTaskToBack");
Wale Ogunwaled046a012015-12-24 13:05:59 -08004425 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Wale Ogunwale285ccef2015-12-11 14:56:37 -08004426 return true;
4427 }
4428 }
4429
riddle_hsuc215a4f2014-12-27 12:10:45 +08004430 boolean prevIsHome = false;
Wale Ogunwale42709242015-08-11 13:54:42 -07004431
4432 // If true, we should resume the home activity next if the task we are moving to the
4433 // back is over the home stack. We force to false if the task we are moving to back
4434 // is the home task and we don't want it resumed after moving to the back.
4435 final boolean canGoHome = !tr.isHomeTask() && tr.isOverHomeStack();
4436 if (canGoHome) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08004437 final TaskRecord nextTask = getNextTask(tr);
4438 if (nextTask != null) {
4439 nextTask.setTaskToReturnTo(tr.getTaskToReturnTo());
4440 } else {
4441 prevIsHome = true;
4442 }
4443 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08004444 mTaskHistory.remove(tr);
4445 mTaskHistory.add(0, tr);
Craig Mautner21d24a22014-04-23 11:45:37 -07004446 updateTaskMovement(tr, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004447
Craig Mautnerc8143c62013-09-03 12:15:57 -07004448 // There is an assumption that moving a task to the back moves it behind the home activity.
4449 // We make sure here that some activity in the stack will launch home.
Craig Mautnerc8143c62013-09-03 12:15:57 -07004450 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004451 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
4452 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07004453 if (task.isOverHomeStack()) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07004454 break;
4455 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004456 if (taskNdx == 1) {
4457 // Set the last task before tr to go to home.
Craig Mautner84984fa2014-06-19 11:19:20 -07004458 task.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004459 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07004460 }
4461
Jorim Jaggiaf80db42016-04-07 19:19:15 -07004462 mWindowManager.prepareAppTransition(TRANSIT_TASK_TO_BACK, false);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004463 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08004464
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004465 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
Wale Ogunwale42709242015-08-11 13:54:42 -07004466 if (prevIsHome || (task == tr && canGoHome) || (numTasks <= 1 && isOnHomeDisplay())) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07004467 if (!mService.mBooting && !mService.mBooted) {
4468 // Not ready yet!
4469 return false;
4470 }
Craig Mautner84984fa2014-06-19 11:19:20 -07004471 final int taskToReturnTo = tr.getTaskToReturnTo();
4472 tr.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner299f9602015-01-26 09:47:33 -08004473 return mStackSupervisor.resumeHomeStackTask(taskToReturnTo, null, "moveTaskToBack");
Craig Mautnerde4ef022013-04-07 19:01:33 -07004474 }
4475
Wale Ogunwaled046a012015-12-24 13:05:59 -08004476 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004477 return true;
4478 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07004479
Craig Mautner8849a5e2013-04-02 16:41:03 -07004480 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004481 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08004482 final Uri data = r.intent.getData();
4483 final String strData = data != null ? data.toSafeString() : null;
4484
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004485 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004486 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004487 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08004488 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004489 }
4490
4491 /**
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07004492 * Ensures all visible activities at or below the input activity have the right configuration.
4493 */
4494 void ensureVisibleActivitiesConfigurationLocked(ActivityRecord start, boolean preserveWindow) {
4495 if (start == null || !start.visible) {
4496 return;
4497 }
4498
4499 final TaskRecord startTask = start.task;
4500 boolean behindFullscreen = false;
4501 boolean updatedConfig = false;
4502
4503 for (int taskIndex = mTaskHistory.indexOf(startTask); taskIndex >= 0; --taskIndex) {
4504 final TaskRecord task = mTaskHistory.get(taskIndex);
4505 final ArrayList<ActivityRecord> activities = task.mActivities;
4506 int activityIndex =
4507 (start.task == task) ? activities.indexOf(start) : activities.size() - 1;
4508 for (; activityIndex >= 0; --activityIndex) {
4509 final ActivityRecord r = activities.get(activityIndex);
4510 updatedConfig |= ensureActivityConfigurationLocked(r, 0, preserveWindow);
4511 if (r.fullscreen) {
4512 behindFullscreen = true;
4513 break;
4514 }
4515 }
4516 if (behindFullscreen) {
4517 break;
4518 }
4519 }
4520 if (updatedConfig) {
Wale Ogunwale089586f2016-06-20 14:16:22 -07004521 // Ensure the resumed state of the focus activity if we updated the configuration of
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07004522 // any activity.
4523 mStackSupervisor.resumeFocusedStackTopActivityLocked();
4524 }
4525 }
4526
4527 /**
4528 * Make sure the given activity matches the current configuration. Returns false if the activity
4529 * had to be destroyed. Returns true if the configuration is the same, or the activity will
4530 * remain running as-is for whatever reason. Ensures the HistoryRecord is updated with the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004531 * correct configuration and all other bookkeeping is handled.
4532 */
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07004533 boolean ensureActivityConfigurationLocked(
4534 ActivityRecord r, int globalChanges, boolean preserveWindow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004535 if (mConfigWillChange) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004536 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004537 "Skipping config check (will change): " + r);
4538 return true;
4539 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004540
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004541 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004542 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004543
Wale Ogunwalef7dab1e2016-04-16 11:38:50 -07004544 // Short circuit: if the two configurations are equal (the common case), then there is
4545 // nothing to do.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004546 final Configuration newConfig = mService.mConfiguration;
Andrii Kulianf12fce12016-05-27 17:30:16 -07004547 r.task.sanitizeOverrideConfiguration(newConfig);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004548 final Configuration taskConfig = r.task.mOverrideConfig;
Wale Ogunwalef7dab1e2016-04-16 11:38:50 -07004549 if (r.configuration.equals(newConfig)
4550 && r.taskConfigOverride.equals(taskConfig)
Wale Ogunwale60454db2015-01-23 16:05:07 -08004551 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004552 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004553 "Configuration unchanged in " + r);
4554 return true;
4555 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004556
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004557 // We don't worry about activities that are finishing.
4558 if (r.finishing) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004559 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004560 "Configuration doesn't matter in finishing " + r);
4561 r.stopFreezingScreenLocked(false);
4562 return true;
4563 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004564
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004565 // Okay we now are going to make this activity have the new config.
4566 // But then we need to figure out how it needs to deal with that.
Wale Ogunwale60454db2015-01-23 16:05:07 -08004567 final Configuration oldConfig = r.configuration;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004568 final Configuration oldTaskOverride = r.taskConfigOverride;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004569 r.configuration = newConfig;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004570 r.taskConfigOverride = taskConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004571
Filip Gruszczynski23493322015-07-29 17:02:59 -07004572 int taskChanges = getTaskConfigurationChanges(r, taskConfig, oldTaskOverride);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004573 final int changes = oldConfig.diff(newConfig) | taskChanges;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004574 if (changes == 0 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004575 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004576 "Configuration no differences in " + r);
Filip Gruszczynskica664812015-12-04 12:43:36 -08004577 // There are no significant differences, so we won't relaunch but should still deliver
4578 // the new configuration to the client process.
Wale Ogunwalef7dab1e2016-04-16 11:38:50 -07004579 r.scheduleConfigurationChanged(taskConfig, true);
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004580 return true;
4581 }
4582
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07004583 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4584 "Configuration changes for " + r + " ; taskChanges="
4585 + Configuration.configurationDiffToString(taskChanges) + ", allChanges="
4586 + Configuration.configurationDiffToString(changes));
4587
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004588 // If the activity isn't currently running, just leave the new
4589 // configuration and it will pick that up next time it starts.
4590 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004591 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004592 "Configuration doesn't matter not running " + r);
4593 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004594 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004595 return true;
4596 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004597
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004598 // Figure out how to handle the changes between the configurations.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004599 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4600 "Checking to restart " + r.info.name + ": changed=0x"
4601 + Integer.toHexString(changes) + ", handles=0x"
Filip Gruszczynskica664812015-12-04 12:43:36 -08004602 + Integer.toHexString(r.info.getRealConfigChanged()) + ", newConfig=" + newConfig
4603 + ", taskConfig=" + taskConfig);
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004604
Dianne Hackborne6676352011-06-01 16:51:20 -07004605 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004606 // Aha, the activity isn't handling the change, so DIE DIE DIE.
4607 r.configChangeFlags |= changes;
4608 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004609 r.forceNewConfig = false;
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004610 preserveWindow &= isResizeOnlyChange(changes);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004611 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004612 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004613 "Config is destroying non-running " + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004614 destroyActivityLocked(r, true, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004615 } else if (r.state == ActivityState.PAUSING) {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004616 // A little annoying: we are waiting for this activity to finish pausing. Let's not
4617 // do anything now, but just flag that it needs to be restarted when done pausing.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004618 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004619 "Config is skipping already pausing " + r);
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004620 r.deferRelaunchUntilPaused = true;
4621 r.preserveWindowOnDeferredRelaunch = preserveWindow;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004622 return true;
4623 } else if (r.state == ActivityState.RESUMED) {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004624 // Try to optimize this case: the configuration is changing and we need to restart
4625 // the top, resumed activity. Instead of doing the normal handshaking, just say
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004626 // "restart!".
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004627 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004628 "Config is relaunching resumed " + r);
Chong Zhang2b79af12016-02-10 18:47:06 -08004629
4630 if (DEBUG_STATES && !r.visible) {
4631 Slog.v(TAG_STATES, "Config is relaunching resumed invisible activity " + r
4632 + " called by " + Debug.getCallers(4));
4633 }
4634
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004635 relaunchActivityLocked(r, r.configChangeFlags, true, preserveWindow);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004636 } else {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004637 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004638 "Config is relaunching non-resumed " + r);
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004639 relaunchActivityLocked(r, r.configChangeFlags, false, preserveWindow);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004640 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004641
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004642 // All done... tell the caller we weren't able to keep this activity around.
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004643 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004644 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004645
Wale Ogunwalec2607b42015-02-07 16:16:59 -08004646 // Default case: the activity can handle this new configuration, so hand it over.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004647 // NOTE: We only forward the task override configuration as the system level configuration
Wale Ogunwalec2607b42015-02-07 16:16:59 -08004648 // changes is always sent to all processes when they happen so it can just use whatever
4649 // system level configuration it last got.
Filip Gruszczynskica664812015-12-04 12:43:36 -08004650 r.scheduleConfigurationChanged(taskConfig, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004651 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004652
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004653 return true;
4654 }
4655
Filip Gruszczynski23493322015-07-29 17:02:59 -07004656 private int getTaskConfigurationChanges(ActivityRecord record, Configuration taskConfig,
4657 Configuration oldTaskOverride) {
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08004658
4659 // If we went from full-screen to non-full-screen, make sure to use the correct
4660 // configuration task diff, so the diff stays as small as possible.
4661 if (Configuration.EMPTY.equals(oldTaskOverride)
4662 && !Configuration.EMPTY.equals(taskConfig)) {
4663 oldTaskOverride = record.task.extractOverrideConfig(record.configuration);
4664 }
4665
Jorim Jaggi1b025a62016-02-03 19:27:49 -08004666 // Conversely, do the same when going the other direction.
4667 if (Configuration.EMPTY.equals(taskConfig)
4668 && !Configuration.EMPTY.equals(oldTaskOverride)) {
4669 taskConfig = record.task.extractOverrideConfig(record.configuration);
4670 }
4671
Filip Gruszczynski23493322015-07-29 17:02:59 -07004672 // Determine what has changed. May be nothing, if this is a config
4673 // that has come back from the app after going idle. In that case
4674 // we just want to leave the official config object now in the
4675 // activity and do nothing else.
4676 int taskChanges = oldTaskOverride.diff(taskConfig);
4677 // We don't want to use size changes if they don't cross boundaries that are important to
4678 // the app.
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004679 if ((taskChanges & CONFIG_SCREEN_SIZE) != 0) {
Filip Gruszczynski23493322015-07-29 17:02:59 -07004680 final boolean crosses = record.crossesHorizontalSizeThreshold(
4681 oldTaskOverride.screenWidthDp, taskConfig.screenWidthDp)
4682 || record.crossesVerticalSizeThreshold(
4683 oldTaskOverride.screenHeightDp, taskConfig.screenHeightDp);
4684 if (!crosses) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004685 taskChanges &= ~CONFIG_SCREEN_SIZE;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004686 }
4687 }
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004688 if ((taskChanges & CONFIG_SMALLEST_SCREEN_SIZE) != 0) {
Filip Gruszczynski23493322015-07-29 17:02:59 -07004689 final int oldSmallest = oldTaskOverride.smallestScreenWidthDp;
4690 final int newSmallest = taskConfig.smallestScreenWidthDp;
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -07004691 if (!record.crossesSmallestSizeThreshold(oldSmallest, newSmallest)) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004692 taskChanges &= ~CONFIG_SMALLEST_SCREEN_SIZE;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004693 }
4694 }
4695 return catchConfigChangesFromUnset(taskConfig, oldTaskOverride, taskChanges);
4696 }
4697
4698 private static int catchConfigChangesFromUnset(Configuration taskConfig,
4699 Configuration oldTaskOverride, int taskChanges) {
4700 if (taskChanges == 0) {
4701 // {@link Configuration#diff} doesn't catch changes from unset values.
4702 // Check for changes we care about.
4703 if (oldTaskOverride.orientation != taskConfig.orientation) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004704 taskChanges |= CONFIG_ORIENTATION;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004705 }
4706 // We want to explicitly track situations where the size configuration goes from
4707 // undefined to defined. We don't care about crossing the threshold in that case,
4708 // because there is no threshold.
4709 final int oldHeight = oldTaskOverride.screenHeightDp;
4710 final int newHeight = taskConfig.screenHeightDp;
4711 final int undefinedHeight = Configuration.SCREEN_HEIGHT_DP_UNDEFINED;
4712 if ((oldHeight == undefinedHeight && newHeight != undefinedHeight)
4713 || (oldHeight != undefinedHeight && newHeight == undefinedHeight)) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004714 taskChanges |= CONFIG_SCREEN_SIZE;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004715 }
4716 final int oldWidth = oldTaskOverride.screenWidthDp;
4717 final int newWidth = taskConfig.screenWidthDp;
4718 final int undefinedWidth = Configuration.SCREEN_WIDTH_DP_UNDEFINED;
4719 if ((oldWidth == undefinedWidth && newWidth != undefinedWidth)
4720 || (oldWidth != undefinedWidth && newWidth == undefinedWidth)) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004721 taskChanges |= CONFIG_SCREEN_SIZE;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004722 }
4723 final int oldSmallest = oldTaskOverride.smallestScreenWidthDp;
4724 final int newSmallest = taskConfig.smallestScreenWidthDp;
4725 final int undefinedSmallest = Configuration.SMALLEST_SCREEN_WIDTH_DP_UNDEFINED;
4726 if ((oldSmallest == undefinedSmallest && newSmallest != undefinedSmallest)
4727 || (oldSmallest != undefinedSmallest && newSmallest == undefinedSmallest)) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004728 taskChanges |= CONFIG_SMALLEST_SCREEN_SIZE;
4729 }
4730 final int oldLayout = oldTaskOverride.screenLayout;
4731 final int newLayout = taskConfig.screenLayout;
4732 if ((oldLayout == SCREENLAYOUT_UNDEFINED && newLayout != SCREENLAYOUT_UNDEFINED)
4733 || (oldLayout != SCREENLAYOUT_UNDEFINED && newLayout == SCREENLAYOUT_UNDEFINED)) {
4734 taskChanges |= CONFIG_SCREEN_LAYOUT;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004735 }
4736 }
4737 return taskChanges;
4738 }
4739
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004740 private static boolean isResizeOnlyChange(int change) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004741 return (change & ~(CONFIG_SCREEN_SIZE | CONFIG_SMALLEST_SCREEN_SIZE | CONFIG_ORIENTATION
4742 | CONFIG_SCREEN_LAYOUT)) == 0;
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004743 }
4744
Wale Ogunwale83301a92015-09-24 15:54:08 -07004745 private void relaunchActivityLocked(
4746 ActivityRecord r, int changes, boolean andResume, boolean preserveWindow) {
4747 if (mService.mSuppressResizeConfigChanges && preserveWindow) {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004748 r.configChangeFlags = 0;
Wale Ogunwale83301a92015-09-24 15:54:08 -07004749 return;
4750 }
4751
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004752 List<ResultInfo> results = null;
Dianne Hackborn85d558c2014-11-04 10:31:54 -08004753 List<ReferrerIntent> newIntents = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004754 if (andResume) {
4755 results = r.results;
4756 newIntents = r.newIntents;
4757 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004758 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
4759 "Relaunching: " + r + " with results=" + results + " newIntents=" + newIntents
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004760 + " andResume=" + andResume + " preserveWindow=" + preserveWindow);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004761 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004762 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004763 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004764
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004765 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004766
Craig Mautner34b73df2014-01-12 21:11:08 -08004767 mStackSupervisor.removeChildActivityContainers(r);
4768
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004769 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004770 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH,
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08004771 "Moving to " + (andResume ? "RESUMED" : "PAUSED") + " Relaunching " + r
4772 + " callers=" + Debug.getCallers(6));
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004773 r.forceNewConfig = false;
Chong Zhangd78ddb42016-03-02 17:01:14 -08004774 mStackSupervisor.activityRelaunchingLocked(r);
Wale Ogunwale60454db2015-01-23 16:05:07 -08004775 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents, changes,
4776 !andResume, new Configuration(mService.mConfiguration),
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004777 new Configuration(r.task.mOverrideConfig), preserveWindow);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004778 // Note: don't need to call pauseIfSleepingLocked() here, because
4779 // the caller will only pass in 'andResume' if this activity is
4780 // currently resumed, which implies we aren't sleeping.
4781 } catch (RemoteException e) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004782 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004783 }
4784
4785 if (andResume) {
Chong Zhang2b79af12016-02-10 18:47:06 -08004786 if (DEBUG_STATES) {
4787 Slog.d(TAG_STATES, "Resumed after relaunch " + r);
4788 }
Chong Zhangd2cb3112016-07-20 11:13:22 -07004789 r.results = null;
4790 r.newIntents = null;
Andrii Kulianf42cbe82016-06-22 14:49:58 -07004791 mService.showUnsupportedZoomDialogIfNeededLocked(r);
4792 mService.showAskCompatModeDialogLocked(r);
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004793 } else {
4794 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
4795 r.state = ActivityState.PAUSED;
Chong Zhangfec694e2016-08-09 12:57:38 -07004796 // if the app is relaunched when it's stopped, and we're not resuming,
4797 // put it back into stopped state.
4798 if (r.stopped) {
4799 addToStopping(r, true /* immediate */);
4800 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004801 }
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004802
4803 r.configChangeFlags = 0;
Chong Zhang225d1b62016-03-31 14:09:33 -07004804 r.deferRelaunchUntilPaused = false;
4805 r.preserveWindowOnDeferredRelaunch = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004806 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004807
4808 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004809 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4810 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4811 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4812 final ActivityRecord r = activities.get(activityNdx);
4813 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08004814 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08004815 }
4816 if (r.fullscreen && !r.finishing) {
4817 return false;
4818 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004819 }
4820 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07004821 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautner34b73df2014-01-12 21:11:08 -08004822 if (r == null) {
4823 return false;
4824 }
4825 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
4826 + " would have returned true for r=" + r);
4827 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08004828 }
4829
4830 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004831 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4832 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4833 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4834 final ActivityRecord r = activities.get(activityNdx);
4835 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004836 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004837 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004838 }
4839 }
4840 }
4841
Wale Ogunwale540e1232015-05-01 15:35:39 -07004842 boolean finishDisabledPackageActivitiesLocked(String packageName, Set<String> filterByClasses,
4843 boolean doit, boolean evenPersistent, int userId) {
Craig Mautnercae015f2013-02-08 14:31:27 -08004844 boolean didSomething = false;
4845 TaskRecord lastTask = null;
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004846 ComponentName homeActivity = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08004847 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4848 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4849 int numActivities = activities.size();
4850 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
4851 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004852 final boolean sameComponent =
4853 (r.packageName.equals(packageName) && (filterByClasses == null
4854 || filterByClasses.contains(r.realActivity.getClassName())))
4855 || (packageName == null && r.userId == userId);
Craig Mautner56f52db2013-02-25 10:03:01 -08004856 if ((userId == UserHandle.USER_ALL || r.userId == userId)
Wale Ogunwale540e1232015-05-01 15:35:39 -07004857 && (sameComponent || r.task == lastTask)
Craig Mautner56f52db2013-02-25 10:03:01 -08004858 && (r.app == null || evenPersistent || !r.app.persistent)) {
4859 if (!doit) {
4860 if (r.finishing) {
4861 // If this activity is just finishing, then it is not
4862 // interesting as far as something to stop.
4863 continue;
4864 }
4865 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08004866 }
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004867 if (r.isHomeActivity()) {
4868 if (homeActivity != null && homeActivity.equals(r.realActivity)) {
4869 Slog.i(TAG, "Skip force-stop again " + r);
4870 continue;
4871 } else {
4872 homeActivity = r.realActivity;
4873 }
4874 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004875 didSomething = true;
4876 Slog.i(TAG, " Force finishing activity " + r);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004877 if (sameComponent) {
Craig Mautner56f52db2013-02-25 10:03:01 -08004878 if (r.app != null) {
4879 r.app.removed = true;
4880 }
4881 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08004882 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004883 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07004884 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
4885 true)) {
4886 // r has been deleted from mActivities, accommodate.
4887 --numActivities;
4888 --activityNdx;
4889 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004890 }
4891 }
4892 }
4893 return didSomething;
4894 }
4895
Dianne Hackborn09233282014-04-30 11:33:59 -07004896 void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
riddle_hsuddc74152015-04-07 11:30:09 +08004897 boolean focusedStack = mStackSupervisor.getFocusedStack() == this;
4898 boolean topTask = true;
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004899 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004900 final TaskRecord task = mTaskHistory.get(taskNdx);
riddle_hsuddc74152015-04-07 11:30:09 +08004901 if (task.getTopActivity() == null) {
4902 continue;
4903 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004904 ActivityRecord r = null;
4905 ActivityRecord top = null;
Wale Ogunwale6035e012015-04-14 15:54:10 -07004906 ActivityRecord tmp;
Craig Mautneraab647e2013-02-28 16:31:36 -08004907 int numActivities = 0;
4908 int numRunning = 0;
4909 final ArrayList<ActivityRecord> activities = task.mActivities;
Dianne Hackborn885fbe52014-08-23 15:23:58 -07004910 if (!allowed && !task.isHomeTask() && task.effectiveUid != callingUid) {
Dianne Hackborn09233282014-04-30 11:33:59 -07004911 continue;
4912 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004913 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Wale Ogunwale6035e012015-04-14 15:54:10 -07004914 tmp = activities.get(activityNdx);
4915 if (tmp.finishing) {
4916 continue;
4917 }
4918 r = tmp;
Craig Mautnercae015f2013-02-08 14:31:27 -08004919
Craig Mautneraab647e2013-02-28 16:31:36 -08004920 // Initialize state for next task if needed.
4921 if (top == null || (top.state == ActivityState.INITIALIZING)) {
4922 top = r;
4923 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08004924 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004925
4926 // Add 'r' into the current task.
4927 numActivities++;
4928 if (r.app != null && r.app.thread != null) {
4929 numRunning++;
4930 }
4931
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004932 if (DEBUG_ALL) Slog.v(
Craig Mautneraab647e2013-02-28 16:31:36 -08004933 TAG, r.intent.getComponent().flattenToShortString()
4934 + ": task=" + r.task);
4935 }
4936
4937 RunningTaskInfo ci = new RunningTaskInfo();
4938 ci.id = task.taskId;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07004939 ci.stackId = mStackId;
Craig Mautneraab647e2013-02-28 16:31:36 -08004940 ci.baseActivity = r.intent.getComponent();
4941 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004942 ci.lastActiveTime = task.lastActiveTime;
riddle_hsuddc74152015-04-07 11:30:09 +08004943 if (focusedStack && topTask) {
4944 // Give the latest time to ensure foreground task can be sorted
4945 // at the first, because lastActiveTime of creating task is 0.
4946 ci.lastActiveTime = System.currentTimeMillis();
4947 topTask = false;
4948 }
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004949
Craig Mautnerc0ffce52014-07-01 12:38:52 -07004950 if (top.task != null) {
4951 ci.description = top.task.lastDescription;
Craig Mautneraab647e2013-02-28 16:31:36 -08004952 }
4953 ci.numActivities = numActivities;
4954 ci.numRunning = numRunning;
Wale Ogunwale21b60582016-01-27 12:34:16 -08004955 ci.isDockable = task.canGoInDockedStack();
Jorim Jaggi29379ec2016-04-11 23:43:42 -07004956 ci.resizeMode = task.mResizeMode;
Craig Mautneraab647e2013-02-28 16:31:36 -08004957 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08004958 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004959 }
4960
4961 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08004962 final int top = mTaskHistory.size() - 1;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004963 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08004964 if (top >= 0) {
4965 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
4966 int activityTop = activities.size() - 1;
4967 if (activityTop > 0) {
4968 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
4969 "unhandled-back", true);
4970 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004971 }
4972 }
4973
Craig Mautner6b74cb52013-09-27 17:02:21 -07004974 /**
4975 * Reset local parameters because an app's activity died.
4976 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07004977 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07004978 */
4979 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07004980 if (mPausingActivity != null && mPausingActivity.app == app) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004981 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG_PAUSE,
Craig Mautnere79d42682013-04-01 19:01:53 -07004982 "App died while pausing: " + mPausingActivity);
4983 mPausingActivity = null;
4984 }
4985 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
4986 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07004987 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07004988 }
4989
Craig Mautner19091252013-10-05 00:03:53 -07004990 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07004991 }
4992
Craig Mautnercae015f2013-02-08 14:31:27 -08004993 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004994 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4995 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4996 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4997 final ActivityRecord r = activities.get(activityNdx);
4998 if (r.app == app) {
4999 Slog.w(TAG, " Force finishing activity "
5000 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07005001 // Force the destroy to skip right to removal.
5002 r.app = null;
5003 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08005004 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005005 }
5006 }
5007 }
5008
Dianne Hackborn390517b2013-05-30 15:03:32 -07005009 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07005010 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07005011 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08005012 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5013 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07005014 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
5015 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07005016 dumpClient, dumpPackage, needSep, header,
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07005017 " Task id #" + task.taskId + "\n" +
5018 " mFullscreen=" + task.mFullscreen + "\n" +
5019 " mBounds=" + task.mBounds + "\n" +
Andrii Kulianf66a83d2016-05-17 12:17:44 -07005020 " mMinWidth=" + task.mMinWidth + "\n" +
5021 " mMinHeight=" + task.mMinHeight + "\n" +
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07005022 " mLastNonFullscreenBounds=" + task.mLastNonFullscreenBounds);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07005023 if (printed) {
5024 header = null;
5025 }
Craig Mautneraab647e2013-02-28 16:31:36 -08005026 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07005027 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08005028 }
5029
5030 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
5031 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
5032
5033 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08005034 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5035 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08005036 }
5037 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08005038 final int top = mTaskHistory.size() - 1;
5039 if (top >= 0) {
5040 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
5041 int listTop = list.size() - 1;
5042 if (listTop >= 0) {
5043 activities.add(list.get(listTop));
5044 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005045 }
5046 } else {
5047 ItemMatcher matcher = new ItemMatcher();
5048 matcher.build(name);
5049
Craig Mautneraab647e2013-02-28 16:31:36 -08005050 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5051 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
5052 if (matcher.match(r1, r1.intent.getComponent())) {
5053 activities.add(r1);
5054 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005055 }
5056 }
5057 }
5058
5059 return activities;
5060 }
5061
5062 ActivityRecord restartPackage(String packageName) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07005063 ActivityRecord starting = topRunningActivityLocked();
Craig Mautnercae015f2013-02-08 14:31:27 -08005064
5065 // All activities that came from the package must be
5066 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08005067 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5068 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
5069 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
5070 final ActivityRecord a = activities.get(activityNdx);
5071 if (a.info.packageName.equals(packageName)) {
5072 a.forceNewConfig = true;
5073 if (starting != null && a == starting && a.visible) {
5074 a.startFreezingScreenLocked(starting.app,
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08005075 CONFIG_SCREEN_LAYOUT);
Craig Mautneraab647e2013-02-28 16:31:36 -08005076 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005077 }
5078 }
5079 }
5080
5081 return starting;
5082 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08005083
Craig Mautner299f9602015-01-26 09:47:33 -08005084 void removeTask(TaskRecord task, String reason) {
Wale Ogunwale06579d62016-04-30 15:29:06 -07005085 removeTask(task, reason, REMOVE_TASK_MODE_DESTROYING);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08005086 }
5087
Wale Ogunwale000957c2015-04-03 08:19:12 -07005088 /**
5089 * Removes the input task from this stack.
5090 * @param task to remove.
5091 * @param reason for removal.
Wale Ogunwale06579d62016-04-30 15:29:06 -07005092 * @param mode task removal mode. Either {@link #REMOVE_TASK_MODE_DESTROYING},
5093 * {@link #REMOVE_TASK_MODE_MOVING}, {@link #REMOVE_TASK_MODE_MOVING_TO_TOP}.
Wale Ogunwale000957c2015-04-03 08:19:12 -07005094 */
Wale Ogunwale06579d62016-04-30 15:29:06 -07005095 void removeTask(TaskRecord task, String reason, int mode) {
5096 if (mode == REMOVE_TASK_MODE_DESTROYING) {
Craig Mautner15df08a2015-04-01 12:17:18 -07005097 mStackSupervisor.removeLockedTaskLocked(task);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08005098 mWindowManager.removeTask(task.taskId);
Wale Ogunwaleb317b222015-11-09 11:14:10 -08005099 if (!StackId.persistTaskBounds(mStackId)) {
5100 // Reset current bounds for task whose bounds shouldn't be persisted so it uses
5101 // default configuration the next time it launches.
5102 task.updateOverrideConfiguration(null);
5103 }
Wale Ogunwale53a29a92015-02-23 15:42:52 -08005104 }
Wale Ogunwale000957c2015-04-03 08:19:12 -07005105
Craig Mautner04a0ea62014-01-13 12:51:26 -08005106 final ActivityRecord r = mResumedActivity;
5107 if (r != null && r.task == task) {
5108 mResumedActivity = null;
5109 }
5110
Craig Mautnerae7ecab2013-09-18 11:48:14 -07005111 final int taskNdx = mTaskHistory.indexOf(task);
5112 final int topTaskNdx = mTaskHistory.size() - 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07005113 if (task.isOverHomeStack() && taskNdx < topTaskNdx) {
5114 final TaskRecord nextTask = mTaskHistory.get(taskNdx + 1);
5115 if (!nextTask.isOverHomeStack()) {
5116 nextTask.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
5117 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07005118 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07005119 mTaskHistory.remove(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07005120 updateTaskMovement(task, true);
Craig Mautner41db4a72014-05-07 17:20:56 -07005121
Wale Ogunwale06579d62016-04-30 15:29:06 -07005122 if (mode == REMOVE_TASK_MODE_DESTROYING && task.mActivities.isEmpty()) {
Amith Yamasani0af6fa72016-01-17 15:36:19 -08005123 // TODO: VI what about activity?
Craig Mautner41db4a72014-05-07 17:20:56 -07005124 final boolean isVoiceSession = task.voiceSession != null;
5125 if (isVoiceSession) {
5126 try {
5127 task.voiceSession.taskFinished(task.intent, task.taskId);
5128 } catch (RemoteException e) {
5129 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07005130 }
Craig Mautner41db4a72014-05-07 17:20:56 -07005131 if (task.autoRemoveFromRecents() || isVoiceSession) {
5132 // Task creator asked to remove this when done, or this task was a voice
5133 // interaction, so it should not remain on the recent tasks list.
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08005134 mRecentTasks.remove(task);
Winson Chung740c3ac2014-11-12 16:14:38 -08005135 task.removedFromRecents();
Craig Mautner41db4a72014-05-07 17:20:56 -07005136 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07005137 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08005138
5139 if (mTaskHistory.isEmpty()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07005140 if (DEBUG_STACK) Slog.i(TAG_STACK, "removeTask: removing stack=" + this);
Wale Ogunwale06579d62016-04-30 15:29:06 -07005141 // We only need to adjust focused stack if this stack is in focus and we are not in the
5142 // process of moving the task to the top of the stack that will be focused.
5143 if (isOnHomeDisplay() && mode != REMOVE_TASK_MODE_MOVING_TO_TOP
5144 && mStackSupervisor.isFocusedStack(this)) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08005145 String myReason = reason + " leftTaskHistoryEmpty";
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07005146 if (mFullscreen
5147 || !adjustFocusToNextFocusableStackLocked(
5148 task.getTaskToReturnTo(), myReason)) {
Wale Ogunwale925d0d12015-09-23 15:40:07 -07005149 mStackSupervisor.moveHomeStackToFront(myReason);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08005150 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08005151 }
Craig Mautner593a4e62014-01-15 17:55:51 -08005152 if (mStacks != null) {
5153 mStacks.remove(this);
5154 mStacks.add(0, this);
5155 }
Wale Ogunwale925d0d12015-09-23 15:40:07 -07005156 if (!isHomeStack()) {
Wale Ogunwale49853bf2015-02-23 09:24:42 -08005157 mActivityContainer.onTaskListEmptyLocked();
5158 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08005159 }
Wale Ogunwale04f4d6b2015-03-11 09:23:25 -07005160
5161 task.stack = null;
Craig Mautner0247fc82013-02-28 14:32:06 -08005162 }
5163
Dianne Hackborn91097de2014-04-04 18:02:06 -07005164 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
5165 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
5166 boolean toTop) {
Craig Mautner21d24a22014-04-23 11:45:37 -07005167 TaskRecord task = new TaskRecord(mService, taskId, info, intent, voiceSession,
5168 voiceInteractor);
Chong Zhang0fa656b2015-08-31 15:17:21 -07005169 // add the task to stack first, mTaskPositioner might need the stack association
Wale Ogunwale5f986092015-12-04 15:35:38 -08005170 addTask(task, toTop, "createTaskRecord");
Chong Zhang75b37202015-12-04 14:16:36 -08005171 final boolean isLockscreenShown = mService.mLockScreenShown == LOCK_SCREEN_SHOWN;
Andrii Kulian2e751b82016-03-16 16:59:32 -07005172 if (!layoutTaskInStack(task, info.windowLayout) && mBounds != null && task.isResizeable()
Chong Zhang75b37202015-12-04 14:16:36 -08005173 && !isLockscreenShown) {
Wale Ogunwalea6e902e2015-09-21 18:37:15 -07005174 task.updateOverrideConfiguration(mBounds);
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07005175 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08005176 return task;
5177 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08005178
Andrii Kulian2e751b82016-03-16 16:59:32 -07005179 boolean layoutTaskInStack(TaskRecord task, ActivityInfo.WindowLayout windowLayout) {
Wale Ogunwale935e5022015-11-10 12:36:10 -08005180 if (mTaskPositioner == null) {
5181 return false;
5182 }
Andrii Kulian2e751b82016-03-16 16:59:32 -07005183 mTaskPositioner.updateDefaultBounds(task, mTaskHistory, windowLayout);
Wale Ogunwale935e5022015-11-10 12:36:10 -08005184 return true;
5185 }
5186
Craig Mautnerc00204b2013-03-05 15:02:14 -08005187 ArrayList<TaskRecord> getAllTasks() {
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08005188 return new ArrayList<>(mTaskHistory);
Craig Mautnerc00204b2013-03-05 15:02:14 -08005189 }
5190
Wale Ogunwale5f986092015-12-04 15:35:38 -08005191 void addTask(final TaskRecord task, final boolean toTop, String reason) {
Wale Ogunwale06579d62016-04-30 15:29:06 -07005192 final ActivityStack prevStack = preAddTask(task, reason, toTop);
Wale Ogunwale5f986092015-12-04 15:35:38 -08005193
Craig Mautnerc00204b2013-03-05 15:02:14 -08005194 task.stack = this;
5195 if (toTop) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07005196 insertTaskAtTop(task, null);
Craig Mautnerc00204b2013-03-05 15:02:14 -08005197 } else {
5198 mTaskHistory.add(0, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07005199 updateTaskMovement(task, false);
Craig Mautnerc00204b2013-03-05 15:02:14 -08005200 }
Wale Ogunwale5f986092015-12-04 15:35:38 -08005201 postAddTask(task, prevStack);
Craig Mautnerc00204b2013-03-05 15:02:14 -08005202 }
5203
Wale Ogunwale5f986092015-12-04 15:35:38 -08005204 void positionTask(final TaskRecord task, int position) {
Jorim Jaggi023da532016-04-20 22:42:32 -07005205 final ActivityRecord topRunningActivity = task.topRunningActivityLocked();
5206 final boolean wasResumed = topRunningActivity == task.stack.mResumedActivity;
Wale Ogunwaleed811d72016-05-06 08:41:19 -07005207 final ActivityStack prevStack = preAddTask(task, "positionTask", !ON_TOP);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07005208 task.stack = this;
5209 insertTaskAtPosition(task, position);
Wale Ogunwale5f986092015-12-04 15:35:38 -08005210 postAddTask(task, prevStack);
Jorim Jaggi023da532016-04-20 22:42:32 -07005211 if (wasResumed) {
5212 if (mResumedActivity != null) {
5213 Log.wtf(TAG, "mResumedActivity was already set when moving mResumedActivity from"
5214 + " other stack to this stack mResumedActivity=" + mResumedActivity
5215 + " other mResumedActivity=" + topRunningActivity);
5216 }
5217 mResumedActivity = topRunningActivity;
5218 }
Wale Ogunwale5f986092015-12-04 15:35:38 -08005219 }
5220
Wale Ogunwale06579d62016-04-30 15:29:06 -07005221 private ActivityStack preAddTask(TaskRecord task, String reason, boolean toTop) {
Wale Ogunwale5f986092015-12-04 15:35:38 -08005222 final ActivityStack prevStack = task.stack;
5223 if (prevStack != null && prevStack != this) {
Wale Ogunwale06579d62016-04-30 15:29:06 -07005224 prevStack.removeTask(task, reason,
5225 toTop ? REMOVE_TASK_MODE_MOVING_TO_TOP : REMOVE_TASK_MODE_MOVING);
Wale Ogunwale5f986092015-12-04 15:35:38 -08005226 }
5227 return prevStack;
5228 }
5229
5230 private void postAddTask(TaskRecord task, ActivityStack prevStack) {
5231 if (prevStack != null) {
Andrii Kulian933076d2016-03-29 17:04:42 -07005232 mStackSupervisor.scheduleReportPictureInPictureModeChangedIfNeeded(task, prevStack);
Wale Ogunwale5f986092015-12-04 15:35:38 -08005233 } else if (task.voiceSession != null) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07005234 try {
5235 task.voiceSession.taskStarted(task.intent, task.taskId);
5236 } catch (RemoteException e) {
5237 }
5238 }
5239 }
5240
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07005241 void addConfigOverride(ActivityRecord r, TaskRecord task) {
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08005242 final Rect bounds = task.updateOverrideConfigurationFromLaunchBounds();
Amith Yamasani0af6fa72016-01-17 15:36:19 -08005243 // TODO: VI deal with activity
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07005244 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
5245 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Wale Ogunwale6cae7652015-12-26 07:36:26 -08005246 (r.info.flags & FLAG_SHOW_FOR_ALL_USERS) != 0, r.userId, r.info.configChanges,
5247 task.voiceSession != null, r.mLaunchTaskBehind, bounds, task.mOverrideConfig,
Yorke Lee0e852472016-06-15 10:03:18 -07005248 task.mResizeMode, r.isAlwaysFocusable(), task.isHomeTask(),
Jiaquan Hedd1e66f2016-06-15 15:15:12 -07005249 r.appInfo.targetSdkVersion, r.mRotationAnimationHint, task.isOnTopLauncher());
Wale Ogunwale706ed792015-08-02 10:29:44 -07005250 r.taskConfigOverride = task.mOverrideConfig;
5251 }
5252
Wale Ogunwaled046a012015-12-24 13:05:59 -08005253 void moveToFrontAndResumeStateIfNeeded(
5254 ActivityRecord r, boolean moveToFront, boolean setResume, String reason) {
5255 if (!moveToFront) {
5256 return;
Wale Ogunwale079a0042015-10-24 11:44:07 -07005257 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08005258
5259 // If the activity owns the last resumed activity, transfer that together,
5260 // so that we don't resume the same activity again in the new stack.
5261 // Apps may depend on onResume()/onPause() being called in pairs.
5262 if (setResume) {
5263 mResumedActivity = r;
5264 }
5265 // Move the stack in which we are placing the activity to the front. The call will also
5266 // make sure the activity focus is set.
5267 moveToFront(reason);
Wale Ogunwale079a0042015-10-24 11:44:07 -07005268 }
5269
5270 /**
5271 * Moves the input activity from its current stack to this one.
5272 * NOTE: The current task of the activity isn't moved to this stack. Instead a new task is
5273 * created on this stack which the activity is added to.
5274 * */
5275 void moveActivityToStack(ActivityRecord r) {
5276 final ActivityStack prevStack = r.task.stack;
5277 if (prevStack.mStackId == mStackId) {
5278 // You are already in the right stack silly...
5279 return;
5280 }
5281
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07005282 final boolean wasFocused = mStackSupervisor.isFocusedStack(prevStack)
Wale Ogunwale079a0042015-10-24 11:44:07 -07005283 && (mStackSupervisor.topRunningActivityLocked() == r);
5284 final boolean wasResumed = wasFocused && (prevStack.mResumedActivity == r);
5285
5286 final TaskRecord task = createTaskRecord(
Suprabh Shukla09a88f52015-12-02 14:36:31 -08005287 mStackSupervisor.getNextTaskIdForUserLocked(r.userId),
5288 r.info, r.intent, null, null, true);
Wale Ogunwale079a0042015-10-24 11:44:07 -07005289 r.setTask(task, null);
5290 task.addActivityToTop(r);
5291 setAppTask(r, task);
Andrii Kulian933076d2016-03-29 17:04:42 -07005292 mStackSupervisor.scheduleReportPictureInPictureModeChangedIfNeeded(task, prevStack);
Wale Ogunwaled046a012015-12-24 13:05:59 -08005293 moveToFrontAndResumeStateIfNeeded(r, wasFocused, wasResumed, "moveActivityToStack");
5294 if (wasResumed) {
5295 prevStack.mResumedActivity = null;
5296 }
Wale Ogunwale079a0042015-10-24 11:44:07 -07005297 }
5298
Wale Ogunwale706ed792015-08-02 10:29:44 -07005299 private void setAppTask(ActivityRecord r, TaskRecord task) {
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08005300 final Rect bounds = task.updateOverrideConfigurationFromLaunchBounds();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08005301 mWindowManager.setAppTask(r.appToken, task.taskId, mStackId, bounds, task.mOverrideConfig,
Jiaquan Hedd1e66f2016-06-15 15:15:12 -07005302 task.mResizeMode, task.isHomeTask(), task.isOnTopLauncher());
Wale Ogunwale706ed792015-08-02 10:29:44 -07005303 r.taskConfigOverride = task.mOverrideConfig;
5304 }
5305
Craig Mautnerc00204b2013-03-05 15:02:14 -08005306 public int getStackId() {
5307 return mStackId;
5308 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07005309
5310 @Override
5311 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07005312 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
5313 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07005314 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08005315
Craig Mautner15df08a2015-04-01 12:17:18 -07005316 void onLockTaskPackagesUpdatedLocked() {
5317 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5318 mTaskHistory.get(taskNdx).setLockTaskAuth();
5319 }
5320 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005321}