blob: b6fc0cc924d73bb1d2ae6a5272e6604aa7ef8adf [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;
23import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -070024import static android.content.pm.ActivityInfo.FLAG_SHOW_FOR_ALL_USERS;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -070025
Wale Ogunwalee23149f2015-03-06 15:39:44 -080026import static com.android.server.am.ActivityManagerDebugConfig.*;
Chong Zhang75b37202015-12-04 14:16:36 -080027import static com.android.server.am.ActivityManagerService.LOCK_SCREEN_SHOWN;
Craig Mautner84984fa2014-06-19 11:19:20 -070028import static com.android.server.am.ActivityRecord.HOME_ACTIVITY_TYPE;
29import static com.android.server.am.ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Craig Mautner84984fa2014-06-19 11:19:20 -070030
Wale Ogunwale040b4702015-08-06 18:10:50 -070031import static com.android.server.am.ActivityStackSupervisor.MOVING;
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -070032import static com.android.server.am.ActivityStackSupervisor.PRESERVE_WINDOWS;
Wale Ogunwale040b4702015-08-06 18:10:50 -070033
Winsonc809cbb2015-11-02 12:06:15 -080034import android.graphics.Point;
Wale Ogunwale706ed792015-08-02 10:29:44 -070035import android.graphics.Rect;
Dianne Hackborn89ad4562014-08-24 16:45:38 -070036import android.util.ArraySet;
Wale Ogunwale1e3523c2015-09-16 13:11:10 -070037
Dianne Hackborn91097de2014-04-04 18:02:06 -070038import com.android.internal.app.IVoiceInteractor;
Dianne Hackborn85d558c2014-11-04 10:31:54 -080039import com.android.internal.content.ReferrerIntent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070040import com.android.internal.os.BatteryStatsImpl;
Kenny Rootadd58212013-05-07 09:47:34 -070041import com.android.server.Watchdog;
Craig Mautnercae015f2013-02-08 14:31:27 -080042import com.android.server.am.ActivityManagerService.ItemMatcher;
Craig Mautner4a1cb222013-12-04 16:14:06 -080043import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
Craig Mautner4b71aa12012-12-27 17:20:01 -080044import com.android.server.wm.AppTransition;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080045import com.android.server.wm.TaskGroup;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -070046import com.android.server.wm.WindowManagerService;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070047
48import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070049import android.app.ActivityManager;
Wale Ogunwale3797c222015-10-27 14:21:58 -070050import android.app.ActivityManager.StackId;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070051import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070052import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080053import android.app.IActivityController;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070054import android.app.ResultInfo;
Craig Mautnercae015f2013-02-08 14:31:27 -080055import android.app.ActivityManager.RunningTaskInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070056import android.content.ComponentName;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070057import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070058import android.content.pm.ActivityInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070059import android.content.pm.PackageManager;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070060import android.content.res.Configuration;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080061import android.graphics.Bitmap;
Santos Cordon73ff7d82013-03-06 17:24:11 -080062import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070063import android.os.Binder;
Dianne Hackbornce86ba82011-07-13 19:33:41 -070064import android.os.Bundle;
Craig Mautner329f4122013-11-07 09:10:42 -080065import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070066import android.os.Handler;
67import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +090068import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070069import android.os.Message;
Craig Mautnera0026042014-04-23 11:45:37 -070070import android.os.PersistableBundle;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070071import android.os.RemoteException;
72import android.os.SystemClock;
Craig Mautner329f4122013-11-07 09:10:42 -080073import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070074import android.os.UserHandle;
Craig Mautner4c07d022014-06-11 17:12:59 -070075import android.service.voice.IVoiceInteractionSession;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070076import android.util.EventLog;
Filip Gruszczynski3d82ed62015-12-10 10:41:39 -080077import android.util.Log;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070078import android.util.Slog;
Craig Mautner59c00972012-07-30 12:10:24 -070079import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070080
Craig Mautnercae015f2013-02-08 14:31:27 -080081import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -080082import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070083import java.lang.ref.WeakReference;
84import java.util.ArrayList;
85import java.util.Iterator;
86import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -080087import java.util.Objects;
Wale Ogunwale540e1232015-05-01 15:35:39 -070088import java.util.Set;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070089
90/**
91 * State and management of a single stack of activities.
92 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070093final class ActivityStack {
Craig Mautner5d9c7be2013-02-15 14:02:56 -080094
Wale Ogunwalee23149f2015-03-06 15:39:44 -080095 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityStack" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070096 private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
97 private static final String TAG_APP = TAG + POSTFIX_APP;
Wale Ogunwalee23149f2015-03-06 15:39:44 -080098 private static final String TAG_CLEANUP = TAG + POSTFIX_CLEANUP;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -070099 private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700100 private static final String TAG_CONTAINERS = TAG + POSTFIX_CONTAINERS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700101 private static final String TAG_PAUSE = TAG + POSTFIX_PAUSE;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700102 private static final String TAG_RELEASE = TAG + POSTFIX_RELEASE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700103 private static final String TAG_RESULTS = TAG + POSTFIX_RESULTS;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700104 private static final String TAG_SAVED_STATE = TAG + POSTFIX_SAVED_STATE;
105 private static final String TAG_SCREENSHOTS = TAG + POSTFIX_SCREENSHOTS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700106 private static final String TAG_STACK = TAG + POSTFIX_STACK;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700107 private static final String TAG_STATES = TAG + POSTFIX_STATES;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700108 private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
109 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
110 private static final String TAG_TRANSITION = TAG + POSTFIX_TRANSITION;
111 private static final String TAG_USER_LEAVING = TAG + POSTFIX_USER_LEAVING;
112 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700113
114 private static final boolean VALIDATE_TOKENS = false;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800115
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700116 // Ticks during which we check progress while waiting for an app to launch.
117 static final int LAUNCH_TICK = 500;
118
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700119 // How long we wait until giving up on the last activity to pause. This
120 // is short because it directly impacts the responsiveness of starting the
121 // next activity.
122 static final int PAUSE_TIMEOUT = 500;
123
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700124 // How long we wait for the activity to tell us it has stopped before
125 // giving up. This is a good amount of time because we really need this
126 // from the application in order to get its saved state.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700127 static final int STOP_TIMEOUT = 10 * 1000;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700128
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700129 // How long we wait until giving up on an activity telling us it has
130 // finished destroying itself.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700131 static final int DESTROY_TIMEOUT = 10 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800132
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700133 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800134 // disabled.
135 static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800136
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700137 // How long between activity launches that we consider safe to not warn
138 // the user about an unexpected activity being launched on top.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700139 static final long START_WARN_TIME = 5 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800140
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700141 // Set to false to disable the preview that is shown while a new activity
142 // is being started.
143 static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800144
Craig Mautner5eda9b32013-07-02 11:58:16 -0700145 // How long to wait for all background Activities to redraw following a call to
146 // convertToTranslucent().
147 static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
148
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -0800149 // How many activities have to be scheduled to stop to force a stop pass.
150 private static final int MAX_STOPPING_TO_FORCE = 3;
151
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700152 enum ActivityState {
153 INITIALIZING,
154 RESUMED,
155 PAUSING,
156 PAUSED,
157 STOPPING,
158 STOPPED,
159 FINISHING,
160 DESTROYING,
161 DESTROYED
162 }
163
164 final ActivityManagerService mService;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700165 final WindowManagerService mWindowManager;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800166 private final RecentTasks mRecentTasks;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800167
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700168 /**
169 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800170 * running) activities. It contains #TaskRecord objects.
171 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800172 private ArrayList<TaskRecord> mTaskHistory = new ArrayList<>();
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800173
174 /**
Dianne Hackbornbe707852011-11-11 14:32:10 -0800175 * Used for validating app tokens with window manager.
176 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800177 final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<>();
Dianne Hackbornbe707852011-11-11 14:32:10 -0800178
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700179 /**
180 * List of running activities, sorted by recent usage.
181 * The first entry in the list is the least recently used.
182 * It contains HistoryRecord objects.
183 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800184 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700185
186 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700187 * Animations that for the current transition have requested not to
188 * be considered for the transition animation.
189 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800190 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700191
192 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700193 * When we are in the process of pausing an activity, before starting the
194 * next one, this variable holds the activity that is currently being paused.
195 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800196 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700197
198 /**
199 * This is the last activity that we put into the paused state. This is
200 * used to determine if we need to do an activity transition while sleeping,
201 * when we normally hold the top activity paused.
202 */
203 ActivityRecord mLastPausedActivity = null;
204
205 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700206 * Activities that specify No History must be removed once the user navigates away from them.
207 * If the device goes to sleep with such an activity in the paused state then we save it here
208 * and finish it later if another activity replaces it on wakeup.
209 */
210 ActivityRecord mLastNoHistoryActivity = null;
211
212 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700213 * Current activity that is resumed, or null if there is none.
214 */
215 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800216
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700217 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700218 * This is the last activity that has been started. It is only used to
219 * identify when multiple activities are started at once so that the user
220 * can be warned they may not be in the activity they think they are.
221 */
222 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800223
Craig Mautner5eda9b32013-07-02 11:58:16 -0700224 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
225 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
226 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
227 // Activity in mTranslucentActivityWaiting is notified via
228 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
229 // background activity being drawn then the same call will be made with a true value.
230 ActivityRecord mTranslucentActivityWaiting = null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700231 private ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent = new ArrayList<>();
Craig Mautner5eda9b32013-07-02 11:58:16 -0700232
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700233 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700234 * Set when we know we are going to be calling updateConfiguration()
235 * soon, so want to skip intermediate config checks.
236 */
237 boolean mConfigWillChange;
238
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700239 // Whether or not this stack covers the entire screen; by default stacks are fullscreen
Todd Kennedyaab56db2015-01-30 09:39:53 -0800240 boolean mFullscreen = true;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -0700241 // Current bounds of the stack or null if fullscreen.
242 Rect mBounds = null;
Todd Kennedyaab56db2015-01-30 09:39:53 -0800243
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700244 long mLaunchStartTime = 0;
245 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800246
Craig Mautner858d8a62013-04-23 17:08:34 -0700247 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700248
Craig Mautnerc00204b2013-03-05 15:02:14 -0800249 final int mStackId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800250 final ActivityContainer mActivityContainer;
Craig Mautnere0a38842013-12-16 16:14:02 -0800251 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
252 ArrayList<ActivityStack> mStacks;
253 /** The attached Display's unique identifier, or -1 if detached */
254 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800255
Craig Mautner27084302013-03-25 08:05:25 -0700256 /** Run all ActivityStacks through this */
257 final ActivityStackSupervisor mStackSupervisor;
258
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700259 private final LaunchingTaskPositioner mTaskPositioner;
260
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700261 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700262 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
263 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
264 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
265 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700266 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Jose Lima4b6c6692014-08-12 17:41:12 -0700267 static final int RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG =
Craig Mautneree2e45a2014-06-27 12:10:03 -0700268 ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 7;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700269
270 static class ScheduleDestroyArgs {
271 final ProcessRecord mOwner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700272 final String mReason;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700273 ScheduleDestroyArgs(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700274 mOwner = owner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700275 mReason = reason;
276 }
277 }
278
Zoran Marcetaf958b322012-08-09 20:27:12 +0900279 final Handler mHandler;
280
281 final class ActivityStackHandler extends Handler {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800282
Craig Mautnerc8143c62013-09-03 12:15:57 -0700283 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900284 super(looper);
285 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700286
Zoran Marcetaf958b322012-08-09 20:27:12 +0900287 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700288 public void handleMessage(Message msg) {
289 switch (msg.what) {
290 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800291 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700292 // We don't at this point know if the activity is fullscreen,
293 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800294 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700295 synchronized (mService) {
296 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700297 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700298 }
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700299 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800300 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700301 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700302 case LAUNCH_TICK_MSG: {
303 ActivityRecord r = (ActivityRecord)msg.obj;
304 synchronized (mService) {
305 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700306 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700307 }
308 }
309 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700310 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800311 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700312 // We don't at this point know if the activity is fullscreen,
313 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800314 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800315 synchronized (mService) {
Craig Mautner299f9602015-01-26 09:47:33 -0800316 activityDestroyedLocked(r != null ? r.appToken : null, "destroyTimeout");
Craig Mautnerd2328952013-03-05 12:46:26 -0800317 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700318 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700319 case STOP_TIMEOUT_MSG: {
320 ActivityRecord r = (ActivityRecord)msg.obj;
321 // We don't at this point know if the activity is fullscreen,
322 // so we need to be conservative and assume it isn't.
323 Slog.w(TAG, "Activity stop timeout for " + r);
324 synchronized (mService) {
325 if (r.isInHistory()) {
326 activityStoppedLocked(r, null, null, null);
327 }
328 }
329 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700330 case DESTROY_ACTIVITIES_MSG: {
331 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
332 synchronized (mService) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700333 destroyActivitiesLocked(args.mOwner, args.mReason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700334 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700335 } break;
336 case TRANSLUCENT_TIMEOUT_MSG: {
337 synchronized (mService) {
338 notifyActivityDrawnLocked(null);
339 }
340 } break;
Jose Lima4b6c6692014-08-12 17:41:12 -0700341 case RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG: {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700342 synchronized (mService) {
Jose Lima4b6c6692014-08-12 17:41:12 -0700343 final ActivityRecord r = getVisibleBehindActivity();
344 Slog.e(TAG, "Timeout waiting for cancelVisibleBehind player=" + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700345 if (r != null) {
346 mService.killAppAtUsersRequest(r.app, null);
347 }
348 }
349 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700350 }
351 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800352 }
353
Craig Mautner34b73df2014-01-12 21:11:08 -0800354 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800355 int count = 0;
356 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
357 count += mTaskHistory.get(taskNdx).mActivities.size();
358 }
359 return count;
360 }
361
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800362 ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer,
363 RecentTasks recentTasks) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800364 mActivityContainer = activityContainer;
365 mStackSupervisor = activityContainer.getOuter();
366 mService = mStackSupervisor.mService;
367 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
368 mWindowManager = mService.mWindowManager;
369 mStackId = activityContainer.mStackId;
Fyodor Kupolovf63b89c2015-10-27 18:08:56 -0700370 mCurrentUser = mService.mUserController.getCurrentUserIdLocked();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800371 mRecentTasks = recentTasks;
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700372 mTaskPositioner = mStackId == FREEFORM_WORKSPACE_STACK_ID
373 ? new LaunchingTaskPositioner() : null;
374 }
375
376 void attachDisplay(ActivityStackSupervisor.ActivityDisplay activityDisplay, boolean onTop) {
377 mDisplayId = activityDisplay.mDisplayId;
378 mStacks = activityDisplay.mStacks;
379 mBounds = mWindowManager.attachStack(mStackId, activityDisplay.mDisplayId, onTop);
380 mFullscreen = mBounds == null;
381 if (mTaskPositioner != null) {
382 mTaskPositioner.setDisplay(activityDisplay.mDisplay);
383 mTaskPositioner.configure(mBounds);
384 }
385 }
386
387 void detachDisplay() {
388 mDisplayId = Display.INVALID_DISPLAY;
389 mStacks = null;
390 if (mTaskPositioner != null) {
391 mTaskPositioner.reset();
392 }
393 mWindowManager.detachStack(mStackId);
394 }
395
Winsonc809cbb2015-11-02 12:06:15 -0800396 public void getDisplaySize(Point out) {
397 mActivityContainer.mActivityDisplay.mDisplay.getSize(out);
398 }
399
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700400 void setBounds(Rect bounds) {
401 mBounds = mFullscreen ? null : new Rect(bounds);
Filip Gruszczynski9ac01a72015-09-04 11:12:17 -0700402 if (mTaskPositioner != null) {
403 mTaskPositioner.configure(bounds);
404 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700405 }
Craig Mautner5962b122012-10-05 14:45:52 -0700406
Amith Yamasani734983f2014-03-04 16:48:05 -0800407 boolean okToShowLocked(ActivityRecord r) {
Chong Zhang45c25ce2015-08-10 22:18:26 -0700408 return mStackSupervisor.okToShowLocked(r);
Craig Mautner5962b122012-10-05 14:45:52 -0700409 }
410
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700411 final ActivityRecord topRunningActivityLocked() {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800412 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700413 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked();
Craig Mautner6b74cb52013-09-27 17:02:21 -0700414 if (r != null) {
415 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800416 }
417 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700418 return null;
419 }
420
421 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800422 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
423 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800424 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800425 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
426 ActivityRecord r = activities.get(activityNdx);
Amith Yamasani734983f2014-03-04 16:48:05 -0800427 if (!r.finishing && !r.delayedResume && r != notTop && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800428 return r;
429 }
430 }
431 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700432 return null;
433 }
434
435 /**
436 * This is a simplified version of topRunningActivityLocked that provides a number of
437 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800438 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700439 * @param token If non-null, any history records matching this token will be skipped.
440 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800441 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700442 * @return Returns the HistoryRecord of the next activity on the stack.
443 */
444 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800445 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
446 TaskRecord task = mTaskHistory.get(taskNdx);
447 if (task.taskId == taskId) {
448 continue;
449 }
450 ArrayList<ActivityRecord> activities = task.mActivities;
451 for (int i = activities.size() - 1; i >= 0; --i) {
452 final ActivityRecord r = activities.get(i);
453 // Note: the taskId check depends on real taskId fields being non-zero
Amith Yamasani734983f2014-03-04 16:48:05 -0800454 if (!r.finishing && (token != r.appToken) && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800455 return r;
456 }
457 }
458 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700459 return null;
460 }
461
Craig Mautner8849a5e2013-04-02 16:41:03 -0700462 final ActivityRecord topActivity() {
Craig Mautner8849a5e2013-04-02 16:41:03 -0700463 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
464 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Craig Mautner0175b882014-09-07 18:05:31 -0700465 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
466 final ActivityRecord r = activities.get(activityNdx);
467 if (!r.finishing) {
468 return r;
469 }
Craig Mautner8849a5e2013-04-02 16:41:03 -0700470 }
471 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700472 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700473 }
474
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700475 final TaskRecord topTask() {
476 final int size = mTaskHistory.size();
477 if (size > 0) {
478 return mTaskHistory.get(size - 1);
479 }
480 return null;
481 }
482
Craig Mautnerd2328952013-03-05 12:46:26 -0800483 TaskRecord taskForIdLocked(int id) {
484 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
485 final TaskRecord task = mTaskHistory.get(taskNdx);
486 if (task.taskId == id) {
487 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800488 }
489 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700490 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700491 }
492
Craig Mautnerd2328952013-03-05 12:46:26 -0800493 ActivityRecord isInStackLocked(IBinder token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700494 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale60454db2015-01-23 16:05:07 -0800495 return isInStackLocked(r);
496 }
497
498 ActivityRecord isInStackLocked(ActivityRecord r) {
499 if (r == null) {
500 return null;
501 }
502 final TaskRecord task = r.task;
Wale Ogunwale7d701172015-03-11 15:36:30 -0700503 if (task != null && task.stack != null
504 && task.mActivities.contains(r) && mTaskHistory.contains(task)) {
Wale Ogunwale60454db2015-01-23 16:05:07 -0800505 if (task.stack != this) Slog.w(TAG,
Craig Mautnerd2328952013-03-05 12:46:26 -0800506 "Illegal state! task does not point to stack it is in.");
Wale Ogunwale60454db2015-01-23 16:05:07 -0800507 return r;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800508 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800509 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800510 }
511
Craig Mautner2420ead2013-04-01 17:13:20 -0700512 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700513 final boolean hadit = mLRUActivities.remove(r);
514 mLRUActivities.add(r);
515 return hadit;
516 }
517
Craig Mautnerde4ef022013-04-07 19:01:33 -0700518 final boolean isHomeStack() {
519 return mStackId == HOME_STACK_ID;
520 }
521
Craig Mautnere0a38842013-12-16 16:14:02 -0800522 final boolean isOnHomeDisplay() {
523 return isAttached() &&
524 mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
525 }
526
Wale Ogunwaleeae451e2015-08-04 15:20:50 -0700527 void moveToFront(String reason) {
528 moveToFront(reason, null);
529 }
530
531 /**
532 * @param reason The reason for moving the stack to the front.
533 * @param task If non-null, the task will be moved to the top of the stack.
534 * */
535 void moveToFront(String reason, TaskRecord task) {
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700536 if (!isAttached()) {
537 return;
538 }
Wale Ogunwale925d0d12015-09-23 15:40:07 -0700539
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700540 mStacks.remove(this);
541 int addIndex = mStacks.size();
542
543 if (addIndex > 0) {
544 final ActivityStack topStack = mStacks.get(addIndex - 1);
Filip Gruszczynski114d5ca2015-12-04 09:05:00 -0800545 if (StackId.isAlwaysOnTop(topStack.mStackId) && topStack != this) {
546 // If the top stack is always on top, we move this stack just below it.
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700547 addIndex--;
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800548 }
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700549 }
550
551 mStacks.add(addIndex, this);
552
553 // TODO(multi-display): Needs to also work if focus is moving to the non-home display.
554 if (isOnHomeDisplay()) {
555 mStackSupervisor.setFocusStack(reason, this);
556 }
557 if (task != null) {
558 insertTaskAtTop(task, null);
559 } else {
560 task = topTask();
561 }
562 if (task != null) {
563 mWindowManager.moveTaskToTop(task.taskId);
Craig Mautner4a1cb222013-12-04 16:14:06 -0800564 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800565 }
566
567 final boolean isAttached() {
568 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800569 }
570
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700571 /**
572 * Returns the top activity in any existing task matching the given
573 * Intent. Returns null if no such task is found.
574 */
Craig Mautnerac6f8432013-07-17 13:24:59 -0700575 ActivityRecord findTaskLocked(ActivityRecord target) {
576 Intent intent = target.intent;
577 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700578 ComponentName cls = intent.getComponent();
579 if (info.targetActivity != null) {
580 cls = new ComponentName(info.packageName, info.targetActivity);
581 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700582 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautnerd00f4742014-03-12 14:17:26 -0700583 boolean isDocument = intent != null & intent.isDocument();
584 // If documentData is non-null then it must match the existing task data.
585 Uri documentData = isDocument ? intent.getData() : null;
Craig Mautner000f0022013-02-26 15:04:29 -0800586
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700587 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800588 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
589 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn91097de2014-04-04 18:02:06 -0700590 if (task.voiceSession != null) {
591 // We never match voice sessions; those always run independently.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700592 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": voice session");
Dianne Hackborn91097de2014-04-04 18:02:06 -0700593 continue;
594 }
Craig Mautnerac6f8432013-07-17 13:24:59 -0700595 if (task.userId != userId) {
596 // Looking for a different task.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700597 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700598 continue;
599 }
Craig Mautner000f0022013-02-26 15:04:29 -0800600 final ActivityRecord r = task.getTopActivity();
601 if (r == null || r.finishing || r.userId != userId ||
602 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700603 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800604 continue;
605 }
Chong Zhangb546f7e2015-08-05 14:21:36 -0700606 if (r.mActivityType != target.mActivityType) {
607 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch activity type");
608 continue;
609 }
Craig Mautner000f0022013-02-26 15:04:29 -0800610
Craig Mautnerd00f4742014-03-12 14:17:26 -0700611 final Intent taskIntent = task.intent;
612 final Intent affinityIntent = task.affinityIntent;
613 final boolean taskIsDocument;
614 final Uri taskDocumentData;
615 if (taskIntent != null && taskIntent.isDocument()) {
616 taskIsDocument = true;
617 taskDocumentData = taskIntent.getData();
618 } else if (affinityIntent != null && affinityIntent.isDocument()) {
619 taskIsDocument = true;
620 taskDocumentData = affinityIntent.getData();
621 } else {
622 taskIsDocument = false;
623 taskDocumentData = null;
624 }
625
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700626 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Comparing existing cls="
Craig Mautnerd00f4742014-03-12 14:17:26 -0700627 + taskIntent.getComponent().flattenToShortString()
Dianne Hackborn79228822014-09-16 11:11:23 -0700628 + "/aff=" + r.task.rootAffinity + " to new cls="
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700629 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Dianne Hackborn79228822014-09-16 11:11:23 -0700630 if (!isDocument && !taskIsDocument && task.rootAffinity != null) {
631 if (task.rootAffinity.equals(target.taskAffinity)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700632 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching affinity!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700633 return r;
634 }
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700635 } else if (taskIntent != null && taskIntent.getComponent() != null &&
636 taskIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700637 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700638 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800639 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700640 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
641 "For Intent " + intent + " bringing to top: " + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800642 return r;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700643 } else if (affinityIntent != null && affinityIntent.getComponent() != null &&
644 affinityIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700645 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700646 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800647 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700648 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
649 "For Intent " + intent + " bringing to top: " + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800650 return r;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700651 } else if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700652 }
653
654 return null;
655 }
656
657 /**
658 * Returns the first activity (starting from the top of the stack) that
659 * is the same as the given activity. Returns null if no such activity
660 * is found.
661 */
Craig Mautner8849a5e2013-04-02 16:41:03 -0700662 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700663 ComponentName cls = intent.getComponent();
664 if (info.targetActivity != null) {
665 cls = new ComponentName(info.packageName, info.targetActivity);
666 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700667 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700668
Craig Mautner000f0022013-02-26 15:04:29 -0800669 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700670 final TaskRecord task = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700671 final boolean notCurrentUserTask =
672 !mStackSupervisor.isCurrentProfileLocked(task.userId);
Craig Mautnerac6f8432013-07-17 13:24:59 -0700673 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700674
Craig Mautner000f0022013-02-26 15:04:29 -0800675 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
676 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700677 if (notCurrentUserTask && (r.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0) {
Wale Ogunwale25073dd2015-07-21 16:54:54 -0700678 continue;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700679 }
Craig Mautner000f0022013-02-26 15:04:29 -0800680 if (!r.finishing && r.intent.getComponent().equals(cls) && r.userId == userId) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700681 return r;
682 }
683 }
684 }
685
686 return null;
687 }
688
Amith Yamasani742a6712011-05-04 14:49:28 -0700689 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700690 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700691 */
Craig Mautner93529a42013-10-04 15:03:13 -0700692 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800693 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700694 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800695 }
696 mCurrentUser = userId;
697
698 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800699 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800700 for (int i = 0; i < index; ) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700701 final TaskRecord task = mTaskHistory.get(i);
702
703 // NOTE: If {@link TaskRecord#topRunningActivityLocked} return is not null then it is
704 // okay to show the activity when locked.
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700705 if (mStackSupervisor.isCurrentProfileLocked(task.userId)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700706 || task.topRunningActivityLocked() != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700707 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "switchUserLocked: stack=" + getStackId() +
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700708 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800709 mTaskHistory.remove(i);
710 mTaskHistory.add(task);
711 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800712 // Use same value for i.
713 } else {
714 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800715 }
716 }
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700717 if (VALIDATE_TOKENS) {
718 validateAppTokensLocked();
719 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700720 }
721
Craig Mautner2420ead2013-04-01 17:13:20 -0700722 void minimalResumeActivityLocked(ActivityRecord r) {
723 r.state = ActivityState.RESUMED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700724 if (DEBUG_STATES) Slog.v(TAG_STATES,
725 "Moving to RESUMED: " + r + " (starting new instance)");
Craig Mautner2420ead2013-04-01 17:13:20 -0700726 r.stopped = false;
727 mResumedActivity = r;
728 r.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800729 mRecentTasks.addLocked(r.task);
Craig Mautner2420ead2013-04-01 17:13:20 -0700730 completeResumeLocked(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700731 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautner1e8b8722013-10-14 18:24:52 -0700732 setLaunchTime(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700733 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
734 "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700735 }
736
Filip Gruszczynski3d82ed62015-12-10 10:41:39 -0800737 void addRecentActivityLocked(ActivityRecord r) {
Chong Zhang45c25ce2015-08-10 22:18:26 -0700738 if (r != null) {
739 mRecentTasks.addLocked(r.task);
740 r.task.touchActiveTime();
741 }
742 }
743
Narayan Kamath7829c812015-06-08 17:39:43 +0100744 private void startLaunchTraces(String packageName) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700745 if (mFullyDrawnStartTime != 0) {
746 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
747 }
Narayan Kamath7829c812015-06-08 17:39:43 +0100748 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching: " + packageName, 0);
Dianne Hackborncee04b52013-07-03 17:01:28 -0700749 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
750 }
751
752 private void stopFullyDrawnTraceIfNeeded() {
753 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
754 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
755 mFullyDrawnStartTime = 0;
756 }
757 }
758
Craig Mautnere79d42682013-04-01 19:01:53 -0700759 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700760 if (r.displayStartTime == 0) {
761 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
762 if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100763 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700764 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700765 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700766 } else if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100767 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700768 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700769 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700770 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800771
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700772 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700773 // Make sure that there is no activity waiting for this to launch.
774 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
775 r.displayStartTime = r.fullyDrawnStartTime = 0;
776 } else {
777 mStackSupervisor.removeTimeoutsForActivityLocked(r);
778 mStackSupervisor.scheduleIdleTimeoutLocked(r);
779 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700780 }
781
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800782 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800783 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800784 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
785 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
786 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
787 activities.get(activityNdx).setSleeping(false);
788 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800789 }
Craig Mautnerf49b0a42014-11-20 15:06:40 -0800790 if (mPausingActivity != null) {
791 Slog.d(TAG, "awakeFromSleepingLocked: previously pausing activity didn't pause");
792 activityPausedLocked(mPausingActivity.appToken, true);
793 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800794 }
795
Craig Mautner0eea92c2013-05-16 13:35:39 -0700796 /**
797 * @return true if something must be done before going to sleep.
798 */
799 boolean checkReadyForSleepLocked() {
800 if (mResumedActivity != null) {
801 // Still have something resumed; can't sleep until it is paused.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700802 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep needs to pause " + mResumedActivity);
803 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
804 "Sleep => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700805 startPausingLocked(false, true, false, false);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700806 return true;
807 }
808 if (mPausingActivity != null) {
809 // Still waiting for something to pause; can't sleep yet.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700810 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still waiting to pause " + mPausingActivity);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700811 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800812 }
813
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700814 if (hasVisibleBehindActivity()) {
815 // Stop visible behind activity before going to sleep.
816 final ActivityRecord r = mActivityContainer.mActivityDisplay.mVisibleBehindActivity;
817 mStackSupervisor.mStoppingActivities.add(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700818 if (DEBUG_STATES) Slog.v(TAG_STATES,
819 "Sleep still waiting to stop visible behind " + r);
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700820 return true;
821 }
822
Craig Mautner0eea92c2013-05-16 13:35:39 -0700823 return false;
824 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800825
Craig Mautner0eea92c2013-05-16 13:35:39 -0700826 void goToSleep() {
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -0700827 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800828
Craig Mautner0eea92c2013-05-16 13:35:39 -0700829 // Make sure any stopped but visible activities are now sleeping.
830 // This ensures that the activity's onStop() is called.
831 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
832 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
833 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
834 final ActivityRecord r = activities.get(activityNdx);
835 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED) {
836 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800837 }
838 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800839 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700840 }
Craig Mautner59c00972012-07-30 12:10:24 -0700841
Winson8b1871d2015-11-20 09:56:20 -0800842 public final Bitmap screenshotActivitiesLocked(ActivityRecord who) {
843 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "screenshotActivitiesLocked: " + who);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800844 if (who.noDisplay) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700845 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tNo display");
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800846 return null;
847 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800848
Winson Chung083baf92014-07-11 10:32:42 -0700849 if (isHomeStack()) {
Winson Chung376543b2014-05-21 17:43:28 -0700850 // This is an optimization -- since we never show Home or Recents within Recents itself,
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800851 // we can just go ahead and skip taking the screenshot if this is the home stack.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700852 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tHome stack");
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700853 return null;
854 }
855
Winson Chung48a10a52014-08-27 14:36:51 -0700856 int w = mService.mThumbnailWidth;
857 int h = mService.mThumbnailHeight;
Winson8b1871d2015-11-20 09:56:20 -0800858 float scale = 1f;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800859 if (w > 0) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700860 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tTaking screenshot");
Winson8b1871d2015-11-20 09:56:20 -0800861
862 // When this flag is set, we currently take the fullscreen screenshot of the activity
Winson387aac62015-11-25 11:18:56 -0800863 // but scaled to half the size. This gives us a "good-enough" fullscreen thumbnail to
864 // use within SystemUI while keeping memory usage low.
Winson8b1871d2015-11-20 09:56:20 -0800865 if (mService.mTakeFullscreenScreenshots) {
Winson8b1871d2015-11-20 09:56:20 -0800866 w = h = -1;
Winson387aac62015-11-25 11:18:56 -0800867 scale = 0.5f;
Winson8b1871d2015-11-20 09:56:20 -0800868 }
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800869 return mWindowManager.screenshotApplications(who.appToken, Display.DEFAULT_DISPLAY,
Winson8b1871d2015-11-20 09:56:20 -0800870 w, h, scale);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800871 }
Winson Chung376543b2014-05-21 17:43:28 -0700872 Slog.e(TAG, "Invalid thumbnail dimensions: " + w + "x" + h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800873 return null;
874 }
875
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700876 /**
877 * Start pausing the currently resumed activity. It is an error to call this if there
878 * is already an activity being paused or there is no resumed activity.
879 *
880 * @param userLeaving True if this should result in an onUserLeaving to the current activity.
881 * @param uiSleeping True if this is happening with the user interface going to sleep (the
882 * screen turning off).
883 * @param resuming True if this is being called as part of resuming the top activity, so
884 * we shouldn't try to instigate a resume here.
885 * @param dontWait True if the caller does not want to wait for the pause to complete. If
886 * set to true, we will immediately complete the pause here before returning.
887 * @return Returns true if an activity now is in the PAUSING state, and we are waiting for
888 * it to tell us when it is done.
889 */
890 final boolean startPausingLocked(boolean userLeaving, boolean uiSleeping, boolean resuming,
891 boolean dontWait) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800892 if (mPausingActivity != null) {
riddle_hsu7dfe4d72015-02-16 18:43:49 +0800893 Slog.wtf(TAG, "Going to pause when pause is already pending for " + mPausingActivity
894 + " state=" + mPausingActivity.state);
895 if (!mService.isSleeping()) {
896 // Avoid recursion among check for sleep and complete pause during sleeping.
897 // Because activity will be paused immediately after resume, just let pause
898 // be completed by the order of activity paused from clients.
899 completePauseLocked(false);
900 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800901 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700902 ActivityRecord prev = mResumedActivity;
903 if (prev == null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700904 if (!resuming) {
905 Slog.wtf(TAG, "Trying to pause when nothing is resumed");
906 mStackSupervisor.resumeTopActivitiesLocked();
907 }
908 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700909 }
Craig Mautnerdf88d732014-01-27 09:21:32 -0800910
911 if (mActivityContainer.mParentActivity == null) {
912 // Top level stack, not a child. Look for child stacks.
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700913 mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping, resuming, dontWait);
Craig Mautnerdf88d732014-01-27 09:21:32 -0800914 }
915
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700916 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSING: " + prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700917 else if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700918 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800919 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700920 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -0700921 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
922 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700923 prev.state = ActivityState.PAUSING;
924 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700925 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700926 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
Wale Ogunwale979f5ed2015-10-12 11:22:50 -0700927 if (mService.mHasRecents
928 && (next == null || next.noDisplay || next.task != prev.task || uiSleeping)) {
Jorim Jaggic2f262b2015-12-07 16:59:10 -0800929 prev.mUpdateTaskThumbnailWhenHidden = true;
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700930 }
Dianne Hackborncee04b52013-07-03 17:01:28 -0700931 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700932
933 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -0800934
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700935 if (prev.app != null && prev.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700936 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending pause: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700937 try {
938 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700939 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700940 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -0700941 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800942 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700943 userLeaving, prev.configChangeFlags, dontWait);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700944 } catch (Exception e) {
945 // Ignore exception, if process died other code will cleanup.
946 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800947 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700948 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700949 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700950 }
951 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800952 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700953 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700954 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700955 }
956
957 // If we are not going to sleep, we want to ensure the device is
958 // awake until the next activity is started.
Dianne Hackborn3d07c942015-03-13 18:02:54 -0700959 if (!uiSleeping && !mService.isSleepingOrShuttingDown()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700960 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700961 }
962
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800963 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700964 // Have the window manager pause its key dispatching until the new
965 // activity has started. If we're pausing the activity just because
966 // the screen is being turned off and the UI is sleeping, don't interrupt
967 // key dispatch; the same activity will pick it up again on wakeup.
968 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800969 prev.pauseKeyDispatchingLocked();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700970 } else if (DEBUG_PAUSE) {
971 Slog.v(TAG_PAUSE, "Key dispatch not paused for screen off");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700972 }
973
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700974 if (dontWait) {
975 // If the caller said they don't want to wait for the pause, then complete
976 // the pause now.
977 completePauseLocked(false);
978 return false;
979
980 } else {
981 // Schedule a pause timeout in case the app doesn't respond.
982 // We don't give it much time because this directly impacts the
983 // responsiveness seen by the user.
984 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
985 msg.obj = prev;
986 prev.pauseTime = SystemClock.uptimeMillis();
987 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700988 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Waiting for pause to complete...");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700989 return true;
990 }
991
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700992 } else {
993 // This activity failed to schedule the
994 // pause, so just treat it as being paused now.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700995 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Activity not running, resuming next.");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700996 if (!resuming) {
997 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
998 }
999 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001000 }
1001 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001002
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001003 final void activityPausedLocked(IBinder token, boolean timeout) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001004 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1005 "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001006
Craig Mautnerd2328952013-03-05 12:46:26 -08001007 final ActivityRecord r = isInStackLocked(token);
1008 if (r != null) {
1009 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
1010 if (mPausingActivity == r) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001011 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSED: " + r
Craig Mautnerd2328952013-03-05 12:46:26 -08001012 + (timeout ? " (due to timeout)" : " (pause complete)"));
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001013 completePauseLocked(true);
Craig Mautnerd2328952013-03-05 12:46:26 -08001014 } else {
1015 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
1016 r.userId, System.identityHashCode(r), r.shortComponentName,
1017 mPausingActivity != null
1018 ? mPausingActivity.shortComponentName : "(none)");
riddle_hsu9caeef72015-10-20 16:34:05 +08001019 if (r.state == ActivityState.PAUSING) {
1020 r.state = ActivityState.PAUSED;
1021 if (r.finishing) {
1022 if (DEBUG_PAUSE) Slog.v(TAG,
1023 "Executing finish of failed to pause activity: " + r);
1024 finishCurrentActivityLocked(r, FINISH_AFTER_VISIBLE, false);
1025 }
louis_chang047dfd42015-04-08 16:35:55 +08001026 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001027 }
1028 }
1029 }
1030
Craig Mautnera0026042014-04-23 11:45:37 -07001031 final void activityStoppedLocked(ActivityRecord r, Bundle icicle,
1032 PersistableBundle persistentState, CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07001033 if (r.state != ActivityState.STOPPING) {
1034 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
1035 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
1036 return;
1037 }
Craig Mautner21d24a22014-04-23 11:45:37 -07001038 if (persistentState != null) {
1039 r.persistentState = persistentState;
1040 mService.notifyTaskPersisterLocked(r.task, false);
1041 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001042 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001043 if (icicle != null) {
1044 // If icicle is null, this is happening due to a timeout, so we
1045 // haven't really saved the state.
1046 r.icicle = icicle;
1047 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -08001048 r.launchCount = 0;
Winson Chung740c3ac2014-11-12 16:14:38 -08001049 r.updateThumbnailLocked(null, description);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001050 }
1051 if (!r.stopped) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001052 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to STOPPED: " + r + " (stop complete)");
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001053 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
1054 r.stopped = true;
1055 r.state = ActivityState.STOPPED;
Jose Lima4b6c6692014-08-12 17:41:12 -07001056 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == r) {
1057 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001058 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -07001059 if (r.finishing) {
1060 r.clearOptionsLocked();
1061 } else {
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001062 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07001063 destroyActivityLocked(r, true, "stop-config");
Craig Mautner05d29032013-05-03 13:40:13 -07001064 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001065 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -07001066 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -08001067 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001068 }
1069 }
1070 }
1071
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001072 private void completePauseLocked(boolean resumeNext) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001073 ActivityRecord prev = mPausingActivity;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001074 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -08001075
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001076 if (prev != null) {
Filip Gruszczynskidba623a2015-12-04 15:45:35 -08001077 final boolean wasStopping = prev.state == ActivityState.STOPPING;
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001078 prev.state = ActivityState.PAUSED;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001079 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001080 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001081 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001082 } else if (prev.app != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001083 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending stop: " + prev);
Craig Mautner8c14c152015-01-15 17:32:07 -08001084 if (mStackSupervisor.mWaitingVisibleActivities.remove(prev)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001085 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1086 "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001087 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001088 if (prev.configDestroy) {
1089 // The previous is being paused because the configuration
1090 // is changing, which means it is actually stopping...
1091 // To juggle the fact that we are also starting a new
1092 // instance right now, we need to first completely stop
1093 // the current instance before starting the new one.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001094 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Destroying after pause: " + prev);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001095 destroyActivityLocked(prev, true, "pause-config");
Filip Gruszczynskidba623a2015-12-04 15:45:35 -08001096 } else if (wasStopping) {
1097 // We are also stopping, the stop request must have gone soon after the pause.
1098 // We can't clobber it, because the stop confirmation will not be handled.
1099 // We don't need to schedule another stop, we only need to let it happen.
1100 prev.state = ActivityState.STOPPING;
Wale Ogunwale5c42e502015-04-08 09:18:54 -07001101 } else if (!hasVisibleBehindActivity() || mService.isSleepingOrShuttingDown()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07001102 // If we were visible then resumeTopActivities will release resources before
Craig Mautneree2e45a2014-06-27 12:10:03 -07001103 // stopping.
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -08001104 addToStopping(prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001105 }
1106 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001107 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "App died during pause, not stopping: " + prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001108 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001109 }
Wale Ogunwale07927bf2015-03-28 17:21:05 -07001110 // It is possible the activity was freezing the screen before it was paused.
1111 // In that case go ahead and remove the freeze this activity has on the screen
1112 // since it is no longer visible.
1113 prev.stopFreezingScreenLocked(true /*force*/);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001114 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001115 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001116
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001117 if (resumeNext) {
1118 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
1119 if (!mService.isSleepingOrShuttingDown()) {
1120 mStackSupervisor.resumeTopActivitiesLocked(topStack, prev, null);
1121 } else {
1122 mStackSupervisor.checkReadyForSleepLocked();
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001123 ActivityRecord top = topStack.topRunningActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001124 if (top == null || (prev != null && top != prev)) {
1125 // If there are no more activities available to run,
1126 // do resume anyway to start something. Also if the top
1127 // activity on the stack is not the just paused activity,
1128 // we need to go ahead and resume it to ensure we complete
1129 // an in-flight app switch.
1130 mStackSupervisor.resumeTopActivitiesLocked(topStack, null, null);
1131 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07001132 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001133 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001134
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001135 if (prev != null) {
1136 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001137
Craig Mautner525f3d92013-05-07 14:01:50 -07001138 if (prev.app != null && prev.cpuTimeAtResume > 0
1139 && mService.mBatteryStatsService.isOnBattery()) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001140 long diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
1141 - prev.cpuTimeAtResume;
Craig Mautner525f3d92013-05-07 14:01:50 -07001142 if (diff > 0) {
1143 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
1144 synchronized (bsi) {
1145 BatteryStatsImpl.Uid.Proc ps =
1146 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -07001147 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -07001148 if (ps != null) {
1149 ps.addForegroundTimeLocked(diff);
1150 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001151 }
1152 }
1153 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001154 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001155 }
Winson Chung740c3ac2014-11-12 16:14:38 -08001156
1157 // Notfiy when the task stack has changed
1158 mService.notifyTaskStackChangedLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001159 }
1160
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -08001161 private void addToStopping(ActivityRecord r) {
1162 mStackSupervisor.mStoppingActivities.add(r);
1163 if (mStackSupervisor.mStoppingActivities.size() > MAX_STOPPING_TO_FORCE ||
1164 r.frontOfTask && mTaskHistory.size() <= 1) {
1165 // If we already have a few activities waiting to stop,
1166 // then give up on things going idle and start clearing
1167 // them out. Or if r is the last of activity of the last task the stack
1168 // will be empty and must be cleared immediately.
1169 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "To many pending stops, forcing idle");
1170 mStackSupervisor.scheduleIdleLocked();
1171 } else {
1172 mStackSupervisor.checkReadyForSleepLocked();
1173 }
1174 }
1175
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001176 /**
1177 * Once we know that we have asked an application to put an activity in
1178 * the resumed state (either by launching it or explicitly telling it),
1179 * this function updates the rest of our state to match that fact.
1180 */
Craig Mautner525f3d92013-05-07 14:01:50 -07001181 private void completeResumeLocked(ActivityRecord next) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001182 next.idle = false;
1183 next.results = null;
1184 next.newIntents = null;
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001185
Chong Zhang85ee6542015-10-02 13:36:38 -07001186 if (next.isHomeActivity()) {
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001187 ProcessRecord app = next.task.mActivities.get(0).app;
1188 if (app != null && app != mService.mHomeProcess) {
1189 mService.mHomeProcess = app;
1190 }
1191 }
1192
Craig Mautner07566322013-09-26 16:42:55 -07001193 if (next.nowVisible) {
1194 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02001195 mStackSupervisor.notifyActivityDrawnForKeyguard();
Craig Mautner07566322013-09-26 16:42:55 -07001196 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001197
1198 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -07001199 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001200
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001201 mStackSupervisor.reportResumedActivityLocked(next);
1202
1203 next.resumeKeyDispatchingLocked();
1204 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001205
1206 // Mark the point when the activity is resuming
1207 // TODO: To be more accurate, the mark should be before the onCreate,
1208 // not after the onResume. But for subsequent starts, onResume is fine.
1209 if (next.app != null) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001210 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001211 } else {
1212 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1213 }
Winson Chung376543b2014-05-21 17:43:28 -07001214
George Mount6ba042b2014-07-28 11:12:28 -07001215 next.returningOptions = null;
Craig Mautner64ccb702014-10-01 09:38:40 -07001216
1217 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == next) {
1218 // When resuming an activity, require it to call requestVisibleBehind() again.
1219 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(null);
1220 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001221 }
1222
Craig Mautner2568c3a2015-03-26 14:22:34 -07001223 private void setVisible(ActivityRecord r, boolean visible) {
Craig Mautnere3a00d72014-04-16 08:31:19 -07001224 r.visible = visible;
Jorim Jaggic2f262b2015-12-07 16:59:10 -08001225 if (!visible && r.mUpdateTaskThumbnailWhenHidden) {
1226 r.updateThumbnailLocked(r.task.stack.screenshotActivitiesLocked(r), null);
1227 r.mUpdateTaskThumbnailWhenHidden = false;
1228 }
Craig Mautnere3a00d72014-04-16 08:31:19 -07001229 mWindowManager.setAppVisibility(r.appToken, visible);
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001230 final ArrayList<ActivityContainer> containers = r.mChildContainers;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001231 for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001232 ActivityContainer container = containers.get(containerNdx);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001233 container.setVisible(visible);
1234 }
1235 }
1236
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001237 // Find the first visible activity above the passed activity and if it is translucent return it
1238 // otherwise return null;
1239 ActivityRecord findNextTranslucentActivity(ActivityRecord r) {
1240 TaskRecord task = r.task;
1241 if (task == null) {
1242 return null;
1243 }
1244
1245 ActivityStack stack = task.stack;
1246 if (stack == null) {
1247 return null;
1248 }
1249
1250 int stackNdx = mStacks.indexOf(stack);
1251
1252 ArrayList<TaskRecord> tasks = stack.mTaskHistory;
1253 int taskNdx = tasks.indexOf(task);
1254
1255 ArrayList<ActivityRecord> activities = task.mActivities;
1256 int activityNdx = activities.indexOf(r) + 1;
1257
1258 final int numStacks = mStacks.size();
1259 while (stackNdx < numStacks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001260 final ActivityStack historyStack = mStacks.get(stackNdx);
Todd Kennedyaab56db2015-01-30 09:39:53 -08001261 tasks = historyStack.mTaskHistory;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001262 final int numTasks = tasks.size();
1263 while (taskNdx < numTasks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001264 final TaskRecord currentTask = tasks.get(taskNdx);
1265 activities = currentTask.mActivities;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001266 final int numActivities = activities.size();
1267 while (activityNdx < numActivities) {
1268 final ActivityRecord activity = activities.get(activityNdx);
1269 if (!activity.finishing) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001270 return historyStack.mFullscreen
1271 && currentTask.mFullscreen && activity.fullscreen ? null : activity;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001272 }
1273 ++activityNdx;
1274 }
1275 activityNdx = 0;
1276 ++taskNdx;
1277 }
1278 taskNdx = 0;
1279 ++stackNdx;
1280 }
1281
1282 return null;
1283 }
1284
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001285 private ActivityStack getNextVisibleStackLocked() {
1286 ArrayList<ActivityStack> stacks = mStacks;
1287 final ActivityRecord parent = mActivityContainer.mParentActivity;
1288 if (parent != null) {
1289 stacks = parent.task.stack.mStacks;
1290 }
1291 if (stacks != null) {
1292 for (int i = stacks.size() - 1; i >= 0; --i) {
1293 ActivityStack stack = stacks.get(i);
1294 if (stack != this && stack.isStackVisibleLocked()) {
1295 return stack;
1296 }
1297 }
1298 }
1299 return null;
1300 }
1301
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001302 /** Returns true if the stack contains a fullscreen task. */
1303 private boolean hasFullscreenTask() {
1304 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
1305 final TaskRecord task = mTaskHistory.get(i);
1306 if (task.mFullscreen) {
1307 return true;
1308 }
1309 }
1310 return false;
1311 }
1312
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001313 private boolean hasTranslucentActivity(ActivityStack stack) {
1314 final ArrayList<TaskRecord> tasks = stack.getAllTasks();
1315 for (int taskNdx = tasks.size() - 1; taskNdx >= 0; --taskNdx) {
1316 final TaskRecord task = tasks.get(taskNdx);
1317 final ArrayList<ActivityRecord> activities = task.mActivities;
1318 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1319 final ActivityRecord r = activities.get(activityNdx);
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001320
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001321 // Conditions for an activity to obscure the stack we're
1322 // examining:
1323 // 1. Not Finishing AND Visible AND:
1324 // 2. Either:
1325 // - Full Screen Activity OR
1326 // - On top of Home and our stack is NOT home
1327 if (!r.finishing && r.visible && (r.fullscreen ||
1328 (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()))) {
1329 return false;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001330 }
1331 }
1332 }
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001333 return true;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001334 }
1335
1336 /** Returns true if the stack is considered visible. */
Todd Kennedyaab56db2015-01-30 09:39:53 -08001337 private boolean isStackVisibleLocked() {
Jose Lima7ba71252014-04-30 12:59:27 -07001338 if (!isAttached()) {
1339 return false;
1340 }
1341
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07001342 if (mStackSupervisor.isFrontStack(this) || mStackSupervisor.isFocusedStack(this)) {
Wale Ogunwale99db1862015-10-23 20:08:22 -07001343 return true;
1344 }
1345
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001346 final int stackIndex = mStacks.indexOf(this);
1347
1348 if (stackIndex == mStacks.size() - 1) {
1349 Slog.wtf(TAG,
1350 "Stack=" + this + " isn't front stack but is at the top of the stack list");
1351 return false;
1352 }
1353
Chong Zhang75b37202015-12-04 14:16:36 -08001354 final boolean isLockscreenShown = mService.mLockScreenShown == LOCK_SCREEN_SHOWN;
1355 if (isLockscreenShown && !StackId.isAllowedOverLockscreen(mStackId)) {
1356 return false;
1357 }
1358
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001359 final ActivityStack focusedStack = mStackSupervisor.getFocusedStack();
1360 final int focusedStackId = focusedStack.mStackId;
1361
Wale Ogunwalecff4aa32015-12-11 10:44:25 -08001362 if (mStackId == FULLSCREEN_WORKSPACE_STACK_ID
1363 && hasVisibleBehindActivity() && focusedStackId == HOME_STACK_ID) {
1364 // The fullscreen stack should be visible if it has a visible behind activity behind
1365 // the home stack that will be translucent.
1366 return true;
1367 }
1368
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001369 if (mStackId == DOCKED_STACK_ID) {
1370 // Docked stack is always visible, except in the case where the home activity
1371 // is the top running activity in the focused home stack.
1372 if (focusedStackId != HOME_STACK_ID) {
1373 return true;
1374 }
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001375 ActivityRecord topHomeActivity = focusedStack.topRunningActivityLocked();
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001376 return topHomeActivity == null || !topHomeActivity.isHomeActivity();
1377 }
1378
Chong Zhangb16cf342015-11-12 17:22:40 -08001379 // Find the first stack below focused stack that actually got something visible.
1380 int belowFocusedIndex = mStacks.indexOf(focusedStack) - 1;
1381 while (belowFocusedIndex >= 0 &&
1382 mStacks.get(belowFocusedIndex).topRunningActivityLocked() == null) {
1383 belowFocusedIndex--;
1384 }
Wale Ogunwale99db1862015-10-23 20:08:22 -07001385 if ((focusedStackId == DOCKED_STACK_ID || focusedStackId == PINNED_STACK_ID)
1386 && stackIndex == belowFocusedIndex) {
1387 // Stacks directly behind the docked or pinned stack are always visible.
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001388 return true;
1389 }
1390
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001391 if (focusedStackId == FULLSCREEN_WORKSPACE_STACK_ID
1392 && hasTranslucentActivity(focusedStack)) {
1393 // Stacks behind the fullscreen stack with a translucent activity are always
1394 // visible so they can act as a backdrop to the translucent activity.
1395 // For example, dialog activities
1396 if (stackIndex == belowFocusedIndex) {
1397 return true;
1398 }
1399 if (belowFocusedIndex >= 0) {
1400 final ActivityStack stack = mStacks.get(belowFocusedIndex);
Wale Ogunwale99db1862015-10-23 20:08:22 -07001401 if ((stack.mStackId == DOCKED_STACK_ID || stack.mStackId == PINNED_STACK_ID)
1402 && stackIndex == (belowFocusedIndex - 1)) {
1403 // The stack behind the docked or pinned stack is also visible so we can have a
1404 // complete backdrop to the translucent activity when the docked stack is up.
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001405 return true;
1406 }
1407 }
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001408 }
1409
Wale Ogunwale3797c222015-10-27 14:21:58 -07001410 if (StackId.isStaticStack(mStackId)) {
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001411 // Visibility of any static stack should have been determined by the conditions above.
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001412 return false;
1413 }
1414
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001415 for (int i = stackIndex + 1; i < mStacks.size(); i++) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001416 final ActivityStack stack = mStacks.get(i);
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001417
1418 if (!stack.mFullscreen && !stack.hasFullscreenTask()) {
1419 continue;
1420 }
1421
Wale Ogunwale3797c222015-10-27 14:21:58 -07001422 if (!StackId.isDynamicStacksVisibleBehindAllowed(stack.mStackId)) {
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001423 // These stacks can't have any dynamic stacks visible behind them.
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001424 return false;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001425 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001426
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001427 if (!hasTranslucentActivity(stack)) {
1428 return false;
Jose Lima7ba71252014-04-30 12:59:27 -07001429 }
1430 }
1431
1432 return true;
1433 }
1434
Chong Zhangfdcc4d42015-10-14 16:50:12 -07001435 final int rankTaskLayers(int baseLayer) {
1436 int layer = 0;
1437 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1438 final TaskRecord task = mTaskHistory.get(taskNdx);
1439 ActivityRecord r = task.topRunningActivityLocked();
1440 if (r == null || r.finishing || !r.visible) {
1441 task.mLayerRank = -1;
1442 } else {
1443 task.mLayerRank = baseLayer + layer++;
1444 }
1445 }
1446 return layer;
1447 }
1448
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001449 /**
1450 * Make sure that all activities that need to be visible (that is, they
1451 * currently can be seen by the user) actually are.
1452 */
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07001453 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges,
1454 boolean preserveWindows) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001455 ActivityRecord top = topRunningActivityLocked();
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001456 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "ensureActivitiesVisible behind " + top
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001457 + " configChanges=0x" + Integer.toHexString(configChanges));
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001458 if (top != null) {
1459 checkTranslucentActivityWaiting(top);
1460 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001461
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001462 // If the top activity is not fullscreen, then we need to
1463 // make sure any activities under it are now visible.
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001464 boolean aboveTop = top != null;
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001465 final boolean stackInvisible = !isStackVisibleLocked();
1466 boolean behindFullscreenActivity = stackInvisible;
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001467 boolean noStackActivityResumed = (isInStackLocked(starting) == null);
Jose Lima7ba71252014-04-30 12:59:27 -07001468
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001469 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001470 final TaskRecord task = mTaskHistory.get(taskNdx);
1471 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001472
Craig Mautnerd44711d2013-02-23 11:24:36 -08001473 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1474 final ActivityRecord r = activities.get(activityNdx);
1475 if (r.finishing) {
1476 continue;
1477 }
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001478 final boolean isTop = r == top;
1479 if (aboveTop && !isTop) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001480 continue;
1481 }
1482 aboveTop = false;
Craig Mautnerbb742462014-07-07 15:28:55 -07001483 // mLaunchingBehind: Activities launching behind are at the back of the task stack
1484 // but must be drawn initially for the animation as though they were visible.
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001485 if ((!behindFullscreenActivity || r.mLaunchTaskBehind)
1486 && okToShowLocked(r)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001487 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1488 "Make visible? " + r + " finishing=" + r.finishing
Craig Mautnerd44711d2013-02-23 11:24:36 -08001489 + " state=" + r.state);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001490 // First: if this is not the current activity being started, make
1491 // sure it matches the current configuration.
Craig Mautnerbb742462014-07-07 15:28:55 -07001492 if (r != starting) {
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07001493 ensureActivityConfigurationLocked(r, 0, preserveWindows);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001494 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001495
1496 if (r.app == null || r.app.thread == null) {
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001497 if (makeVisibleAndRestartIfNeeded(starting, configChanges, isTop,
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001498 noStackActivityResumed, r)) {
1499 if (activityNdx >= activities.size()) {
1500 // Record may be removed if its process needs to restart.
1501 activityNdx = activities.size() - 1;
1502 } else {
1503 noStackActivityResumed = false;
riddle_hsu36ee73d2015-06-05 16:38:38 +08001504 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001505 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001506 } else if (r.visible) {
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001507 // If this activity is already visible, then there is nothing to do here.
1508 if (handleAlreadyVisible(r)) {
Wale Ogunwale85b90ab2015-04-27 20:54:47 -07001509 noStackActivityResumed = false;
1510 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001511 } else {
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001512 makeVisible(starting, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001513 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001514 // Aggregate current change flags.
1515 configChanges |= r.configChangeFlags;
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001516 behindFullscreenActivity = updateBehindFullscreen(stackInvisible,
1517 behindFullscreenActivity, task, r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001518 } else {
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001519 makeInvisible(stackInvisible, behindFullscreenActivity, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001520 }
1521 }
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001522 if (mStackId == FREEFORM_WORKSPACE_STACK_ID) {
1523 // The visibility of tasks and the activities they contain in freeform stack are
1524 // determined individually unlike other stacks where the visibility or fullscreen
1525 // status of an activity in a previous task affects other.
1526 behindFullscreenActivity = stackInvisible;
1527 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001528 }
Craig Mautnereb8abf72014-07-02 15:04:09 -07001529
1530 if (mTranslucentActivityWaiting != null &&
1531 mUndrawnActivitiesBelowTopTranslucent.isEmpty()) {
1532 // Nothing is getting drawn or everything was already visible, don't wait for timeout.
1533 notifyActivityDrawnLocked(null);
1534 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001535 }
Craig Mautner58547802013-03-05 08:23:53 -08001536
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001537 private void checkTranslucentActivityWaiting(ActivityRecord top) {
1538 if (mTranslucentActivityWaiting != top) {
1539 mUndrawnActivitiesBelowTopTranslucent.clear();
1540 if (mTranslucentActivityWaiting != null) {
1541 // Call the callback with a timeout indication.
1542 notifyActivityDrawnLocked(null);
1543 mTranslucentActivityWaiting = null;
1544 }
1545 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1546 }
1547 }
1548
1549 private boolean makeVisibleAndRestartIfNeeded(ActivityRecord starting, int configChanges,
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001550 boolean isTop, boolean noStackActivityResumed, ActivityRecord r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001551 // We need to make sure the app is running if it's the top, or it is just made visible from
1552 // invisible. If the app is already visible, it must have died while it was visible. In this
1553 // case, we'll show the dead window but will not restart the app. Otherwise we could end up
1554 // thrashing.
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001555 if (isTop || !r.visible) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001556 // This activity needs to be visible, but isn't even running...
1557 // get it started and resume if no other stack in this stack is resumed.
1558 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Start and freeze screen for " + r);
1559 if (r != starting) {
1560 r.startFreezingScreenLocked(r.app, configChanges);
1561 }
1562 if (!r.visible || r.mLaunchTaskBehind) {
1563 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Starting and making visible: " + r);
1564 setVisible(r, true);
1565 }
1566 if (r != starting) {
1567 mStackSupervisor.startSpecificActivityLocked(r, noStackActivityResumed, false);
1568 return true;
1569 }
1570 }
1571 return false;
1572 }
1573
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001574 private void makeInvisible(boolean stackInvisible, boolean behindFullscreenActivity,
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001575 ActivityRecord r) {
1576 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Make invisible? " + r + " finishing="
1577 + r.finishing + " state=" + r.state + " stackInvisible=" + stackInvisible
1578 + " behindFullscreenActivity=" + behindFullscreenActivity);
1579 if (!r.visible) {
1580 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Already invisible: " + r);
1581 return;
1582 }
1583 // Now for any activities that aren't visible to the user, make sure they no longer are
1584 // keeping the screen frozen.
1585 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Making invisible: " + r);
1586 try {
1587 setVisible(r, false);
1588 switch (r.state) {
1589 case STOPPING:
1590 case STOPPED:
1591 if (r.app != null && r.app.thread != null) {
1592 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1593 "Scheduling invisibility: " + r);
1594 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1595 }
1596 break;
1597
1598 case INITIALIZING:
1599 case RESUMED:
1600 case PAUSING:
1601 case PAUSED:
1602 // This case created for transitioning activities from
1603 // translucent to opaque {@link Activity#convertToOpaque}.
1604 if (getVisibleBehindActivity() == r) {
1605 releaseBackgroundResources(r);
1606 } else {
1607 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1608 mStackSupervisor.mStoppingActivities.add(r);
1609 }
1610 mStackSupervisor.scheduleIdleLocked();
1611 }
1612 break;
1613
1614 default:
1615 break;
1616 }
1617 } catch (Exception e) {
1618 // Just skip on any failure; we'll make it visible when it next restarts.
1619 Slog.w(TAG, "Exception thrown making hidden: " + r.intent.getComponent(), e);
1620 }
1621 }
1622
1623 private boolean updateBehindFullscreen(boolean stackInvisible, boolean behindFullscreenActivity,
1624 TaskRecord task, ActivityRecord r) {
1625 if (r.fullscreen) {
1626 // At this point, nothing else needs to be shown in this task.
1627 behindFullscreenActivity = true;
1628 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Fullscreen: at " + r
1629 + " stackInvisible=" + stackInvisible
1630 + " behindFullscreenActivity=" + behindFullscreenActivity);
1631 } else if (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()) {
1632 behindFullscreenActivity = true;
1633 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Showing home: at " + r
1634 + " stackInvisible=" + stackInvisible
1635 + " behindFullscreenActivity=" + behindFullscreenActivity);
1636 }
1637 return behindFullscreenActivity;
1638 }
1639
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001640 private void makeVisible(ActivityRecord starting, ActivityRecord r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001641 // This activity is not currently visible, but is running. Tell it to become visible.
1642 r.visible = true;
1643 if (r.state != ActivityState.RESUMED && r != starting) {
1644 // If this activity is paused, tell it to now show its window.
1645 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1646 "Making visible and scheduling visibility: " + r);
1647 try {
1648 if (mTranslucentActivityWaiting != null) {
1649 r.updateOptionsLocked(r.returningOptions);
1650 mUndrawnActivitiesBelowTopTranslucent.add(r);
1651 }
1652 setVisible(r, true);
1653 r.sleeping = false;
1654 r.app.pendingUiClean = true;
1655 r.app.thread.scheduleWindowVisibility(r.appToken, true);
1656 r.stopFreezingScreenLocked(false);
1657 } catch (Exception e) {
1658 // Just skip on any failure; we'll make it
1659 // visible when it next restarts.
1660 Slog.w(TAG, "Exception thrown making visibile: " + r.intent.getComponent(), e);
1661 }
1662 }
1663 }
1664
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001665 private boolean handleAlreadyVisible(ActivityRecord r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001666 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Skipping: already visible at " + r);
1667 r.stopFreezingScreenLocked(false);
1668 try {
1669 if (r.returningOptions != null) {
1670 r.app.thread.scheduleOnNewActivityOptions(r.appToken, r.returningOptions);
1671 }
1672 } catch(RemoteException e) {
1673 }
1674 return r.state == ActivityState.RESUMED;
1675 }
1676
Todd Kennedyaab56db2015-01-30 09:39:53 -08001677 void convertActivityToTranslucent(ActivityRecord r) {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001678 mTranslucentActivityWaiting = r;
1679 mUndrawnActivitiesBelowTopTranslucent.clear();
1680 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
1681 }
1682
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07001683 void clearOtherAppTimeTrackers(AppTimeTracker except) {
1684 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1685 final TaskRecord task = mTaskHistory.get(taskNdx);
1686 final ArrayList<ActivityRecord> activities = task.mActivities;
1687 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1688 final ActivityRecord r = activities.get(activityNdx);
1689 if ( r.appTimeTracker != except) {
1690 r.appTimeTracker = null;
1691 }
1692 }
1693 }
1694 }
1695
Craig Mautner5eda9b32013-07-02 11:58:16 -07001696 /**
1697 * Called as activities below the top translucent activity are redrawn. When the last one is
1698 * redrawn notify the top activity by calling
1699 * {@link Activity#onTranslucentConversionComplete}.
1700 *
1701 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
1702 * occurred and the activity will be notified immediately.
1703 */
1704 void notifyActivityDrawnLocked(ActivityRecord r) {
Craig Mautner6985bad2014-04-21 15:22:06 -07001705 mActivityContainer.setDrawn();
Craig Mautner5eda9b32013-07-02 11:58:16 -07001706 if ((r == null)
1707 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
1708 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
1709 // The last undrawn activity below the top has just been drawn. If there is an
1710 // opaque activity at the top, notify it that it can become translucent safely now.
1711 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
1712 mTranslucentActivityWaiting = null;
1713 mUndrawnActivitiesBelowTopTranslucent.clear();
1714 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1715
Craig Mautner71dd1b62014-02-18 15:48:52 -08001716 if (waitingActivity != null) {
1717 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
1718 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
1719 try {
1720 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
1721 waitingActivity.appToken, r != null);
1722 } catch (RemoteException e) {
1723 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001724 }
1725 }
1726 }
1727 }
1728
Craig Mautnera61bc652013-10-28 15:43:18 -07001729 /** If any activities below the top running one are in the INITIALIZING state and they have a
1730 * starting window displayed then remove that starting window. It is possible that the activity
1731 * in this state will never resumed in which case that starting window will be orphaned. */
1732 void cancelInitializingActivities() {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001733 final ActivityRecord topActivity = topRunningActivityLocked();
Craig Mautnera61bc652013-10-28 15:43:18 -07001734 boolean aboveTop = true;
1735 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1736 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1737 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1738 final ActivityRecord r = activities.get(activityNdx);
1739 if (aboveTop) {
1740 if (r == topActivity) {
1741 aboveTop = false;
1742 }
1743 continue;
1744 }
1745
1746 if (r.state == ActivityState.INITIALIZING && r.mStartingWindowShown) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001747 if (DEBUG_VISIBILITY) Slog.w(TAG_VISIBILITY,
1748 "Found orphaned starting window " + r);
Craig Mautnera61bc652013-10-28 15:43:18 -07001749 r.mStartingWindowShown = false;
1750 mWindowManager.removeAppStartingWindow(r.appToken);
1751 }
1752 }
1753 }
1754 }
1755
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001756 /**
1757 * Ensure that the top activity in the stack is resumed.
1758 *
1759 * @param prev The previously resumed activity, for when in the process
1760 * of pausing; can be null to call from elsewhere.
1761 *
1762 * @return Returns true if something is being resumed, or false if
1763 * nothing happened.
1764 */
1765 final boolean resumeTopActivityLocked(ActivityRecord prev) {
Dianne Hackborn84375872012-06-01 19:03:50 -07001766 return resumeTopActivityLocked(prev, null);
1767 }
1768
Chong Zhang280d3322015-11-03 17:27:26 -08001769 final boolean resumeTopActivityLocked(ActivityRecord prev, ActivityOptions options) {
Craig Mautner42d04db2014-11-06 12:13:23 -08001770 if (mStackSupervisor.inResumeTopActivity) {
Craig Mautner544efa72014-09-04 16:41:20 -07001771 // Don't even start recursing.
1772 return false;
1773 }
1774
1775 boolean result = false;
1776 try {
1777 // Protect against recursion.
Craig Mautner42d04db2014-11-06 12:13:23 -08001778 mStackSupervisor.inResumeTopActivity = true;
1779 if (mService.mLockScreenShown == ActivityManagerService.LOCK_SCREEN_LEAVING) {
1780 mService.mLockScreenShown = ActivityManagerService.LOCK_SCREEN_HIDDEN;
Jeff Brown9ef94012014-11-21 13:04:42 -08001781 mService.updateSleepIfNeededLocked();
Craig Mautner42d04db2014-11-06 12:13:23 -08001782 }
Craig Mautner544efa72014-09-04 16:41:20 -07001783 result = resumeTopActivityInnerLocked(prev, options);
1784 } finally {
Craig Mautner42d04db2014-11-06 12:13:23 -08001785 mStackSupervisor.inResumeTopActivity = false;
Craig Mautner544efa72014-09-04 16:41:20 -07001786 }
1787 return result;
1788 }
1789
Chong Zhang280d3322015-11-03 17:27:26 -08001790 private boolean resumeTopActivityInnerLocked(ActivityRecord prev, ActivityOptions options) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001791 if (DEBUG_LOCKSCREEN) mService.logLockScreen("");
Craig Mautner5314a402013-09-26 12:40:16 -07001792
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07001793 if (!mService.mBooting && !mService.mBooted) {
1794 // Not ready yet!
1795 return false;
1796 }
1797
Craig Mautnerdf88d732014-01-27 09:21:32 -08001798 ActivityRecord parent = mActivityContainer.mParentActivity;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001799 if ((parent != null && parent.state != ActivityState.RESUMED) ||
Craig Mautnerd163e752014-06-13 17:18:47 -07001800 !mActivityContainer.isAttachedLocked()) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001801 // Do not resume this stack if its parent is not resumed.
1802 // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
1803 return false;
1804 }
1805
Craig Mautnera61bc652013-10-28 15:43:18 -07001806 cancelInitializingActivities();
1807
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001808 // Find the first activity that is not finishing.
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001809 final ActivityRecord next = topRunningActivityLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001810
1811 // Remember how we'll process this pause/resume situation, and ensure
1812 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001813 final boolean userLeaving = mStackSupervisor.mUserLeaving;
1814 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001815
Craig Mautner84984fa2014-06-19 11:19:20 -07001816 final TaskRecord prevTask = prev != null ? prev.task : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001817 if (next == null) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001818 // There are no more activities!
1819 final String reason = "noMoreActivities";
1820 if (!mFullscreen) {
1821 // Try to move focus to the next visible stack with a running activity if this
1822 // stack is not covering the entire screen.
1823 final ActivityStack stack = getNextVisibleStackLocked();
1824 if (adjustFocusToNextVisibleStackLocked(stack, reason)) {
1825 return mStackSupervisor.resumeTopActivitiesLocked(stack, prev, null);
1826 }
1827 }
1828 // Let's just start up the Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07001829 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001830 if (DEBUG_STATES) Slog.d(TAG_STATES,
1831 "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07001832 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnere0a38842013-12-16 16:14:02 -08001833 // Only resume home if on home display
Craig Mautner84984fa2014-06-19 11:19:20 -07001834 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1835 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1836 return isOnHomeDisplay() &&
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001837 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001838 }
1839
1840 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08001841
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001842 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001843 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
1844 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001845 // Make sure we have executed any pending transitions, since there
1846 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001847 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001848 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001849 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001850 if (DEBUG_STATES) Slog.d(TAG_STATES,
1851 "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07001852 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001853 return false;
1854 }
1855
Craig Mautner525f3d92013-05-07 14:01:50 -07001856 final TaskRecord nextTask = next.task;
bulicccd230712014-05-12 14:34:50 -07001857 if (prevTask != null && prevTask.stack == this &&
Craig Mautner84984fa2014-06-19 11:19:20 -07001858 prevTask.isOverHomeStack() && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07001859 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07001860 if (prevTask == nextTask) {
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08001861 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07001862 } else if (prevTask != topTask()) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001863 // This task is going away but it was supposed to return to the home stack.
Craig Mautnere418ecd2013-05-01 17:02:29 -07001864 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07001865 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07001866 mTaskHistory.get(taskNdx).setTaskToReturnTo(HOME_ACTIVITY_TYPE);
louis_chang2d094e92015-01-21 19:01:52 +08001867 } else if (!isOnHomeDisplay()) {
1868 return false;
1869 } else if (!isHomeStack()){
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001870 if (DEBUG_STATES) Slog.d(TAG_STATES,
Craig Mautnere0a38842013-12-16 16:14:02 -08001871 "resumeTopActivityLocked: Launching home next");
Craig Mautner84984fa2014-06-19 11:19:20 -07001872 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1873 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1874 return isOnHomeDisplay() &&
Craig Mautner3c878f22015-01-26 13:57:19 -08001875 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, "prevFinished");
Craig Mautnere418ecd2013-05-01 17:02:29 -07001876 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001877 }
1878
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001879 // If we are sleeping, and there is no resumed activity, and the top
1880 // activity is paused, well that is the state we want.
Craig Mautner5314a402013-09-26 12:40:16 -07001881 if (mService.isSleepingOrShuttingDown()
p13451dbad2872012-04-18 11:39:23 +09001882 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07001883 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001884 // Make sure we have executed any pending transitions, since there
1885 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001886 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001887 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001888 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001889 if (DEBUG_STATES) Slog.d(TAG_STATES,
1890 "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07001891 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001892 return false;
1893 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001894
1895 // Make sure that the user who owns this activity is started. If not,
1896 // we will just leave it as is because someone should be bringing
1897 // another user's activities to the top of the stack.
Fyodor Kupolov610acda2015-10-19 18:44:07 -07001898 if (!mService.mUserController.hasStartedUserState(next.userId)) {
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001899 Slog.w(TAG, "Skipping resume of top activity " + next
1900 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07001901 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001902 return false;
1903 }
1904
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001905 // The activity may be waiting for stop, but that is no longer
1906 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001907 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07001908 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001909 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001910 mStackSupervisor.mWaitingVisibleActivities.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001911
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001912 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resuming " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001913
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001914 // If we are currently pausing an activity, then don't do anything
1915 // until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07001916 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001917 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG_PAUSE,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001918 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07001919 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001920 return false;
1921 }
1922
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001923 // Okay we are now going to start a switch, to 'next'. We may first
1924 // have to pause the current activity, but this is an important point
1925 // where we have decided to go to 'next' so keep track of that.
Dianne Hackborn034093a42010-09-20 22:24:38 -07001926 // XXX "App Redirected" dialog is getting too many false positives
1927 // at this point, so turn off for now.
1928 if (false) {
1929 if (mLastStartedActivity != null && !mLastStartedActivity.finishing) {
1930 long now = SystemClock.uptimeMillis();
1931 final boolean inTime = mLastStartedActivity.startTime != 0
1932 && (mLastStartedActivity.startTime + START_WARN_TIME) >= now;
1933 final int lastUid = mLastStartedActivity.info.applicationInfo.uid;
1934 final int nextUid = next.info.applicationInfo.uid;
1935 if (inTime && lastUid != nextUid
1936 && lastUid != next.launchedFromUid
1937 && mService.checkPermission(
1938 android.Manifest.permission.STOP_APP_SWITCHES,
1939 -1, next.launchedFromUid)
1940 != PackageManager.PERMISSION_GRANTED) {
1941 mService.showLaunchWarningLocked(mLastStartedActivity, next);
1942 } else {
1943 next.startTime = now;
1944 mLastStartedActivity = next;
1945 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001946 } else {
Dianne Hackborn034093a42010-09-20 22:24:38 -07001947 next.startTime = SystemClock.uptimeMillis();
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001948 mLastStartedActivity = next;
1949 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001950 }
Craig Mautner58547802013-03-05 08:23:53 -08001951
Dianne Hackborn3d07c942015-03-13 18:02:54 -07001952 mStackSupervisor.setLaunchSource(next.info.applicationInfo.uid);
1953
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001954 // We need to start pausing the current activity so the top one
1955 // can be resumed...
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001956 boolean dontWaitForPause = (next.info.flags&ActivityInfo.FLAG_RESUME_WHILE_PAUSING) != 0;
1957 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001958 if (mResumedActivity != null) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001959 if (DEBUG_STATES) Slog.d(TAG_STATES,
1960 "resumeTopActivityLocked: Pausing " + mResumedActivity);
Craig Mautnere042bf22014-11-11 11:28:43 -08001961 pausing |= startPausingLocked(userLeaving, false, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001962 }
1963 if (pausing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001964 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG_STATES,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001965 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001966 // At this point we want to put the upcoming activity's process
1967 // at the top of the LRU list, since we know we will be needing it
1968 // very soon and it would be a waste to let it get killed if it
1969 // happens to be sitting towards the end.
1970 if (next.app != null && next.app.thread != null) {
Dianne Hackborndb926082013-10-31 16:32:44 -07001971 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001972 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001973 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001974 return true;
1975 }
1976
Christopher Tated3f175c2012-06-14 14:16:54 -07001977 // If the most recent activity was noHistory but was only stopped rather
1978 // than stopped+finished because the device went to sleep, we need to make
1979 // sure to finish it as we're making a new activity topmost.
Dianne Hackborn91097de2014-04-04 18:02:06 -07001980 if (mService.isSleeping() && mLastNoHistoryActivity != null &&
Craig Mautner0f922742013-08-06 08:44:42 -07001981 !mLastNoHistoryActivity.finishing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001982 if (DEBUG_STATES) Slog.d(TAG_STATES,
1983 "no-history finish of " + mLastNoHistoryActivity + " on new resume");
Craig Mautner0f922742013-08-06 08:44:42 -07001984 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
Todd Kennedy539db512014-12-15 09:57:55 -08001985 null, "resume-no-history", false);
Craig Mautner0f922742013-08-06 08:44:42 -07001986 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07001987 }
1988
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001989 if (prev != null && prev != next) {
Craig Mautner8c14c152015-01-15 17:32:07 -08001990 if (!mStackSupervisor.mWaitingVisibleActivities.contains(prev)
1991 && next != null && !next.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001992 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001993 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
1994 "Resuming top, waiting visible to hide: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001995 } else {
1996 // The next activity is already visible, so hide the previous
1997 // activity's windows right now so we can show the new one ASAP.
1998 // We only do this if the previous is finishing, which should mean
1999 // it is on top of the one being resumed so hiding it quickly
2000 // is good. Otherwise, we want to do the normal route of allowing
2001 // the resumed activity to be shown so we can decide if the
2002 // previous should actually be hidden depending on whether the
2003 // new one is found to be full-screen or not.
2004 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002005 mWindowManager.setAppVisibility(prev.appToken, false);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002006 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2007 "Not waiting for visible to hide: " + prev + ", waitingVisible="
Craig Mautner8c14c152015-01-15 17:32:07 -08002008 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002009 + ", nowVisible=" + next.nowVisible);
2010 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002011 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
Craig Mautner8c14c152015-01-15 17:32:07 -08002012 "Previous already visible but still waiting to hide: " + prev
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002013 + ", waitingVisible="
2014 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
2015 + ", nowVisible=" + next.nowVisible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002016 }
2017 }
2018 }
2019
Dianne Hackborne7f97212011-02-24 14:40:20 -08002020 // Launching this app's activity, make sure the app is no longer
2021 // considered stopped.
2022 try {
2023 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07002024 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08002025 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08002026 } catch (IllegalArgumentException e) {
2027 Slog.w(TAG, "Failed trying to unstop package "
2028 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08002029 }
2030
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002031 // We are starting up the next activity, so tell the window manager
2032 // that the previous one will be hidden soon. This way it can know
2033 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07002034 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002035 if (prev != null) {
2036 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002037 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002038 "Prepare close transition: prev=" + prev);
2039 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002040 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002041 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002042 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002043 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08002044 ? AppTransition.TRANSIT_ACTIVITY_CLOSE
2045 : AppTransition.TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002046 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002047 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002048 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002049 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
2050 "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002051 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002052 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002053 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002054 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002055 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08002056 ? AppTransition.TRANSIT_ACTIVITY_OPEN
Craig Mautnerbb742462014-07-07 15:28:55 -07002057 : next.mLaunchTaskBehind
2058 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
2059 : AppTransition.TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002060 }
2061 }
Craig Mautner967212c2013-04-13 21:10:58 -07002062 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002063 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002064 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002065 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002066 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002067 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002068 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002069 }
2070 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08002071
2072 Bundle resumeAnimOptions = null;
Craig Mautner525f3d92013-05-07 14:01:50 -07002073 if (anim) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08002074 ActivityOptions opts = next.getOptionsForTargetActivityLocked();
2075 if (opts != null) {
2076 resumeAnimOptions = opts.toBundle();
2077 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07002078 next.applyOptionsLocked();
2079 } else {
2080 next.clearOptionsLocked();
2081 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002082
Craig Mautnercf910b02013-04-23 11:23:27 -07002083 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002084 if (next.app != null && next.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002085 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resume running: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002086
2087 // This activity is now becoming visible.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002088 mWindowManager.setAppVisibility(next.appToken, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002089
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07002090 // schedule launch ticks to collect information about slow apps.
2091 next.startLaunchTickingLocked();
2092
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002093 ActivityRecord lastResumedActivity =
2094 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002095 ActivityState lastState = next.state;
2096
2097 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08002098
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002099 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + next + " (in existing)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002100 next.state = ActivityState.RESUMED;
2101 mResumedActivity = next;
2102 next.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08002103 mRecentTasks.addLocked(next.task);
Dianne Hackborndb926082013-10-31 16:32:44 -07002104 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002105 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07002106 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002107
2108 // Have the window manager re-evaluate the orientation of
2109 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07002110 boolean notUpdated = true;
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07002111 if (mStackSupervisor.isFocusedStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002112 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07002113 mService.mConfiguration,
2114 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
2115 if (config != null) {
2116 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002117 }
Maxim Bogatov05075302015-05-19 18:33:08 -07002118 notUpdated = !mService.updateConfigurationLocked(config, next, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002119 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07002120
Craig Mautner525f3d92013-05-07 14:01:50 -07002121 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002122 // The configuration update wasn't able to keep the existing
2123 // instance of the activity, and instead started a new one.
2124 // We should be all done, but let's just make sure our activity
2125 // is still at the top and schedule another run if something
2126 // weird happened.
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002127 ActivityRecord nextNext = topRunningActivityLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002128 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_STATES,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002129 "Activity config changed during resume: " + next
2130 + ", new next: " + nextNext);
2131 if (nextNext != next) {
2132 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07002133 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002134 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002135 if (mStackSupervisor.reportResumedActivityLocked(next)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002136 mNoAnimActivities.clear();
Craig Mautnercf910b02013-04-23 11:23:27 -07002137 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002138 return true;
2139 }
Craig Mautnercf910b02013-04-23 11:23:27 -07002140 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002141 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002142 }
Craig Mautner58547802013-03-05 08:23:53 -08002143
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002144 try {
2145 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002146 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002147 if (a != null) {
2148 final int N = a.size();
2149 if (!next.finishing && N > 0) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002150 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS,
2151 "Delivering results to " + next + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002152 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002153 }
2154 }
2155
2156 if (next.newIntents != null) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002157 next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002158 }
2159
Craig Mautner299f9602015-01-26 09:47:33 -08002160 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY, next.userId,
2161 System.identityHashCode(next), next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08002162
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002163 next.sleeping = false;
Craig Mautner2420ead2013-04-01 17:13:20 -07002164 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07002165 next.app.pendingUiClean = true;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07002166 next.app.forceProcessStateUpTo(mService.mTopProcessState);
George Mount2c92c972014-03-20 09:38:23 -07002167 next.clearOptionsLocked();
Dianne Hackborna413dc02013-07-12 12:02:55 -07002168 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Adam Powellcfbe9be2013-11-06 14:58:58 -08002169 mService.isNextTransitionForward(), resumeAnimOptions);
Craig Mautner58547802013-03-05 08:23:53 -08002170
Craig Mautner0eea92c2013-05-16 13:35:39 -07002171 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002172
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002173 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002174 } catch (Exception e) {
2175 // Whoops, need to restart this activity!
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002176 if (DEBUG_STATES) Slog.v(TAG_STATES, "Resume failed; resetting state to "
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002177 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002178 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002179 if (lastStack != null) {
2180 lastStack.mResumedActivity = lastResumedActivity;
2181 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002182 Slog.i(TAG, "Restarting because process died: " + next);
2183 if (!next.hasBeenLaunched) {
2184 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002185 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
2186 mStackSupervisor.isFrontStack(lastStack)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002187 mWindowManager.setAppStartingWindow(
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002188 next.appToken, next.packageName, next.theme,
2189 mService.compatibilityInfoForPackageLocked(next.info.applicationInfo),
Adam Powell04fe6eb2013-05-31 14:39:48 -07002190 next.nonLocalizedLabel, next.labelRes, next.icon, next.logo,
2191 next.windowFlags, null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002192 }
George Mount2c92c972014-03-20 09:38:23 -07002193 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07002194 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002195 return true;
2196 }
2197
2198 // From this point on, if something goes wrong there is no way
2199 // to recover the activity.
2200 try {
2201 next.visible = true;
2202 completeResumeLocked(next);
2203 } catch (Exception e) {
2204 // If any exception gets thrown, toss away this
2205 // activity and try the next one.
2206 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002207 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002208 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07002209 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002210 return true;
2211 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002212 next.stopped = false;
2213
2214 } else {
2215 // Whoops, need to restart this activity!
2216 if (!next.hasBeenLaunched) {
2217 next.hasBeenLaunched = true;
2218 } else {
2219 if (SHOW_APP_STARTING_PREVIEW) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002220 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002221 next.appToken, next.packageName, next.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002222 mService.compatibilityInfoForPackageLocked(
2223 next.info.applicationInfo),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002224 next.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002225 next.labelRes, next.icon, next.logo, next.windowFlags,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002226 null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002227 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002228 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Restarting: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002229 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002230 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Restarting " + next);
George Mount2c92c972014-03-20 09:38:23 -07002231 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002232 }
2233
Craig Mautnercf910b02013-04-23 11:23:27 -07002234 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002235 return true;
2236 }
2237
riddle_hsuc215a4f2014-12-27 12:10:45 +08002238 private TaskRecord getNextTask(TaskRecord targetTask) {
2239 final int index = mTaskHistory.indexOf(targetTask);
2240 if (index >= 0) {
2241 final int numTasks = mTaskHistory.size();
2242 for (int i = index + 1; i < numTasks; ++i) {
2243 TaskRecord task = mTaskHistory.get(i);
2244 if (task.userId == targetTask.userId) {
2245 return task;
2246 }
2247 }
2248 }
2249 return null;
2250 }
2251
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002252 private void insertTaskAtPosition(TaskRecord task, int position) {
2253 if (position >= mTaskHistory.size()) {
2254 insertTaskAtTop(task, null);
2255 return;
2256 }
2257 // Calculate maximum possible position for this task.
2258 int maxPosition = mTaskHistory.size();
2259 if (!mStackSupervisor.isCurrentProfileLocked(task.userId)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002260 && task.topRunningActivityLocked() == null) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002261 // Put non-current user tasks below current user tasks.
2262 while (maxPosition > 0) {
2263 final TaskRecord tmpTask = mTaskHistory.get(maxPosition - 1);
2264 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002265 || tmpTask.topRunningActivityLocked() == null) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002266 break;
2267 }
2268 maxPosition--;
2269 }
2270 }
2271 position = Math.min(position, maxPosition);
2272 mTaskHistory.remove(task);
2273 mTaskHistory.add(position, task);
2274 updateTaskMovement(task, true);
2275 }
2276
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002277 private void insertTaskAtTop(TaskRecord task, ActivityRecord newActivity) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08002278 // If the moving task is over home stack, transfer its return type to next task
2279 if (task.isOverHomeStack()) {
2280 final TaskRecord nextTask = getNextTask(task);
2281 if (nextTask != null) {
2282 nextTask.setTaskToReturnTo(task.getTaskToReturnTo());
2283 }
2284 }
2285
Craig Mautner9c85c202013-10-04 20:11:26 -07002286 // If this is being moved to the top by another activity or being launched from the home
riddle_hsuc215a4f2014-12-27 12:10:45 +08002287 // activity, set mTaskToReturnTo accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08002288 if (isOnHomeDisplay()) {
2289 ActivityStack lastStack = mStackSupervisor.getLastStack();
2290 final boolean fromHome = lastStack.isHomeStack();
2291 if (!isHomeStack() && (fromHome || topTask() != task)) {
Craig Mautner3b1dac82014-07-15 09:51:33 -07002292 task.setTaskToReturnTo(fromHome
2293 ? lastStack.topTask() == null
2294 ? HOME_ACTIVITY_TYPE
2295 : lastStack.topTask().taskType
2296 : APPLICATION_ACTIVITY_TYPE);
Craig Mautnere0a38842013-12-16 16:14:02 -08002297 }
2298 } else {
Craig Mautner84984fa2014-06-19 11:19:20 -07002299 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner9c85c202013-10-04 20:11:26 -07002300 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07002301
Craig Mautnerac6f8432013-07-17 13:24:59 -07002302 mTaskHistory.remove(task);
2303 // Now put task at top.
Craig Mautnerbb742462014-07-07 15:28:55 -07002304 int taskNdx = mTaskHistory.size();
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002305 final boolean notShownWhenLocked =
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -07002306 (newActivity != null && (newActivity.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002307 || (newActivity == null && task.topRunningActivityLocked() == null);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002308 if (!mStackSupervisor.isCurrentProfileLocked(task.userId) && notShownWhenLocked) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002309 // Put non-current user tasks below current user tasks.
Craig Mautnerbb742462014-07-07 15:28:55 -07002310 while (--taskNdx >= 0) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002311 final TaskRecord tmpTask = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002312 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002313 || tmpTask.topRunningActivityLocked() == null) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002314 break;
2315 }
2316 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002317 ++taskNdx;
Craig Mautnerac6f8432013-07-17 13:24:59 -07002318 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002319 mTaskHistory.add(taskNdx, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07002320 updateTaskMovement(task, true);
Craig Mautnerac6f8432013-07-17 13:24:59 -07002321 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08002322
Filip Gruszczynski3d82ed62015-12-10 10:41:39 -08002323 final void startActivityLocked(ActivityRecord r, boolean newTask, boolean keepCurTransition,
2324 ActivityOptions options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002325 TaskRecord rTask = r.task;
2326 final int taskId = rTask.taskId;
Craig Mautnerbb742462014-07-07 15:28:55 -07002327 // mLaunchTaskBehind tasks get placed at the back of the task stack.
2328 if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
Craig Mautner77878772013-03-04 19:46:24 -08002329 // Last activity in task had been removed or ActivityManagerService is reusing task.
2330 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08002331 // Might not even be in.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002332 insertTaskAtTop(rTask, r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002333 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08002334 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002335 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002336 if (!newTask) {
2337 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08002338 boolean startIt = true;
2339 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2340 task = mTaskHistory.get(taskNdx);
riddle_hsu9bcc6e82014-07-31 00:26:51 +08002341 if (task.getTopActivity() == null) {
2342 // All activities in task are finishing.
2343 continue;
2344 }
Craig Mautner70a86932013-02-28 22:37:44 -08002345 if (task == r.task) {
2346 // Here it is! Now, if this is not yet visible to the
2347 // user, then just add it without starting; it will
2348 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08002349 if (!startIt) {
2350 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
2351 + task, new RuntimeException("here").fillInStackTrace());
2352 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002353 r.putInHistory();
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002354 addConfigOverride(r, task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002355 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002356 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002357 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002358 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002359 return;
2360 }
2361 break;
Craig Mautner70a86932013-02-28 22:37:44 -08002362 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002363 startIt = false;
2364 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002365 }
2366 }
2367
2368 // Place a new activity at top of stack, so it is next to interact
2369 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08002370
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002371 // If we are not placing the new activity frontmost, we do not want
2372 // to deliver the onUserLeaving callback to the actual frontmost
2373 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08002374 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002375 mStackSupervisor.mUserLeaving = false;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002376 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
Craig Mautner70a86932013-02-28 22:37:44 -08002377 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002378 }
Craig Mautner70a86932013-02-28 22:37:44 -08002379
2380 task = r.task;
2381
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002382 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08002383 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08002384 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08002385 task.addActivityToTop(r);
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002386 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08002387
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002388 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002389 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002390 // We want to show the starting preview window if we are
2391 // switching to a new task, or the next activity's process is
2392 // not currently running.
2393 boolean showStartingIcon = newTask;
2394 ProcessRecord proc = r.app;
2395 if (proc == null) {
2396 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
2397 }
2398 if (proc == null || proc.thread == null) {
2399 showStartingIcon = true;
2400 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002401 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002402 "Prepare open transition: starting " + r);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002403 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002404 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002405 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002406 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002407 mWindowManager.prepareAppTransition(newTask
Craig Mautnerbb742462014-07-07 15:28:55 -07002408 ? r.mLaunchTaskBehind
2409 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
2410 : AppTransition.TRANSIT_TASK_OPEN
Craig Mautner4b71aa12012-12-27 17:20:01 -08002411 : AppTransition.TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002412 mNoAnimActivities.remove(r);
2413 }
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002414 addConfigOverride(r, task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002415 boolean doShow = true;
2416 if (newTask) {
2417 // Even though this activity is starting fresh, we still need
2418 // to reset it to make sure we apply affinities to move any
2419 // existing activities from other tasks in to it.
2420 // If the caller has requested that the target task be
2421 // reset, then do so.
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002422 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002423 resetTaskIfNeededLocked(r, r);
2424 doShow = topRunningNonDelayedActivityLocked(null) == r;
2425 }
Chong Zhang280d3322015-11-03 17:27:26 -08002426 } else if (options != null && options.getAnimationType()
George Mount70778d72014-07-01 16:33:45 -07002427 == ActivityOptions.ANIM_SCENE_TRANSITION) {
2428 doShow = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002429 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002430 if (r.mLaunchTaskBehind) {
2431 // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2432 // tell WindowManager that r is visible even though it is at the back of the stack.
2433 mWindowManager.setAppVisibility(r.appToken, true);
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07002434 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Craig Mautnerbb742462014-07-07 15:28:55 -07002435 } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002436 // Figure out if we are transitioning from another activity that is
2437 // "has the same starting icon" as the next one. This allows the
2438 // window manager to keep the previous window it had previously
2439 // created, if it still had one.
2440 ActivityRecord prev = mResumedActivity;
2441 if (prev != null) {
2442 // We don't want to reuse the previous starting preview if:
2443 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07002444 if (prev.task != r.task) {
2445 prev = null;
2446 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002447 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07002448 else if (prev.nowVisible) {
2449 prev = null;
2450 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002451 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002452 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002453 r.appToken, r.packageName, r.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002454 mService.compatibilityInfoForPackageLocked(
2455 r.info.applicationInfo), r.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002456 r.labelRes, r.icon, r.logo, r.windowFlags,
Dianne Hackbornbe707852011-11-11 14:32:10 -08002457 prev != null ? prev.appToken : null, showStartingIcon);
Craig Mautnera61bc652013-10-28 15:43:18 -07002458 r.mStartingWindowShown = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002459 }
2460 } else {
2461 // If this is the first activity, don't do any fancy animations,
2462 // because there is nothing for it to animate on top of.
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002463 addConfigOverride(r, task);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002464 ActivityOptions.abort(options);
Craig Mautner233ceee2014-05-09 17:05:11 -07002465 options = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002466 }
2467 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002468 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002469 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002470 }
2471
Dianne Hackbornbe707852011-11-11 14:32:10 -08002472 final void validateAppTokensLocked() {
2473 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08002474 mValidateAppTokens.ensureCapacity(numActivities());
2475 final int numTasks = mTaskHistory.size();
2476 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
2477 TaskRecord task = mTaskHistory.get(taskNdx);
2478 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07002479 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08002480 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002481 }
Craig Mautner000f0022013-02-26 15:04:29 -08002482 TaskGroup group = new TaskGroup();
2483 group.taskId = task.taskId;
2484 mValidateAppTokens.add(group);
2485 final int numActivities = activities.size();
2486 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
2487 final ActivityRecord r = activities.get(activityNdx);
2488 group.tokens.add(r.appToken);
2489 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002490 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002491 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002492 }
2493
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002494 /**
2495 * Perform a reset of the given task, if needed as part of launching it.
2496 * Returns the new HistoryRecord at the top of the task.
2497 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08002498 /**
2499 * Helper method for #resetTaskIfNeededLocked.
2500 * We are inside of the task being reset... we'll either finish this activity, push it out
2501 * for another task, or leave it as-is.
2502 * @param task The task containing the Activity (taskTop) that might be reset.
2503 * @param forceReset
2504 * @return An ActivityOptions that needs to be processed.
2505 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002506 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002507 ActivityOptions topOptions = null;
2508
2509 int replyChainEnd = -1;
2510 boolean canMoveOptions = true;
2511
2512 // We only do this for activities that are not the root of the task (since if we finish
2513 // the root, we may no longer have the task!).
2514 final ArrayList<ActivityRecord> activities = task.mActivities;
2515 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002516 final int rootActivityNdx = task.findEffectiveRootIndex();
2517 for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002518 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002519 if (target.frontOfTask)
2520 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002521
2522 final int flags = target.info.flags;
2523 final boolean finishOnTaskLaunch =
2524 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2525 final boolean allowTaskReparenting =
2526 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2527 final boolean clearWhenTaskReset =
2528 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
2529
2530 if (!finishOnTaskLaunch
2531 && !clearWhenTaskReset
2532 && target.resultTo != null) {
2533 // If this activity is sending a reply to a previous
2534 // activity, we can't do anything with it now until
2535 // we reach the start of the reply chain.
2536 // XXX note that we are assuming the result is always
2537 // to the previous activity, which is almost always
2538 // the case but we really shouldn't count on.
2539 if (replyChainEnd < 0) {
2540 replyChainEnd = i;
2541 }
2542 } else if (!finishOnTaskLaunch
2543 && !clearWhenTaskReset
2544 && allowTaskReparenting
2545 && target.taskAffinity != null
2546 && !target.taskAffinity.equals(task.affinity)) {
2547 // If this activity has an affinity for another
2548 // task, then we need to move it out of here. We will
2549 // move it as far out of the way as possible, to the
2550 // bottom of the activity stack. This also keeps it
2551 // correctly ordered with any activities we previously
2552 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08002553 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002554 final ActivityRecord bottom =
2555 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08002556 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002557 if (bottom != null && target.taskAffinity != null
2558 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002559 // If the activity currently at the bottom has the
2560 // same task affinity as the one we are moving,
2561 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08002562 targetTask = bottom.task;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002563 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07002564 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002565 } else {
Craig Mautner329f4122013-11-07 09:10:42 -08002566 targetTask = createTaskRecord(mStackSupervisor.getNextTaskId(), target.info,
Dianne Hackborn91097de2014-04-04 18:02:06 -07002567 null, null, null, false);
Craig Mautner329f4122013-11-07 09:10:42 -08002568 targetTask.affinityIntent = target.intent;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002569 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnere3a74d52013-02-22 14:14:58 -08002570 + " out to new task " + target.task);
2571 }
2572
Wale Ogunwale706ed792015-08-02 10:29:44 -07002573 setAppTask(target, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002574
Craig Mautner525f3d92013-05-07 14:01:50 -07002575 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002576 final int start = replyChainEnd < 0 ? i : replyChainEnd;
2577 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07002578 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002579 if (p.finishing) {
2580 continue;
2581 }
2582
Craig Mautnere3a74d52013-02-22 14:14:58 -08002583 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002584 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002585 topOptions = p.takeOptionsLocked();
2586 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002587 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002588 }
2589 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002590 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2591 "Removing activity " + p + " from task=" + task + " adding to task="
2592 + targetTask + " Callers=" + Debug.getCallers(4));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002593 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2594 "Pushing next activity " + p + " out to target's task " + target.task);
Craig Mautnera228ae92014-07-09 05:44:55 -07002595 p.setTask(targetTask, null);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002596 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08002597
Wale Ogunwale706ed792015-08-02 10:29:44 -07002598 setAppTask(p, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002599 }
2600
Wale Ogunwale706ed792015-08-02 10:29:44 -07002601 mWindowManager.moveTaskToBottom(targetTask.taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002602 if (VALIDATE_TOKENS) {
2603 validateAppTokensLocked();
2604 }
2605
2606 replyChainEnd = -1;
2607 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2608 // If the activity should just be removed -- either
2609 // because it asks for it, or the task should be
2610 // cleared -- then finish it and anything that is
2611 // part of its reply chain.
2612 int end;
2613 if (clearWhenTaskReset) {
2614 // In this case, we want to finish this activity
2615 // and everything above it, so be sneaky and pretend
2616 // like these are all in the reply chain.
Mark Lu4b5a9a02014-12-09 14:47:13 +08002617 end = activities.size() - 1;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002618 } else if (replyChainEnd < 0) {
2619 end = i;
2620 } else {
2621 end = replyChainEnd;
2622 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002623 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002624 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002625 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002626 if (p.finishing) {
2627 continue;
2628 }
2629 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002630 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002631 topOptions = p.takeOptionsLocked();
2632 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002633 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002634 }
2635 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002636 if (DEBUG_TASKS) Slog.w(TAG_TASKS,
Craig Mautner58547802013-03-05 08:23:53 -08002637 "resetTaskIntendedTask: calling finishActivity on " + p);
Todd Kennedy539db512014-12-15 09:57:55 -08002638 if (finishActivityLocked(
2639 p, Activity.RESULT_CANCELED, null, "reset-task", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002640 end--;
2641 srcPos--;
2642 }
2643 }
2644 replyChainEnd = -1;
2645 } else {
2646 // If we were in the middle of a chain, well the
2647 // activity that started it all doesn't want anything
2648 // special, so leave it all as-is.
2649 replyChainEnd = -1;
2650 }
2651 }
2652
2653 return topOptions;
2654 }
2655
2656 /**
2657 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2658 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2659 * @param affinityTask The task we are looking for an affinity to.
2660 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2661 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2662 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2663 */
Craig Mautner525f3d92013-05-07 14:01:50 -07002664 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08002665 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002666 int replyChainEnd = -1;
2667 final int taskId = task.taskId;
2668 final String taskAffinity = task.affinity;
2669
2670 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2671 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002672 final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
2673
2674 // Do not operate on or below the effective root Activity.
2675 for (int i = numActivities - 1; i > rootActivityNdx; --i) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002676 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002677 if (target.frontOfTask)
2678 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002679
2680 final int flags = target.info.flags;
2681 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2682 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2683
2684 if (target.resultTo != null) {
2685 // If this activity is sending a reply to a previous
2686 // activity, we can't do anything with it now until
2687 // we reach the start of the reply chain.
2688 // XXX note that we are assuming the result is always
2689 // to the previous activity, which is almost always
2690 // the case but we really shouldn't count on.
2691 if (replyChainEnd < 0) {
2692 replyChainEnd = i;
2693 }
2694 } else if (topTaskIsHigher
2695 && allowTaskReparenting
2696 && taskAffinity != null
2697 && taskAffinity.equals(target.taskAffinity)) {
2698 // This activity has an affinity for our task. Either remove it if we are
2699 // clearing or move it over to our task. Note that
2700 // we currently punt on the case where we are resetting a
2701 // task that is not at the top but who has activities above
2702 // with an affinity to it... this is really not a normal
2703 // case, and we will need to later pull that task to the front
2704 // and usually at that point we will do the reset and pick
2705 // up those remaining activities. (This only happens if
2706 // someone starts an activity in a new task from an activity
2707 // in a task that is not currently on top.)
2708 if (forceReset || finishOnTaskLaunch) {
2709 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002710 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2711 "Finishing task at index " + start + " to " + i);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002712 for (int srcPos = start; srcPos >= i; --srcPos) {
2713 final ActivityRecord p = activities.get(srcPos);
2714 if (p.finishing) {
2715 continue;
2716 }
Todd Kennedy539db512014-12-15 09:57:55 -08002717 finishActivityLocked(
2718 p, Activity.RESULT_CANCELED, null, "move-affinity", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002719 }
2720 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002721 if (taskInsertionPoint < 0) {
2722 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08002723
Craig Mautner77878772013-03-04 19:46:24 -08002724 }
Craig Mautner77878772013-03-04 19:46:24 -08002725
2726 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002727 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2728 "Reparenting from task=" + affinityTask + ":" + start + "-" + i
2729 + " to task=" + task + ":" + taskInsertionPoint);
Craig Mautner77878772013-03-04 19:46:24 -08002730 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002731 final ActivityRecord p = activities.get(srcPos);
Craig Mautnera228ae92014-07-09 05:44:55 -07002732 p.setTask(task, null);
Craig Mautner77878772013-03-04 19:46:24 -08002733 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002734
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002735 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2736 "Removing and adding activity " + p + " to stack at " + task
2737 + " callers=" + Debug.getCallers(3));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002738 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Pulling activity " + p
2739 + " from " + srcPos + " in to resetting task " + task);
Wale Ogunwale706ed792015-08-02 10:29:44 -07002740 setAppTask(p, task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002741 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002742 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08002743 if (VALIDATE_TOKENS) {
2744 validateAppTokensLocked();
2745 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08002746
2747 // Now we've moved it in to place... but what if this is
2748 // a singleTop activity and we have put it on top of another
2749 // instance of the same activity? Then we drop the instance
2750 // below so it remains singleTop.
2751 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
2752 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002753 int targetNdx = taskActivities.indexOf(target);
2754 if (targetNdx > 0) {
2755 ActivityRecord p = taskActivities.get(targetNdx - 1);
2756 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08002757 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
2758 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002759 }
2760 }
2761 }
2762 }
2763
2764 replyChainEnd = -1;
2765 }
2766 }
Craig Mautner77878772013-03-04 19:46:24 -08002767 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002768 }
2769
Craig Mautner8849a5e2013-04-02 16:41:03 -07002770 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08002771 ActivityRecord newActivity) {
2772 boolean forceReset =
2773 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
2774 if (ACTIVITY_INACTIVE_RESET_TIME > 0
2775 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
2776 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
2777 forceReset = true;
2778 }
2779 }
2780
2781 final TaskRecord task = taskTop.task;
2782
2783 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
2784 * for remaining tasks. Used for later tasks to reparent to task. */
2785 boolean taskFound = false;
2786
2787 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
2788 ActivityOptions topOptions = null;
2789
Craig Mautner77878772013-03-04 19:46:24 -08002790 // Preserve the location for reparenting in the new task.
2791 int reparentInsertionPoint = -1;
2792
Craig Mautnere3a74d52013-02-22 14:14:58 -08002793 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
2794 final TaskRecord targetTask = mTaskHistory.get(i);
2795
2796 if (targetTask == task) {
2797 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
2798 taskFound = true;
2799 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002800 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
2801 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002802 }
2803 }
2804
Craig Mautner70a86932013-02-28 22:37:44 -08002805 int taskNdx = mTaskHistory.indexOf(task);
riddle_hsu1d7919a2015-03-11 17:09:50 +08002806 if (taskNdx >= 0) {
2807 do {
2808 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
2809 } while (taskTop == null && taskNdx >= 0);
2810 }
Craig Mautner70a86932013-02-28 22:37:44 -08002811
Craig Mautnere3a74d52013-02-22 14:14:58 -08002812 if (topOptions != null) {
2813 // If we got some ActivityOptions from an activity on top that
2814 // was removed from the task, propagate them to the new real top.
2815 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002816 taskTop.updateOptionsLocked(topOptions);
2817 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002818 topOptions.abort();
2819 }
2820 }
2821
2822 return taskTop;
2823 }
2824
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002825 void sendActivityResultLocked(int callingUid, ActivityRecord r,
2826 String resultWho, int requestCode, int resultCode, Intent data) {
2827
2828 if (callingUid > 0) {
2829 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002830 data, r.getUriPermissionsLocked(), r.userId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002831 }
2832
2833 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
2834 + " : who=" + resultWho + " req=" + requestCode
2835 + " res=" + resultCode + " data=" + data);
2836 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
2837 try {
2838 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
2839 list.add(new ResultInfo(resultWho, requestCode,
2840 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08002841 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002842 return;
2843 } catch (Exception e) {
2844 Slog.w(TAG, "Exception thrown sending result to " + r, e);
2845 }
2846 }
2847
2848 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
2849 }
2850
Craig Mautner299f9602015-01-26 09:47:33 -08002851 private void adjustFocusedActivityLocked(ActivityRecord r, String reason) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08002852 if (!mStackSupervisor.isFocusedStack(this) || mService.mFocusedActivity != r) {
2853 return;
2854 }
2855
2856 final ActivityRecord next = topRunningActivityLocked();
2857 final String myReason = reason + " adjustFocus";
2858 if (next != r) {
2859 if (next != null && StackId.keepFocusInStackIfPossible(mStackId)) {
2860 // For freeform, docked, and pinned stacks we always keep the focus within the
2861 // stack as long as there is a running activity in the stack that we can adjust
2862 // focus to.
2863 mService.setFocusedActivityLocked(next, myReason);
2864 return;
2865 } else {
2866 final TaskRecord task = r.task;
2867 if (r.frontOfTask && task == topTask() && task.isOverHomeStack()) {
2868 // For non-fullscreen stack, we want to move the focus to the next visible
2869 // stack to prevent the home screen from moving to the top and obscuring
2870 // other visible stacks.
2871 if (!mFullscreen
2872 && adjustFocusToNextVisibleStackLocked(null, myReason)) {
2873 return;
2874 }
2875 // Move the home stack to the top if this stack is fullscreen or there is no
2876 // other visible stack.
2877 if (mStackSupervisor.moveHomeStackTaskToTop(
2878 task.getTaskToReturnTo(), myReason)) {
2879 // Activity focus was already adjusted. Nothing else to do...
2880 return;
Wale Ogunwaled80c2632015-03-13 10:26:26 -07002881 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002882 }
2883 }
Wale Ogunwaled045c822015-12-02 09:14:28 -08002884 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002885
Wale Ogunwaled045c822015-12-02 09:14:28 -08002886 final ActivityRecord top = mStackSupervisor.topRunningActivityLocked();
2887 if (top != null) {
2888 mService.setFocusedActivityLocked(top, myReason);
Craig Mautner04f0b702013-10-22 12:31:01 -07002889 }
2890 }
2891
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002892 private boolean adjustFocusToNextVisibleStackLocked(ActivityStack inStack, String reason) {
2893 final ActivityStack stack = (inStack != null) ? inStack : getNextVisibleStackLocked();
2894 final String myReason = reason + " adjustFocusToNextVisibleStack";
2895 if (stack == null) {
2896 return false;
2897 }
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002898 final ActivityRecord top = stack.topRunningActivityLocked();
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002899 if (top == null) {
2900 return false;
2901 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002902 mService.setFocusedActivityLocked(top, myReason);
2903 return true;
2904 }
2905
Craig Mautnerf3333272013-04-22 10:55:53 -07002906 final void stopActivityLocked(ActivityRecord r) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002907 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Stopping: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002908 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
2909 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
2910 if (!r.finishing) {
Dianne Hackborn91097de2014-04-04 18:02:06 -07002911 if (!mService.isSleeping()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002912 if (DEBUG_STATES) Slog.d(TAG_STATES, "no-history finish of " + r);
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07002913 if (requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
2914 "stop-no-history", false)) {
2915 // Activity was finished, no need to continue trying to schedule stop.
2916 adjustFocusedActivityLocked(r, "stopActivityFinished");
2917 r.resumeKeyDispatchingLocked();
2918 return;
2919 }
Christopher Tated3f175c2012-06-14 14:16:54 -07002920 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002921 if (DEBUG_STATES) Slog.d(TAG_STATES, "Not finishing noHistory " + r
Christopher Tated3f175c2012-06-14 14:16:54 -07002922 + " on stop because we're just sleeping");
2923 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002924 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07002925 }
2926
2927 if (r.app != null && r.app.thread != null) {
Craig Mautner299f9602015-01-26 09:47:33 -08002928 adjustFocusedActivityLocked(r, "stopActivity");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002929 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002930 try {
2931 r.stopped = false;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002932 if (DEBUG_STATES) Slog.v(TAG_STATES,
2933 "Moving to STOPPING: " + r + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002934 r.state = ActivityState.STOPPING;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002935 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
2936 "Stopping visible=" + r.visible + " for " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002937 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002938 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002939 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002940 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Craig Mautnere11f2b72013-04-01 12:37:17 -07002941 if (mService.isSleepingOrShuttingDown()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002942 r.setSleeping(true);
2943 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002944 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002945 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002946 } catch (Exception e) {
2947 // Maybe just ignore exceptions here... if the process
2948 // has crashed, our death notification will clean things
2949 // up.
2950 Slog.w(TAG, "Exception thrown during pause", e);
2951 // Just in case, assume it to be stopped.
2952 r.stopped = true;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002953 if (DEBUG_STATES) Slog.v(TAG_STATES, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002954 r.state = ActivityState.STOPPED;
2955 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07002956 destroyActivityLocked(r, true, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002957 }
2958 }
2959 }
2960 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07002961
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002962 /**
2963 * @return Returns true if the activity is being finished, false if for
2964 * some reason it is being left as-is.
2965 */
2966 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002967 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002968 ActivityRecord r = isInStackLocked(token);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002969 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(TAG_STATES,
2970 "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07002971 + ", result=" + resultCode + ", data=" + resultData
2972 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002973 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002974 return false;
2975 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002976
Craig Mautnerd44711d2013-02-23 11:24:36 -08002977 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002978 return true;
2979 }
2980
Craig Mautnerd2328952013-03-05 12:46:26 -08002981 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08002982 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2983 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2984 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2985 ActivityRecord r = activities.get(activityNdx);
2986 if (r.resultTo == self && r.requestCode == requestCode) {
2987 if ((r.resultWho == null && resultWho == null) ||
2988 (r.resultWho != null && r.resultWho.equals(resultWho))) {
2989 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
2990 false);
2991 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002992 }
2993 }
2994 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002995 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002996 }
2997
Todd Kennedy539db512014-12-15 09:57:55 -08002998 final void finishTopRunningActivityLocked(ProcessRecord app, String reason) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002999 ActivityRecord r = topRunningActivityLocked();
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003000 if (r != null && r.app == app) {
3001 // If the top running activity is from this crashing
3002 // process, then terminate it to avoid getting in a loop.
3003 Slog.w(TAG, " Force finishing activity "
3004 + r.intent.getComponent().flattenToShortString());
Craig Mautner9658b312013-02-28 10:55:59 -08003005 int taskNdx = mTaskHistory.indexOf(r.task);
3006 int activityNdx = r.task.mActivities.indexOf(r);
Todd Kennedy539db512014-12-15 09:57:55 -08003007 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003008 // Also terminate any activities below it that aren't yet
3009 // stopped, to avoid a situation where one will get
3010 // re-start our crashing activity once it gets resumed again.
Craig Mautner9658b312013-02-28 10:55:59 -08003011 --activityNdx;
3012 if (activityNdx < 0) {
3013 do {
3014 --taskNdx;
3015 if (taskNdx < 0) {
3016 break;
3017 }
3018 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
3019 } while (activityNdx < 0);
3020 }
3021 if (activityNdx >= 0) {
3022 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003023 if (r.state == ActivityState.RESUMED
3024 || r.state == ActivityState.PAUSING
3025 || r.state == ActivityState.PAUSED) {
Craig Mautner4ef26932013-09-18 15:15:52 -07003026 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003027 Slog.w(TAG, " Force finishing activity "
3028 + r.intent.getComponent().flattenToShortString());
Todd Kennedy539db512014-12-15 09:57:55 -08003029 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003030 }
3031 }
3032 }
3033 }
3034 }
3035
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003036 final void finishVoiceTask(IVoiceInteractionSession session) {
3037 IBinder sessionBinder = session.asBinder();
3038 boolean didOne = false;
3039 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3040 TaskRecord tr = mTaskHistory.get(taskNdx);
3041 if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
3042 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
3043 ActivityRecord r = tr.mActivities.get(activityNdx);
3044 if (!r.finishing) {
3045 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
3046 false);
3047 didOne = true;
3048 }
3049 }
3050 }
3051 }
3052 if (didOne) {
3053 mService.updateOomAdjLocked();
3054 }
3055 }
3056
Craig Mautnerd2328952013-03-05 12:46:26 -08003057 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003058 ArrayList<ActivityRecord> activities = r.task.mActivities;
3059 for (int index = activities.indexOf(r); index >= 0; --index) {
3060 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08003061 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003062 break;
3063 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003064 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003065 }
3066 return true;
3067 }
3068
Dianne Hackborn5c607432012-02-28 14:44:19 -08003069 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
3070 // send the result
3071 ActivityRecord resultTo = r.resultTo;
3072 if (resultTo != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003073 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "Adding result to " + resultTo
Dianne Hackborn5c607432012-02-28 14:44:19 -08003074 + " who=" + r.resultWho + " req=" + r.requestCode
3075 + " res=" + resultCode + " data=" + resultData);
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003076 if (resultTo.userId != r.userId) {
Nicolas Prevot6b942b82014-06-02 15:20:42 +01003077 if (resultData != null) {
Nicolas Prevot107f7b72015-07-01 16:31:48 +01003078 resultData.prepareToLeaveUser(r.userId);
Nicolas Prevot6b942b82014-06-02 15:20:42 +01003079 }
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003080 }
Dianne Hackborn5c607432012-02-28 14:44:19 -08003081 if (r.info.applicationInfo.uid > 0) {
3082 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
3083 resultTo.packageName, resultData,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003084 resultTo.getUriPermissionsLocked(), resultTo.userId);
Dianne Hackborn5c607432012-02-28 14:44:19 -08003085 }
3086 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
3087 resultData);
3088 r.resultTo = null;
3089 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003090 else if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "No result destination from " + r);
Dianne Hackborn5c607432012-02-28 14:44:19 -08003091
3092 // Make sure this HistoryRecord is not holding on to other resources,
3093 // because clients have remote IPC references to this object so we
3094 // can't assume that will go away and want to avoid circular IPC refs.
3095 r.results = null;
3096 r.pendingResults = null;
3097 r.newIntents = null;
3098 r.icicle = null;
3099 }
3100
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003101 /**
3102 * @return Returns true if this activity has been removed from the history
3103 * list, or false if it is still in the list and will be removed later.
3104 */
Craig Mautnerf3333272013-04-22 10:55:53 -07003105 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
3106 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003107 if (r.finishing) {
3108 Slog.w(TAG, "Duplicate finish request for " + r);
3109 return false;
3110 }
3111
Wale Ogunwale7d701172015-03-11 15:36:30 -07003112 r.makeFinishingLocked();
Craig Mautneraea74a52014-03-08 14:23:10 -08003113 final TaskRecord task = r.task;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003114 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003115 r.userId, System.identityHashCode(r),
Craig Mautneraea74a52014-03-08 14:23:10 -08003116 task.taskId, r.shortComponentName, reason);
3117 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003118 final int index = activities.indexOf(r);
3119 if (index < (activities.size() - 1)) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003120 task.setFrontOfTask();
Craig Mautnerd00f4742014-03-12 14:17:26 -07003121 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003122 // If the caller asked that this activity (and all above it)
3123 // be cleared when the task is reset, don't lose that information,
3124 // but propagate it up to the next activity.
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08003125 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003126 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003127 }
3128 }
3129
3130 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07003131
Craig Mautner299f9602015-01-26 09:47:33 -08003132 adjustFocusedActivityLocked(r, "finishActivity");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003133
Dianne Hackborn5c607432012-02-28 14:44:19 -08003134 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07003135
Craig Mautnerde4ef022013-04-07 19:01:33 -07003136 if (mResumedActivity == r) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003137 boolean endTask = index <= 0;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003138 if (DEBUG_VISIBILITY || DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003139 "Prepare close transition: finishing " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003140 mWindowManager.prepareAppTransition(endTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08003141 ? AppTransition.TRANSIT_TASK_CLOSE
3142 : AppTransition.TRANSIT_ACTIVITY_CLOSE, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08003143
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003144 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003145 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003146
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08003147 if (mPausingActivity == null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003148 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish needs to pause: " + r);
3149 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
3150 "finish() => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07003151 startPausingLocked(false, false, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003152 }
3153
Craig Mautneraea74a52014-03-08 14:23:10 -08003154 if (endTask) {
Craig Mautner15df08a2015-04-01 12:17:18 -07003155 mStackSupervisor.removeLockedTaskLocked(task);
Craig Mautneraea74a52014-03-08 14:23:10 -08003156 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003157 } else if (r.state != ActivityState.PAUSING) {
3158 // If the activity is PAUSING, we will complete the finish once
3159 // it is done pausing; else we can just directly finish it here.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003160 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish not pausing: " + r);
Chong Zhang66ed4c62015-11-12 14:56:28 -08003161 if (r.visible) {
3162 mWindowManager.setAppVisibility(r.appToken, false);
3163 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08003164 return finishCurrentActivityLocked(r, FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003165 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003166 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish waiting for pause of: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003167 }
3168
3169 return false;
3170 }
3171
Craig Mautnerf3333272013-04-22 10:55:53 -07003172 static final int FINISH_IMMEDIATELY = 0;
3173 static final int FINISH_AFTER_PAUSE = 1;
3174 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003175
Craig Mautnerf3333272013-04-22 10:55:53 -07003176 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003177 // First things first: if this activity is currently visible,
3178 // and the resumed activity is not yet visible, then hold off on
3179 // finishing until the resumed one becomes visible.
3180 if (mode == FINISH_AFTER_VISIBLE && r.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07003181 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -08003182 addToStopping(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003183 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003184 if (DEBUG_STATES) Slog.v(TAG_STATES,
3185 "Moving to STOPPING: "+ r + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003186 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003187 if (oomAdj) {
3188 mService.updateOomAdjLocked();
3189 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003190 return r;
3191 }
3192
3193 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003194 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07003195 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003196 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003197 if (mResumedActivity == r) {
3198 mResumedActivity = null;
3199 }
3200 final ActivityState prevState = r.state;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003201 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003202 r.state = ActivityState.FINISHING;
3203
3204 if (mode == FINISH_IMMEDIATELY
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07003205 || (mode == FINISH_AFTER_PAUSE && prevState == ActivityState.PAUSED)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003206 || prevState == ActivityState.STOPPED
3207 || prevState == ActivityState.INITIALIZING) {
3208 // If this activity is already stopped, we can just finish
3209 // it right now.
Wale Ogunwale7d701172015-03-11 15:36:30 -07003210 r.makeFinishingLocked();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003211 boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm");
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003212 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07003213 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003214 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003215 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS,
Craig Mautnerd163e752014-06-13 17:18:47 -07003216 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
3217 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003218 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003219 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003220
3221 // Need to go through the full pause cycle to get this
3222 // activity into the stopped state and then finish it.
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003223 if (DEBUG_ALL) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07003224 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02003225 r.resumeKeyDispatchingLocked();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003226 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003227 return r;
3228 }
3229
Craig Mautneree36c772014-07-16 14:56:05 -07003230 void finishAllActivitiesLocked(boolean immediately) {
3231 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003232 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3233 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3234 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3235 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07003236 noActivitiesInStack = false;
3237 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003238 continue;
3239 }
Craig Mautneree36c772014-07-16 14:56:05 -07003240 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003241 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
3242 }
3243 }
Craig Mautneree36c772014-07-16 14:56:05 -07003244 if (noActivitiesInStack) {
3245 mActivityContainer.onTaskListEmptyLocked();
3246 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003247 }
3248
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003249 final boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
3250 // Basic case: for simple app-centric recents, we need to recreate
3251 // the task if the affinity has changed.
3252 if (srec == null || srec.task.affinity == null ||
3253 !srec.task.affinity.equals(destAffinity)) {
3254 return true;
3255 }
3256 // Document-centric case: an app may be split in to multiple documents;
3257 // they need to re-create their task if this current activity is the root
3258 // of a document, unless simply finishing it will return them to the the
3259 // correct app behind.
Dianne Hackbornf3eb8432014-09-19 17:21:46 -07003260 if (srec.frontOfTask && srec.task != null && srec.task.getBaseIntent() != null
3261 && srec.task.getBaseIntent().isDocument()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003262 // Okay, this activity is at the root of its task. What to do, what to do...
3263 if (srec.task.getTaskToReturnTo() != ActivityRecord.APPLICATION_ACTIVITY_TYPE) {
3264 // Finishing won't return to an application, so we need to recreate.
3265 return true;
3266 }
3267 // We now need to get the task below it to determine what to do.
3268 int taskIdx = mTaskHistory.indexOf(srec.task);
3269 if (taskIdx <= 0) {
3270 Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
3271 return false;
3272 }
3273 if (taskIdx == 0) {
3274 // At the bottom of the stack, nothing to go back to.
3275 return true;
3276 }
3277 TaskRecord prevTask = mTaskHistory.get(taskIdx);
3278 if (!srec.task.affinity.equals(prevTask.affinity)) {
3279 // These are different apps, so need to recreate.
3280 return true;
3281 }
3282 }
3283 return false;
3284 }
3285
Wale Ogunwale7d701172015-03-11 15:36:30 -07003286 final boolean navigateUpToLocked(ActivityRecord srec, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003287 Intent resultData) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003288 final TaskRecord task = srec.task;
3289 final ArrayList<ActivityRecord> activities = task.mActivities;
3290 final int start = activities.indexOf(srec);
3291 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003292 return false;
3293 }
3294 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08003295 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003296 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08003297 final ComponentName dest = destIntent.getComponent();
3298 if (start > 0 && dest != null) {
3299 for (int i = finishTo; i >= 0; i--) {
3300 ActivityRecord r = activities.get(i);
3301 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003302 r.info.name.equals(dest.getClassName())) {
3303 finishTo = i;
3304 parent = r;
3305 foundParentInTask = true;
3306 break;
3307 }
3308 }
3309 }
3310
3311 IActivityController controller = mService.mController;
3312 if (controller != null) {
3313 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
3314 if (next != null) {
3315 // ask watcher if this is allowed
3316 boolean resumeOK = true;
3317 try {
3318 resumeOK = controller.activityResuming(next.packageName);
3319 } catch (RemoteException e) {
3320 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003321 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003322 }
3323
3324 if (!resumeOK) {
3325 return false;
3326 }
3327 }
3328 }
3329 final long origId = Binder.clearCallingIdentity();
3330 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003331 ActivityRecord r = activities.get(i);
3332 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003333 // Only return the supplied result for the first activity finished
3334 resultCode = Activity.RESULT_CANCELED;
3335 resultData = null;
3336 }
3337
3338 if (parent != null && foundParentInTask) {
3339 final int parentLaunchMode = parent.info.launchMode;
3340 final int destIntentFlags = destIntent.getFlags();
3341 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
3342 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
3343 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
3344 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003345 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
3346 srec.packageName);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003347 } else {
3348 try {
3349 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
3350 destIntent.getComponent(), 0, srec.userId);
Craig Mautner6170f732013-04-02 13:05:23 -07003351 int res = mStackSupervisor.startActivityLocked(srec.app.thread, destIntent,
Dianne Hackborn91097de2014-04-04 18:02:06 -07003352 null, aInfo, null, null, parent.appToken, null,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003353 0, -1, parent.launchedFromUid, parent.launchedFromPackage,
Dianne Hackborna7cfbe02015-07-16 10:52:52 -07003354 -1, parent.launchedFromUid, 0, null, false, true, null, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003355 foundParentInTask = res == ActivityManager.START_SUCCESS;
3356 } catch (RemoteException e) {
3357 foundParentInTask = false;
3358 }
3359 requestFinishActivityLocked(parent.appToken, resultCode,
Todd Kennedy539db512014-12-15 09:57:55 -08003360 resultData, "navigate-top", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003361 }
3362 }
3363 Binder.restoreCallingIdentity(origId);
3364 return foundParentInTask;
3365 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003366 /**
3367 * Perform the common clean-up of an activity record. This is called both
3368 * as part of destroyActivityLocked() (when destroying the client-side
3369 * representation) and cleaning things up as a result of its hosting
3370 * processing going away, in which case there is no remaining client-side
3371 * state to destroy so only the cleanup here is needed.
Craig Mautneracebdc82015-02-24 10:53:03 -08003372 *
3373 * Note: Call before #removeActivityFromHistoryLocked.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003374 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003375 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
3376 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003377 if (mResumedActivity == r) {
3378 mResumedActivity = null;
3379 }
Craig Mautner1872ce32014-03-28 23:05:42 +00003380 if (mPausingActivity == r) {
3381 mPausingActivity = null;
3382 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07003383 mService.clearFocusedActivity(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003384
3385 r.configDestroy = false;
3386 r.frozenBeforeDestroy = false;
3387
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003388 if (setState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003389 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (cleaning up)");
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003390 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003391 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003392 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003393 }
3394
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003395 // Make sure this record is no longer in the pending finishes list.
3396 // This could happen, for example, if we are trimming activities
3397 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07003398 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003399 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07003400
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003401 // Remove any pending results.
3402 if (r.finishing && r.pendingResults != null) {
3403 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
3404 PendingIntentRecord rec = apr.get();
3405 if (rec != null) {
3406 mService.cancelIntentSenderLocked(rec, false);
3407 }
3408 }
3409 r.pendingResults = null;
3410 }
3411
3412 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07003413 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003414 }
3415
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003416 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003417 removeTimeoutsForActivityLocked(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003418 if (getVisibleBehindActivity() == r) {
3419 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003420 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003421 }
3422
3423 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07003424 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003425 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003426 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07003427 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07003428 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003429 }
3430
Craig Mautner299f9602015-01-26 09:47:33 -08003431 private void removeActivityFromHistoryLocked(ActivityRecord r, String reason) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003432 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003433 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
Wale Ogunwale7d701172015-03-11 15:36:30 -07003434 r.makeFinishingLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003435 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3436 "Removing activity " + r + " from stack callers=" + Debug.getCallers(5));
3437
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003438 r.takeFromHistory();
3439 removeTimeoutsForActivityLocked(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003440 if (DEBUG_STATES) Slog.v(TAG_STATES,
3441 "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003442 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003443 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003444 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003445 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003446 if (VALIDATE_TOKENS) {
3447 validateAppTokensLocked();
3448 }
Craig Mautner312ba862014-02-10 17:55:01 -08003449 final TaskRecord task = r.task;
3450 if (task != null && task.removeActivity(r)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003451 if (DEBUG_STACK) Slog.i(TAG_STACK,
Craig Mautner312ba862014-02-10 17:55:01 -08003452 "removeActivityFromHistoryLocked: last activity removed from " + this);
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07003453 if (mStackSupervisor.isFocusedStack(this) && task == topTask() &&
Craig Mautner84984fa2014-06-19 11:19:20 -07003454 task.isOverHomeStack()) {
Craig Mautner299f9602015-01-26 09:47:33 -08003455 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(), reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003456 }
Craig Mautner299f9602015-01-26 09:47:33 -08003457 removeTask(task, reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003458 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003459 cleanUpActivityServicesLocked(r);
3460 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003461 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003462
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003463 /**
3464 * Perform clean-up of service connections in an activity record.
3465 */
3466 final void cleanUpActivityServicesLocked(ActivityRecord r) {
3467 // Throw away any services that have been bound by this activity.
3468 if (r.connections != null) {
3469 Iterator<ConnectionRecord> it = r.connections.iterator();
3470 while (it.hasNext()) {
3471 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07003472 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003473 }
3474 r.connections = null;
3475 }
3476 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003477
Craig Mautneree2e45a2014-06-27 12:10:03 -07003478 final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003479 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003480 msg.obj = new ScheduleDestroyArgs(owner, reason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003481 mHandler.sendMessage(msg);
3482 }
3483
Craig Mautneree2e45a2014-06-27 12:10:03 -07003484 final void destroyActivitiesLocked(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003485 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003486 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003487 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3488 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3489 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3490 final ActivityRecord r = activities.get(activityNdx);
3491 if (r.finishing) {
3492 continue;
3493 }
3494 if (r.fullscreen) {
3495 lastIsOpaque = true;
3496 }
3497 if (owner != null && r.app != owner) {
3498 continue;
3499 }
3500 if (!lastIsOpaque) {
3501 continue;
3502 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003503 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003504 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Destroying " + r + " in state " + r.state
Craig Mautnerd44711d2013-02-23 11:24:36 -08003505 + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003506 + " pausing=" + mPausingActivity + " for reason " + reason);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003507 if (destroyActivityLocked(r, true, reason)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003508 activityRemoved = true;
3509 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003510 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003511 }
3512 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003513 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07003514 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003515 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003516 }
3517
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003518 final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
3519 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003520 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
3521 "Destroying " + r + " in state " + r.state + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003522 + " pausing=" + mPausingActivity + " for reason " + reason);
3523 return destroyActivityLocked(r, true, reason);
3524 }
3525 return false;
3526 }
3527
3528 final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
3529 String reason) {
3530 // Iterate over tasks starting at the back (oldest) first.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003531 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Trying to release some activities in " + app);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003532 int maxTasks = tasks.size() / 4;
3533 if (maxTasks < 1) {
3534 maxTasks = 1;
3535 }
3536 int numReleased = 0;
3537 for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
3538 final TaskRecord task = mTaskHistory.get(taskNdx);
3539 if (!tasks.contains(task)) {
3540 continue;
3541 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003542 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Looking for activities to release in " + task);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003543 int curNum = 0;
3544 final ArrayList<ActivityRecord> activities = task.mActivities;
3545 for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
3546 final ActivityRecord activity = activities.get(actNdx);
3547 if (activity.app == app && activity.isDestroyable()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003548 if (DEBUG_RELEASE) Slog.v(TAG_RELEASE, "Destroying " + activity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003549 + " in state " + activity.state + " resumed=" + mResumedActivity
3550 + " pausing=" + mPausingActivity + " for reason " + reason);
3551 destroyActivityLocked(activity, true, reason);
3552 if (activities.get(actNdx) != activity) {
3553 // Was removed from list, back up so we don't miss the next one.
3554 actNdx--;
3555 }
3556 curNum++;
3557 }
3558 }
3559 if (curNum > 0) {
3560 numReleased += curNum;
3561 maxTasks--;
3562 if (mTaskHistory.get(taskNdx) != task) {
3563 // The entire task got removed, back up so we don't miss the next one.
3564 taskNdx--;
3565 }
3566 }
3567 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003568 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE,
3569 "Done releasing: did " + numReleased + " activities");
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003570 return numReleased;
3571 }
3572
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003573 /**
3574 * Destroy the current CLIENT SIDE instance of an activity. This may be
3575 * called both when actually finishing an activity, or when performing
3576 * a configuration switch where we destroy the current client-side object
3577 * but then create a new client-side object for this same HistoryRecord.
3578 */
Craig Mautneree2e45a2014-06-27 12:10:03 -07003579 final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003580 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(TAG_SWITCH,
3581 "Removing activity from " + reason + ": token=" + r
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07003582 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003583 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003584 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07003585 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003586
3587 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003588
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003589 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003590
3591 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003592
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003593 if (hadApp) {
3594 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003595 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003596 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
3597 mService.mHeavyWeightProcess = null;
3598 mService.mHandler.sendEmptyMessage(
3599 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
3600 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003601 if (r.app.activities.isEmpty()) {
Dianne Hackborn465fa392014-09-14 14:21:18 -07003602 // Update any services we are bound to that might care about whether
3603 // their client may have activities.
3604 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07003605 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07003606 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003607 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003608 }
3609 }
3610
3611 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003612
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003613 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003614 if (DEBUG_SWITCH) Slog.i(TAG_SWITCH, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003615 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003616 r.configChangeFlags);
3617 } catch (Exception e) {
3618 // We can just ignore exceptions here... if the process
3619 // has crashed, our death notification will clean things
3620 // up.
3621 //Slog.w(TAG, "Exception thrown during finish", e);
3622 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003623 removeActivityFromHistoryLocked(r, reason + " exceptionInScheduleDestroy");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003624 removedFromHistory = true;
3625 skipDestroy = true;
3626 }
3627 }
3628
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003629 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003630
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003631 // If the activity is finishing, we need to wait on removing it
3632 // from the list to give it a chance to do its cleanup. During
3633 // that time it may make calls back with its token so we need to
3634 // be able to find it on the list and so we don't want to remove
3635 // it from the list yet. Otherwise, we can just immediately put
3636 // it in the destroyed state since we are not removing it from the
3637 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003638 if (r.finishing && !skipDestroy) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003639 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYING: " + r
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003640 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003641 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003642 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003643 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
3644 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003645 if (DEBUG_STATES) Slog.v(TAG_STATES,
3646 "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003647 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003648 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003649 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003650 }
3651 } else {
3652 // remove this record from the history.
3653 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003654 removeActivityFromHistoryLocked(r, reason + " hadNoApp");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003655 removedFromHistory = true;
3656 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003657 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003658 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003659 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003660 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003661 }
3662 }
3663
3664 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003665
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003666 if (!mLRUActivities.remove(r) && hadApp) {
3667 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
3668 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003669
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003670 return removedFromHistory;
3671 }
3672
Craig Mautner299f9602015-01-26 09:47:33 -08003673 final void activityDestroyedLocked(IBinder token, String reason) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003674 final long origId = Binder.clearCallingIdentity();
3675 try {
Wale Ogunwale7d701172015-03-11 15:36:30 -07003676 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautnerd2328952013-03-05 12:46:26 -08003677 if (r != null) {
3678 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003679 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003680 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS, "activityDestroyedLocked: r=" + r);
Craig Mautnerd2328952013-03-05 12:46:26 -08003681
Wale Ogunwale60454db2015-01-23 16:05:07 -08003682 if (isInStackLocked(r) != null) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003683 if (r.state == ActivityState.DESTROYING) {
3684 cleanUpActivityLocked(r, true, false);
Craig Mautner299f9602015-01-26 09:47:33 -08003685 removeActivityFromHistoryLocked(r, reason);
Craig Mautnerd2328952013-03-05 12:46:26 -08003686 }
3687 }
Craig Mautner05d29032013-05-03 13:40:13 -07003688 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08003689 } finally {
3690 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003691 }
3692 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003693
Todd Kennedyaab56db2015-01-30 09:39:53 -08003694 void releaseBackgroundResources(ActivityRecord r) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003695 if (hasVisibleBehindActivity() &&
3696 !mHandler.hasMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG)) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07003697 if (r == topRunningActivityLocked()) {
Craig Mautner64ccb702014-10-01 09:38:40 -07003698 // Don't release the top activity if it has requested to run behind the next
3699 // activity.
3700 return;
3701 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003702 if (DEBUG_STATES) Slog.d(TAG_STATES, "releaseBackgroundResources activtyDisplay=" +
Jose Lima4b6c6692014-08-12 17:41:12 -07003703 mActivityContainer.mActivityDisplay + " visibleBehind=" + r + " app=" + r.app +
Craig Mautneree2e45a2014-06-27 12:10:03 -07003704 " thread=" + r.app.thread);
3705 if (r != null && r.app != null && r.app.thread != null) {
3706 try {
Jose Lima4b6c6692014-08-12 17:41:12 -07003707 r.app.thread.scheduleCancelVisibleBehind(r.appToken);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003708 } catch (RemoteException e) {
3709 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003710 mHandler.sendEmptyMessageDelayed(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG, 500);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003711 } else {
Jose Lima4b6c6692014-08-12 17:41:12 -07003712 Slog.e(TAG, "releaseBackgroundResources: activity " + r + " no longer running");
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003713 backgroundResourcesReleased();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003714 }
3715 }
3716 }
3717
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003718 final void backgroundResourcesReleased() {
Jose Lima4b6c6692014-08-12 17:41:12 -07003719 mHandler.removeMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG);
3720 final ActivityRecord r = getVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003721 if (r != null) {
3722 mStackSupervisor.mStoppingActivities.add(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003723 setVisibleBehindActivity(null);
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003724 mStackSupervisor.scheduleIdleTimeoutLocked(null);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003725 }
3726 mStackSupervisor.resumeTopActivitiesLocked();
3727 }
3728
Jose Lima4b6c6692014-08-12 17:41:12 -07003729 boolean hasVisibleBehindActivity() {
3730 return isAttached() && mActivityContainer.mActivityDisplay.hasVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003731 }
3732
Jose Lima4b6c6692014-08-12 17:41:12 -07003733 void setVisibleBehindActivity(ActivityRecord r) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003734 if (isAttached()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003735 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003736 }
3737 }
3738
Jose Lima4b6c6692014-08-12 17:41:12 -07003739 ActivityRecord getVisibleBehindActivity() {
3740 return isAttached() ? mActivityContainer.mActivityDisplay.mVisibleBehindActivity : null;
Craig Mautneree2e45a2014-06-27 12:10:03 -07003741 }
3742
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003743 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
3744 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003745 int i = list.size();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003746 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3747 "Removing app " + app + " from list " + listName + " with " + i + " entries");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003748 while (i > 0) {
3749 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003750 ActivityRecord r = list.get(i);
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003751 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003752 if (r.app == app) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003753 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003754 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003755 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003756 }
3757 }
3758 }
3759
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003760 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
3761 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003762 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
3763 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07003764 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
3765 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003766 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003767 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07003768 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
3769 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003770
3771 boolean hasVisibleActivities = false;
3772
3773 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08003774 int i = numActivities();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003775 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3776 "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08003777 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3778 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3779 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3780 final ActivityRecord r = activities.get(activityNdx);
3781 --i;
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003782 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3783 "Record #" + i + " " + r + ": app=" + r.app);
Craig Mautner0247fc82013-02-28 14:32:06 -08003784 if (r.app == app) {
riddle_hsu558e8492015-04-02 16:43:13 +08003785 if (r.visible) {
3786 hasVisibleActivities = true;
3787 }
Craig Mautneracebdc82015-02-24 10:53:03 -08003788 final boolean remove;
Craig Mautner0247fc82013-02-28 14:32:06 -08003789 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
3790 // Don't currently have state for the activity, or
3791 // it is finishing -- always remove it.
3792 remove = true;
Chong Zhang112eb8c2015-11-02 11:17:00 -08003793 } else if (!r.visible && r.launchCount > 2 &&
3794 r.lastLaunchTime > (SystemClock.uptimeMillis() - 60000)) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003795 // We have launched this activity too many times since it was
3796 // able to run, so give up and remove it.
Chong Zhang112eb8c2015-11-02 11:17:00 -08003797 // (Note if the activity is visible, we don't remove the record.
3798 // We leave the dead window on the screen but the process will
3799 // not be restarted unless user explicitly tap on it.)
Craig Mautner0247fc82013-02-28 14:32:06 -08003800 remove = true;
3801 } else {
3802 // The process may be gone, but the activity lives on!
3803 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003804 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003805 if (remove) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003806 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) Slog.i(TAG_ADD_REMOVE,
3807 "Removing activity " + r + " from stack at " + i
3808 + ": haveState=" + r.haveState
3809 + " stateNotNeeded=" + r.stateNotNeeded
3810 + " finishing=" + r.finishing
3811 + " state=" + r.state + " callers=" + Debug.getCallers(5));
Craig Mautner0247fc82013-02-28 14:32:06 -08003812 if (!r.finishing) {
3813 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
3814 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3815 r.userId, System.identityHashCode(r),
3816 r.task.taskId, r.shortComponentName,
3817 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07003818 if (r.state == ActivityState.RESUMED) {
3819 mService.updateUsageStats(r, false);
3820 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003821 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003822 } else {
3823 // We have the current state for this activity, so
3824 // it can be restarted later when needed.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003825 if (DEBUG_ALL) Slog.v(TAG, "Keeping entry, setting app to null");
3826 if (DEBUG_APP) Slog.v(TAG_APP,
3827 "Clearing app during removeHistory for activity " + r);
Craig Mautner0247fc82013-02-28 14:32:06 -08003828 r.app = null;
Chong Zhang112eb8c2015-11-02 11:17:00 -08003829 // Set nowVisible to previous visible state. If the app was visible while
3830 // it died, we leave the dead window on screen so it's basically visible.
3831 // This is needed when user later tap on the dead window, we need to stop
3832 // other apps when user transfers focus to the restarted activity.
3833 r.nowVisible = r.visible;
Craig Mautner0247fc82013-02-28 14:32:06 -08003834 if (!r.haveState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003835 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
Craig Mautner0247fc82013-02-28 14:32:06 -08003836 "App died, clearing saved state of " + r);
3837 r.icicle = null;
3838 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003839 }
Craig Mautnerd2328952013-03-05 12:46:26 -08003840 cleanUpActivityLocked(r, true, true);
Craig Mautneracebdc82015-02-24 10:53:03 -08003841 if (remove) {
3842 removeActivityFromHistoryLocked(r, "appDied");
3843 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003844 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003845 }
3846 }
3847
3848 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003849 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003850
Chong Zhang280d3322015-11-03 17:27:26 -08003851 final void updateTransitLocked(int transit, ActivityOptions options) {
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003852 if (options != null) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07003853 ActivityRecord r = topRunningActivityLocked();
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003854 if (r != null && r.state != ActivityState.RESUMED) {
3855 r.updateOptionsLocked(options);
3856 } else {
3857 ActivityOptions.abort(options);
3858 }
3859 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003860 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003861 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003862
Craig Mautner21d24a22014-04-23 11:45:37 -07003863 void updateTaskMovement(TaskRecord task, boolean toFront) {
3864 if (task.isPersistable) {
3865 task.mLastTimeMoved = System.currentTimeMillis();
3866 // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
3867 // recently will be most negative, tasks sent to the bottom before that will be less
3868 // negative. Similarly for recent tasks moved to the top which will be most positive.
3869 if (!toFront) {
3870 task.mLastTimeMoved *= -1;
3871 }
3872 }
Chong Zhangfdcc4d42015-10-14 16:50:12 -07003873 mStackSupervisor.invalidateTaskLayers();
Craig Mautner21d24a22014-04-23 11:45:37 -07003874 }
3875
Craig Mautner84984fa2014-06-19 11:19:20 -07003876 void moveHomeStackTaskToTop(int homeStackTaskType) {
Craig Mautnera82aa092013-09-13 15:34:08 -07003877 final int top = mTaskHistory.size() - 1;
3878 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
3879 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003880 if (task.taskType == homeStackTaskType) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003881 if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG_STACK,
3882 "moveHomeStackTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07003883 mTaskHistory.remove(taskNdx);
3884 mTaskHistory.add(top, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07003885 updateTaskMovement(task, true);
Craig Mautnera82aa092013-09-13 15:34:08 -07003886 return;
3887 }
3888 }
3889 }
3890
Chong Zhang280d3322015-11-03 17:27:26 -08003891 final void moveTaskToFrontLocked(TaskRecord tr, boolean noAnimation, ActivityOptions options,
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07003892 AppTimeTracker timeTracker, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003893 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003894
Craig Mautner11bf9a52013-02-19 14:08:51 -08003895 final int numTasks = mTaskHistory.size();
3896 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07003897 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003898 // nothing to do!
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003899 if (noAnimation) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003900 ActivityOptions.abort(options);
3901 } else {
3902 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
3903 }
3904 return;
3905 }
3906
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07003907 if (timeTracker != null) {
3908 // The caller wants a time tracker associated with this task.
3909 for (int i = tr.mActivities.size() - 1; i >= 0; i--) {
3910 tr.mActivities.get(i).appTimeTracker = timeTracker;
3911 }
3912 }
3913
Craig Mautner11bf9a52013-02-19 14:08:51 -08003914 // Shift all activities with this task up to the top
3915 // of the stack, keeping them in the same internal order.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07003916 insertTaskAtTop(tr, null);
Wale Ogunwaled80c2632015-03-13 10:26:26 -07003917
Chong Zhang45c25ce2015-08-10 22:18:26 -07003918 // Don't refocus if invisible to current user
3919 ActivityRecord top = tr.getTopActivity();
3920 if (!okToShowLocked(top)) {
3921 addRecentActivityLocked(top);
3922 ActivityOptions.abort(options);
3923 return;
3924 }
3925
Wale Ogunwaled80c2632015-03-13 10:26:26 -07003926 // Set focus to the top running activity of this stack.
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07003927 ActivityRecord r = topRunningActivityLocked();
Wale Ogunwaled80c2632015-03-13 10:26:26 -07003928 mService.setFocusedActivityLocked(r, reason);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003929
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003930 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to front transition: task=" + tr);
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003931 if (noAnimation) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003932 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003933 if (r != null) {
3934 mNoAnimActivities.add(r);
3935 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003936 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003937 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08003938 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003939 }
Craig Mautner30e2d722013-02-12 11:30:16 -08003940
Craig Mautner05d29032013-05-03 13:40:13 -07003941 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautner58547802013-03-05 08:23:53 -08003942 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003943
3944 if (VALIDATE_TOKENS) {
3945 validateAppTokensLocked();
3946 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003947 }
3948
3949 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003950 * Worker method for rearranging history stack. Implements the function of moving all
3951 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003952 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003953 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003954 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
3955 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003956 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003957 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003958 * @return Returns true if the move completed, false if not.
3959 */
Craig Mautner299f9602015-01-26 09:47:33 -08003960 final boolean moveTaskToBackLocked(int taskId) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003961 final TaskRecord tr = taskForIdLocked(taskId);
3962 if (tr == null) {
3963 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
3964 return false;
3965 }
3966
3967 Slog.i(TAG, "moveTaskToBack: " + tr);
Craig Mautner15df08a2015-04-01 12:17:18 -07003968 mStackSupervisor.removeLockedTaskLocked(tr);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003969
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003970 // If we have a watcher, preflight the move before committing to it. First check
3971 // for *other* available tasks, but if none are available, then try again allowing the
3972 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003973 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003974 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003975 if (next == null) {
3976 next = topRunningActivityLocked(null, 0);
3977 }
3978 if (next != null) {
3979 // ask watcher if this is allowed
3980 boolean moveOK = true;
3981 try {
3982 moveOK = mService.mController.activityResuming(next.packageName);
3983 } catch (RemoteException e) {
3984 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003985 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003986 }
3987 if (!moveOK) {
3988 return false;
3989 }
3990 }
3991 }
3992
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003993 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003994
riddle_hsuc215a4f2014-12-27 12:10:45 +08003995 boolean prevIsHome = false;
Wale Ogunwale42709242015-08-11 13:54:42 -07003996
3997 // If true, we should resume the home activity next if the task we are moving to the
3998 // back is over the home stack. We force to false if the task we are moving to back
3999 // is the home task and we don't want it resumed after moving to the back.
4000 final boolean canGoHome = !tr.isHomeTask() && tr.isOverHomeStack();
4001 if (canGoHome) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08004002 final TaskRecord nextTask = getNextTask(tr);
4003 if (nextTask != null) {
4004 nextTask.setTaskToReturnTo(tr.getTaskToReturnTo());
4005 } else {
4006 prevIsHome = true;
4007 }
4008 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08004009 mTaskHistory.remove(tr);
4010 mTaskHistory.add(0, tr);
Craig Mautner21d24a22014-04-23 11:45:37 -07004011 updateTaskMovement(tr, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004012
Craig Mautnerc8143c62013-09-03 12:15:57 -07004013 // There is an assumption that moving a task to the back moves it behind the home activity.
4014 // We make sure here that some activity in the stack will launch home.
Craig Mautnerc8143c62013-09-03 12:15:57 -07004015 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004016 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
4017 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07004018 if (task.isOverHomeStack()) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07004019 break;
4020 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004021 if (taskNdx == 1) {
4022 // Set the last task before tr to go to home.
Craig Mautner84984fa2014-06-19 11:19:20 -07004023 task.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004024 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07004025 }
4026
Craig Mautner299f9602015-01-26 09:47:33 -08004027 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_TASK_TO_BACK, false);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004028 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08004029
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004030 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08004031 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004032 }
4033
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004034 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
Wale Ogunwale42709242015-08-11 13:54:42 -07004035 if (prevIsHome || (task == tr && canGoHome) || (numTasks <= 1 && isOnHomeDisplay())) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07004036 if (!mService.mBooting && !mService.mBooted) {
4037 // Not ready yet!
4038 return false;
4039 }
Craig Mautner84984fa2014-06-19 11:19:20 -07004040 final int taskToReturnTo = tr.getTaskToReturnTo();
4041 tr.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner299f9602015-01-26 09:47:33 -08004042 return mStackSupervisor.resumeHomeStackTask(taskToReturnTo, null, "moveTaskToBack");
Craig Mautnerde4ef022013-04-07 19:01:33 -07004043 }
4044
Craig Mautner05d29032013-05-03 13:40:13 -07004045 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004046 return true;
4047 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07004048
Craig Mautner8849a5e2013-04-02 16:41:03 -07004049 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004050 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08004051 final Uri data = r.intent.getData();
4052 final String strData = data != null ? data.toSafeString() : null;
4053
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004054 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004055 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004056 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08004057 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004058 }
4059
4060 /**
4061 * Make sure the given activity matches the current configuration. Returns
4062 * false if the activity had to be destroyed. Returns true if the
4063 * configuration is the same, or the activity will remain running as-is
4064 * for whatever reason. Ensures the HistoryRecord is updated with the
4065 * correct configuration and all other bookkeeping is handled.
4066 */
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004067 final boolean ensureActivityConfigurationLocked(ActivityRecord r, int globalChanges,
4068 boolean preserveWindow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004069 if (mConfigWillChange) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004070 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004071 "Skipping config check (will change): " + r);
4072 return true;
4073 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004074
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004075 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004076 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004077
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004078 // Short circuit: if the two configurations are the exact same
4079 // object (the common case), then there is nothing to do.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004080 final Configuration newConfig = mService.mConfiguration;
4081 final Configuration taskConfig = r.task.mOverrideConfig;
Wale Ogunwale60454db2015-01-23 16:05:07 -08004082 if (r.configuration == newConfig
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004083 && r.taskConfigOverride == taskConfig
Wale Ogunwale60454db2015-01-23 16:05:07 -08004084 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004085 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004086 "Configuration unchanged in " + r);
4087 return true;
4088 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004089
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004090 // We don't worry about activities that are finishing.
4091 if (r.finishing) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004092 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004093 "Configuration doesn't matter in finishing " + r);
4094 r.stopFreezingScreenLocked(false);
4095 return true;
4096 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004097
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004098 // Okay we now are going to make this activity have the new config.
4099 // But then we need to figure out how it needs to deal with that.
Wale Ogunwale60454db2015-01-23 16:05:07 -08004100 final Configuration oldConfig = r.configuration;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004101 final Configuration oldTaskOverride = r.taskConfigOverride;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004102 r.configuration = newConfig;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004103 r.taskConfigOverride = taskConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004104
Filip Gruszczynski23493322015-07-29 17:02:59 -07004105 int taskChanges = getTaskConfigurationChanges(r, taskConfig, oldTaskOverride);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004106 final int changes = oldConfig.diff(newConfig) | taskChanges;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004107 if (changes == 0 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004108 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004109 "Configuration no differences in " + r);
Filip Gruszczynskica664812015-12-04 12:43:36 -08004110 // There are no significant differences, so we won't relaunch but should still deliver
4111 // the new configuration to the client process.
4112 r.scheduleConfigurationChanged(taskConfig, false);
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004113 return true;
4114 }
4115
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07004116 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4117 "Configuration changes for " + r + " ; taskChanges="
4118 + Configuration.configurationDiffToString(taskChanges) + ", allChanges="
4119 + Configuration.configurationDiffToString(changes));
4120
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004121 // If the activity isn't currently running, just leave the new
4122 // configuration and it will pick that up next time it starts.
4123 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004124 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004125 "Configuration doesn't matter not running " + r);
4126 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004127 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004128 return true;
4129 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004130
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004131 // Figure out how to handle the changes between the configurations.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004132 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4133 "Checking to restart " + r.info.name + ": changed=0x"
4134 + Integer.toHexString(changes) + ", handles=0x"
Filip Gruszczynskica664812015-12-04 12:43:36 -08004135 + Integer.toHexString(r.info.getRealConfigChanged()) + ", newConfig=" + newConfig
4136 + ", taskConfig=" + taskConfig);
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004137
Dianne Hackborne6676352011-06-01 16:51:20 -07004138 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004139 // Aha, the activity isn't handling the change, so DIE DIE DIE.
4140 r.configChangeFlags |= changes;
4141 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004142 r.forceNewConfig = false;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004143 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004144 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004145 "Config is destroying non-running " + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004146 destroyActivityLocked(r, true, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004147 } else if (r.state == ActivityState.PAUSING) {
4148 // A little annoying: we are waiting for this activity to
4149 // finish pausing. Let's not do anything now, but just
4150 // flag that it needs to be restarted when done pausing.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004151 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004152 "Config is skipping already pausing " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004153 r.configDestroy = true;
4154 return true;
4155 } else if (r.state == ActivityState.RESUMED) {
4156 // Try to optimize this case: the configuration is changing
4157 // and we need to restart the top, resumed activity.
4158 // Instead of doing the normal handshaking, just say
4159 // "restart!".
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004160 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004161 "Config is relaunching resumed " + r);
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004162 relaunchActivityLocked(r, r.configChangeFlags, true,
4163 preserveWindow && isResizeOnlyChange(changes));
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004164 r.configChangeFlags = 0;
4165 } else {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004166 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004167 "Config is relaunching non-resumed " + r);
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004168 relaunchActivityLocked(r, r.configChangeFlags, false,
4169 preserveWindow && isResizeOnlyChange(changes));
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004170 r.configChangeFlags = 0;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004171 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004172
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004173 // All done... tell the caller we weren't able to keep this
4174 // activity around.
4175 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004176 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004177
Wale Ogunwalec2607b42015-02-07 16:16:59 -08004178 // Default case: the activity can handle this new configuration, so hand it over.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004179 // NOTE: We only forward the task override configuration as the system level configuration
Wale Ogunwalec2607b42015-02-07 16:16:59 -08004180 // changes is always sent to all processes when they happen so it can just use whatever
4181 // system level configuration it last got.
Filip Gruszczynskica664812015-12-04 12:43:36 -08004182 r.scheduleConfigurationChanged(taskConfig, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004183 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004184
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004185 return true;
4186 }
4187
Filip Gruszczynski23493322015-07-29 17:02:59 -07004188 private int getTaskConfigurationChanges(ActivityRecord record, Configuration taskConfig,
4189 Configuration oldTaskOverride) {
4190 // Determine what has changed. May be nothing, if this is a config
4191 // that has come back from the app after going idle. In that case
4192 // we just want to leave the official config object now in the
4193 // activity and do nothing else.
4194 int taskChanges = oldTaskOverride.diff(taskConfig);
4195 // We don't want to use size changes if they don't cross boundaries that are important to
4196 // the app.
4197 if ((taskChanges & ActivityInfo.CONFIG_SCREEN_SIZE) != 0) {
4198 final boolean crosses = record.crossesHorizontalSizeThreshold(
4199 oldTaskOverride.screenWidthDp, taskConfig.screenWidthDp)
4200 || record.crossesVerticalSizeThreshold(
4201 oldTaskOverride.screenHeightDp, taskConfig.screenHeightDp);
4202 if (!crosses) {
4203 taskChanges &= ~ActivityInfo.CONFIG_SCREEN_SIZE;
4204 }
4205 }
4206 if ((taskChanges & ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE) != 0) {
4207 final int oldSmallest = oldTaskOverride.smallestScreenWidthDp;
4208 final int newSmallest = taskConfig.smallestScreenWidthDp;
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -07004209 if (!record.crossesSmallestSizeThreshold(oldSmallest, newSmallest)) {
Filip Gruszczynski23493322015-07-29 17:02:59 -07004210 taskChanges &= ~ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE;
4211 }
4212 }
4213 return catchConfigChangesFromUnset(taskConfig, oldTaskOverride, taskChanges);
4214 }
4215
4216 private static int catchConfigChangesFromUnset(Configuration taskConfig,
4217 Configuration oldTaskOverride, int taskChanges) {
4218 if (taskChanges == 0) {
4219 // {@link Configuration#diff} doesn't catch changes from unset values.
4220 // Check for changes we care about.
4221 if (oldTaskOverride.orientation != taskConfig.orientation) {
4222 taskChanges |= ActivityInfo.CONFIG_ORIENTATION;
4223 }
4224 // We want to explicitly track situations where the size configuration goes from
4225 // undefined to defined. We don't care about crossing the threshold in that case,
4226 // because there is no threshold.
4227 final int oldHeight = oldTaskOverride.screenHeightDp;
4228 final int newHeight = taskConfig.screenHeightDp;
4229 final int undefinedHeight = Configuration.SCREEN_HEIGHT_DP_UNDEFINED;
4230 if ((oldHeight == undefinedHeight && newHeight != undefinedHeight)
4231 || (oldHeight != undefinedHeight && newHeight == undefinedHeight)) {
4232 taskChanges |= ActivityInfo.CONFIG_SCREEN_SIZE;
4233 }
4234 final int oldWidth = oldTaskOverride.screenWidthDp;
4235 final int newWidth = taskConfig.screenWidthDp;
4236 final int undefinedWidth = Configuration.SCREEN_WIDTH_DP_UNDEFINED;
4237 if ((oldWidth == undefinedWidth && newWidth != undefinedWidth)
4238 || (oldWidth != undefinedWidth && newWidth == undefinedWidth)) {
4239 taskChanges |= ActivityInfo.CONFIG_SCREEN_SIZE;
4240 }
4241 final int oldSmallest = oldTaskOverride.smallestScreenWidthDp;
4242 final int newSmallest = taskConfig.smallestScreenWidthDp;
4243 final int undefinedSmallest = Configuration.SMALLEST_SCREEN_WIDTH_DP_UNDEFINED;
4244 if ((oldSmallest == undefinedSmallest && newSmallest != undefinedSmallest)
4245 || (oldSmallest != undefinedSmallest && newSmallest == undefinedSmallest)) {
4246 taskChanges |= ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE;
4247 }
4248 }
4249 return taskChanges;
4250 }
4251
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004252 private static boolean isResizeOnlyChange(int change) {
4253 return (change & ~(ActivityInfo.CONFIG_SCREEN_SIZE
4254 | ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE | ActivityInfo.CONFIG_ORIENTATION)) == 0;
4255 }
4256
Wale Ogunwale83301a92015-09-24 15:54:08 -07004257 private void relaunchActivityLocked(
4258 ActivityRecord r, int changes, boolean andResume, boolean preserveWindow) {
4259 if (mService.mSuppressResizeConfigChanges && preserveWindow) {
4260 return;
4261 }
4262
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004263 List<ResultInfo> results = null;
Dianne Hackborn85d558c2014-11-04 10:31:54 -08004264 List<ReferrerIntent> newIntents = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004265 if (andResume) {
4266 results = r.results;
4267 newIntents = r.newIntents;
4268 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004269 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
4270 "Relaunching: " + r + " with results=" + results + " newIntents=" + newIntents
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004271 + " andResume=" + andResume + " preserveWindow=" + preserveWindow);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004272 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004273 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004274 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004275
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004276 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004277
Craig Mautner34b73df2014-01-12 21:11:08 -08004278 mStackSupervisor.removeChildActivityContainers(r);
4279
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004280 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004281 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH,
4282 "Moving to " + (andResume ? "RESUMED" : "PAUSED") + " Relaunching " + r);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004283 r.forceNewConfig = false;
Wale Ogunwale60454db2015-01-23 16:05:07 -08004284 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents, changes,
4285 !andResume, new Configuration(mService.mConfiguration),
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004286 new Configuration(r.task.mOverrideConfig), preserveWindow);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004287 // Note: don't need to call pauseIfSleepingLocked() here, because
4288 // the caller will only pass in 'andResume' if this activity is
4289 // currently resumed, which implies we aren't sleeping.
4290 } catch (RemoteException e) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004291 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004292 }
4293
4294 if (andResume) {
4295 r.results = null;
4296 r.newIntents = null;
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004297 r.state = ActivityState.RESUMED;
4298 } else {
4299 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
4300 r.state = ActivityState.PAUSED;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004301 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004302 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004303
4304 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004305 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4306 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4307 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4308 final ActivityRecord r = activities.get(activityNdx);
4309 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08004310 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08004311 }
4312 if (r.fullscreen && !r.finishing) {
4313 return false;
4314 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004315 }
4316 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07004317 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautner34b73df2014-01-12 21:11:08 -08004318 if (r == null) {
4319 return false;
4320 }
4321 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
4322 + " would have returned true for r=" + r);
4323 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08004324 }
4325
4326 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004327 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4328 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4329 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4330 final ActivityRecord r = activities.get(activityNdx);
4331 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004332 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004333 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004334 }
4335 }
4336 }
4337
Wale Ogunwale540e1232015-05-01 15:35:39 -07004338 boolean finishDisabledPackageActivitiesLocked(String packageName, Set<String> filterByClasses,
4339 boolean doit, boolean evenPersistent, int userId) {
Craig Mautnercae015f2013-02-08 14:31:27 -08004340 boolean didSomething = false;
4341 TaskRecord lastTask = null;
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004342 ComponentName homeActivity = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08004343 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4344 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4345 int numActivities = activities.size();
4346 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
4347 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004348 final boolean sameComponent =
4349 (r.packageName.equals(packageName) && (filterByClasses == null
4350 || filterByClasses.contains(r.realActivity.getClassName())))
4351 || (packageName == null && r.userId == userId);
Craig Mautner56f52db2013-02-25 10:03:01 -08004352 if ((userId == UserHandle.USER_ALL || r.userId == userId)
Wale Ogunwale540e1232015-05-01 15:35:39 -07004353 && (sameComponent || r.task == lastTask)
Craig Mautner56f52db2013-02-25 10:03:01 -08004354 && (r.app == null || evenPersistent || !r.app.persistent)) {
4355 if (!doit) {
4356 if (r.finishing) {
4357 // If this activity is just finishing, then it is not
4358 // interesting as far as something to stop.
4359 continue;
4360 }
4361 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08004362 }
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004363 if (r.isHomeActivity()) {
4364 if (homeActivity != null && homeActivity.equals(r.realActivity)) {
4365 Slog.i(TAG, "Skip force-stop again " + r);
4366 continue;
4367 } else {
4368 homeActivity = r.realActivity;
4369 }
4370 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004371 didSomething = true;
4372 Slog.i(TAG, " Force finishing activity " + r);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004373 if (sameComponent) {
Craig Mautner56f52db2013-02-25 10:03:01 -08004374 if (r.app != null) {
4375 r.app.removed = true;
4376 }
4377 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08004378 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004379 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07004380 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
4381 true)) {
4382 // r has been deleted from mActivities, accommodate.
4383 --numActivities;
4384 --activityNdx;
4385 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004386 }
4387 }
4388 }
4389 return didSomething;
4390 }
4391
Dianne Hackborn09233282014-04-30 11:33:59 -07004392 void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
riddle_hsuddc74152015-04-07 11:30:09 +08004393 boolean focusedStack = mStackSupervisor.getFocusedStack() == this;
4394 boolean topTask = true;
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004395 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004396 final TaskRecord task = mTaskHistory.get(taskNdx);
riddle_hsuddc74152015-04-07 11:30:09 +08004397 if (task.getTopActivity() == null) {
4398 continue;
4399 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004400 ActivityRecord r = null;
4401 ActivityRecord top = null;
Wale Ogunwale6035e012015-04-14 15:54:10 -07004402 ActivityRecord tmp;
Craig Mautneraab647e2013-02-28 16:31:36 -08004403 int numActivities = 0;
4404 int numRunning = 0;
4405 final ArrayList<ActivityRecord> activities = task.mActivities;
Dianne Hackborn885fbe52014-08-23 15:23:58 -07004406 if (!allowed && !task.isHomeTask() && task.effectiveUid != callingUid) {
Dianne Hackborn09233282014-04-30 11:33:59 -07004407 continue;
4408 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004409 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Wale Ogunwale6035e012015-04-14 15:54:10 -07004410 tmp = activities.get(activityNdx);
4411 if (tmp.finishing) {
4412 continue;
4413 }
4414 r = tmp;
Craig Mautnercae015f2013-02-08 14:31:27 -08004415
Craig Mautneraab647e2013-02-28 16:31:36 -08004416 // Initialize state for next task if needed.
4417 if (top == null || (top.state == ActivityState.INITIALIZING)) {
4418 top = r;
4419 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08004420 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004421
4422 // Add 'r' into the current task.
4423 numActivities++;
4424 if (r.app != null && r.app.thread != null) {
4425 numRunning++;
4426 }
4427
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004428 if (DEBUG_ALL) Slog.v(
Craig Mautneraab647e2013-02-28 16:31:36 -08004429 TAG, r.intent.getComponent().flattenToShortString()
4430 + ": task=" + r.task);
4431 }
4432
4433 RunningTaskInfo ci = new RunningTaskInfo();
4434 ci.id = task.taskId;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07004435 ci.stackId = mStackId;
Craig Mautneraab647e2013-02-28 16:31:36 -08004436 ci.baseActivity = r.intent.getComponent();
4437 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004438 ci.lastActiveTime = task.lastActiveTime;
riddle_hsuddc74152015-04-07 11:30:09 +08004439 if (focusedStack && topTask) {
4440 // Give the latest time to ensure foreground task can be sorted
4441 // at the first, because lastActiveTime of creating task is 0.
4442 ci.lastActiveTime = System.currentTimeMillis();
4443 topTask = false;
4444 }
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004445
Craig Mautnerc0ffce52014-07-01 12:38:52 -07004446 if (top.task != null) {
4447 ci.description = top.task.lastDescription;
Craig Mautneraab647e2013-02-28 16:31:36 -08004448 }
4449 ci.numActivities = numActivities;
4450 ci.numRunning = numRunning;
Craig Mautneraab647e2013-02-28 16:31:36 -08004451 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08004452 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004453 }
4454
4455 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08004456 final int top = mTaskHistory.size() - 1;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004457 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08004458 if (top >= 0) {
4459 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
4460 int activityTop = activities.size() - 1;
4461 if (activityTop > 0) {
4462 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
4463 "unhandled-back", true);
4464 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004465 }
4466 }
4467
Craig Mautner6b74cb52013-09-27 17:02:21 -07004468 /**
4469 * Reset local parameters because an app's activity died.
4470 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07004471 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07004472 */
4473 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07004474 if (mPausingActivity != null && mPausingActivity.app == app) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004475 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG_PAUSE,
Craig Mautnere79d42682013-04-01 19:01:53 -07004476 "App died while pausing: " + mPausingActivity);
4477 mPausingActivity = null;
4478 }
4479 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
4480 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07004481 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07004482 }
4483
Craig Mautner19091252013-10-05 00:03:53 -07004484 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07004485 }
4486
Craig Mautnercae015f2013-02-08 14:31:27 -08004487 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004488 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4489 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4490 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4491 final ActivityRecord r = activities.get(activityNdx);
4492 if (r.app == app) {
4493 Slog.w(TAG, " Force finishing activity "
4494 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07004495 // Force the destroy to skip right to removal.
4496 r.app = null;
4497 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004498 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004499 }
4500 }
4501 }
4502
Dianne Hackborn390517b2013-05-30 15:03:32 -07004503 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004504 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07004505 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08004506 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4507 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07004508 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
4509 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004510 dumpClient, dumpPackage, needSep, header,
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07004511 " Task id #" + task.taskId + "\n" +
4512 " mFullscreen=" + task.mFullscreen + "\n" +
4513 " mBounds=" + task.mBounds + "\n" +
4514 " mLastNonFullscreenBounds=" + task.mLastNonFullscreenBounds);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004515 if (printed) {
4516 header = null;
4517 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004518 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07004519 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08004520 }
4521
4522 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
4523 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
4524
4525 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004526 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4527 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08004528 }
4529 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004530 final int top = mTaskHistory.size() - 1;
4531 if (top >= 0) {
4532 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
4533 int listTop = list.size() - 1;
4534 if (listTop >= 0) {
4535 activities.add(list.get(listTop));
4536 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004537 }
4538 } else {
4539 ItemMatcher matcher = new ItemMatcher();
4540 matcher.build(name);
4541
Craig Mautneraab647e2013-02-28 16:31:36 -08004542 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4543 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
4544 if (matcher.match(r1, r1.intent.getComponent())) {
4545 activities.add(r1);
4546 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004547 }
4548 }
4549 }
4550
4551 return activities;
4552 }
4553
4554 ActivityRecord restartPackage(String packageName) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07004555 ActivityRecord starting = topRunningActivityLocked();
Craig Mautnercae015f2013-02-08 14:31:27 -08004556
4557 // All activities that came from the package must be
4558 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08004559 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4560 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4561 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4562 final ActivityRecord a = activities.get(activityNdx);
4563 if (a.info.packageName.equals(packageName)) {
4564 a.forceNewConfig = true;
4565 if (starting != null && a == starting && a.visible) {
4566 a.startFreezingScreenLocked(starting.app,
4567 ActivityInfo.CONFIG_SCREEN_LAYOUT);
4568 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004569 }
4570 }
4571 }
4572
4573 return starting;
4574 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004575
Craig Mautner299f9602015-01-26 09:47:33 -08004576 void removeTask(TaskRecord task, String reason) {
Wale Ogunwale040b4702015-08-06 18:10:50 -07004577 removeTask(task, reason, !MOVING);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004578 }
4579
Wale Ogunwale000957c2015-04-03 08:19:12 -07004580 /**
4581 * Removes the input task from this stack.
4582 * @param task to remove.
4583 * @param reason for removal.
Wale Ogunwale040b4702015-08-06 18:10:50 -07004584 * @param moving task to another stack. In the case we are moving we don't want to perform
4585 * some operations on the task like removing it from window manager or recents.
Wale Ogunwale000957c2015-04-03 08:19:12 -07004586 */
Wale Ogunwale040b4702015-08-06 18:10:50 -07004587 void removeTask(TaskRecord task, String reason, boolean moving) {
4588 if (!moving) {
Craig Mautner15df08a2015-04-01 12:17:18 -07004589 mStackSupervisor.removeLockedTaskLocked(task);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004590 mWindowManager.removeTask(task.taskId);
Wale Ogunwaleb317b222015-11-09 11:14:10 -08004591 if (!StackId.persistTaskBounds(mStackId)) {
4592 // Reset current bounds for task whose bounds shouldn't be persisted so it uses
4593 // default configuration the next time it launches.
4594 task.updateOverrideConfiguration(null);
4595 }
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004596 }
Wale Ogunwale000957c2015-04-03 08:19:12 -07004597
Craig Mautner04a0ea62014-01-13 12:51:26 -08004598 final ActivityRecord r = mResumedActivity;
4599 if (r != null && r.task == task) {
4600 mResumedActivity = null;
4601 }
4602
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004603 final int taskNdx = mTaskHistory.indexOf(task);
4604 final int topTaskNdx = mTaskHistory.size() - 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07004605 if (task.isOverHomeStack() && taskNdx < topTaskNdx) {
4606 final TaskRecord nextTask = mTaskHistory.get(taskNdx + 1);
4607 if (!nextTask.isOverHomeStack()) {
4608 nextTask.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
4609 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004610 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004611 mTaskHistory.remove(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004612 updateTaskMovement(task, true);
Craig Mautner41db4a72014-05-07 17:20:56 -07004613
Wale Ogunwale040b4702015-08-06 18:10:50 -07004614 if (!moving && task.mActivities.isEmpty()) {
Craig Mautner41db4a72014-05-07 17:20:56 -07004615 final boolean isVoiceSession = task.voiceSession != null;
4616 if (isVoiceSession) {
4617 try {
4618 task.voiceSession.taskFinished(task.intent, task.taskId);
4619 } catch (RemoteException e) {
4620 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004621 }
Craig Mautner41db4a72014-05-07 17:20:56 -07004622 if (task.autoRemoveFromRecents() || isVoiceSession) {
4623 // Task creator asked to remove this when done, or this task was a voice
4624 // interaction, so it should not remain on the recent tasks list.
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08004625 mRecentTasks.remove(task);
Winson Chung740c3ac2014-11-12 16:14:38 -08004626 task.removedFromRecents();
Craig Mautner41db4a72014-05-07 17:20:56 -07004627 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07004628 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004629
4630 if (mTaskHistory.isEmpty()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004631 if (DEBUG_STACK) Slog.i(TAG_STACK, "removeTask: removing stack=" + this);
Chong Zhanga8be5e52015-10-05 17:06:28 -07004632 // We only need to adjust focused stack if this stack is in focus.
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07004633 if (isOnHomeDisplay() && mStackSupervisor.isFocusedStack(this)) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08004634 String myReason = reason + " leftTaskHistoryEmpty";
4635 if (mFullscreen || !adjustFocusToNextVisibleStackLocked(null, myReason)) {
Wale Ogunwale925d0d12015-09-23 15:40:07 -07004636 mStackSupervisor.moveHomeStackToFront(myReason);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08004637 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004638 }
Craig Mautner593a4e62014-01-15 17:55:51 -08004639 if (mStacks != null) {
4640 mStacks.remove(this);
4641 mStacks.add(0, this);
4642 }
Wale Ogunwale925d0d12015-09-23 15:40:07 -07004643 if (!isHomeStack()) {
Wale Ogunwale49853bf2015-02-23 09:24:42 -08004644 mActivityContainer.onTaskListEmptyLocked();
4645 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004646 }
Wale Ogunwale04f4d6b2015-03-11 09:23:25 -07004647
4648 task.stack = null;
Craig Mautner0247fc82013-02-28 14:32:06 -08004649 }
4650
Dianne Hackborn91097de2014-04-04 18:02:06 -07004651 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
4652 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
4653 boolean toTop) {
Craig Mautner21d24a22014-04-23 11:45:37 -07004654 TaskRecord task = new TaskRecord(mService, taskId, info, intent, voiceSession,
4655 voiceInteractor);
Chong Zhang0fa656b2015-08-31 15:17:21 -07004656 // add the task to stack first, mTaskPositioner might need the stack association
Wale Ogunwale5f986092015-12-04 15:35:38 -08004657 addTask(task, toTop, "createTaskRecord");
Chong Zhang75b37202015-12-04 14:16:36 -08004658 final boolean isLockscreenShown = mService.mLockScreenShown == LOCK_SCREEN_SHOWN;
4659 if (!layoutTaskInStack(task, info.layout) && mBounds != null && task.mResizeable
4660 && !isLockscreenShown) {
Wale Ogunwalea6e902e2015-09-21 18:37:15 -07004661 task.updateOverrideConfiguration(mBounds);
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07004662 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004663 return task;
4664 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004665
Wale Ogunwale935e5022015-11-10 12:36:10 -08004666 boolean layoutTaskInStack(TaskRecord task, ActivityInfo.Layout layout) {
4667 if (mTaskPositioner == null) {
4668 return false;
4669 }
4670 mTaskPositioner.updateDefaultBounds(task, mTaskHistory, layout);
4671 return true;
4672 }
4673
Craig Mautnerc00204b2013-03-05 15:02:14 -08004674 ArrayList<TaskRecord> getAllTasks() {
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08004675 return new ArrayList<>(mTaskHistory);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004676 }
4677
Wale Ogunwale5f986092015-12-04 15:35:38 -08004678 void addTask(final TaskRecord task, final boolean toTop, String reason) {
4679 final ActivityStack prevStack = preAddTask(task, reason);
4680
Craig Mautnerc00204b2013-03-05 15:02:14 -08004681 task.stack = this;
4682 if (toTop) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07004683 insertTaskAtTop(task, null);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004684 } else {
4685 mTaskHistory.add(0, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004686 updateTaskMovement(task, false);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004687 }
Wale Ogunwale5f986092015-12-04 15:35:38 -08004688 postAddTask(task, prevStack);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004689 }
4690
Wale Ogunwale5f986092015-12-04 15:35:38 -08004691 void positionTask(final TaskRecord task, int position) {
4692 final ActivityStack prevStack = preAddTask(task, "positionTask");
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07004693 task.stack = this;
4694 insertTaskAtPosition(task, position);
Wale Ogunwale5f986092015-12-04 15:35:38 -08004695 postAddTask(task, prevStack);
4696 }
4697
4698 private ActivityStack preAddTask(TaskRecord task, String reason) {
4699 final ActivityStack prevStack = task.stack;
4700 if (prevStack != null && prevStack != this) {
4701 prevStack.removeTask(task, reason, MOVING);
4702 }
4703 return prevStack;
4704 }
4705
4706 private void postAddTask(TaskRecord task, ActivityStack prevStack) {
4707 if (prevStack != null) {
4708 if (prevStack != this
4709 && (prevStack.mStackId == PINNED_STACK_ID || mStackId == PINNED_STACK_ID)) {
4710 task.reportPictureInPictureModeChange();
4711 }
4712 } else if (task.voiceSession != null) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07004713 try {
4714 task.voiceSession.taskStarted(task.intent, task.taskId);
4715 } catch (RemoteException e) {
4716 }
4717 }
4718 }
4719
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07004720 void addConfigOverride(ActivityRecord r, TaskRecord task) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07004721 final Rect bounds = task.getLaunchBounds();
Chong Zhang0fa656b2015-08-31 15:17:21 -07004722 task.updateOverrideConfiguration(bounds);
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07004723 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
4724 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
4725 (r.info.flags & ActivityInfo.FLAG_SHOW_FOR_ALL_USERS) != 0, r.userId,
4726 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind,
Wale Ogunwale61b009e2015-09-16 15:43:05 -07004727 bounds, task.mOverrideConfig, !r.isHomeActivity());
Chong Zhangb15758a2015-11-17 12:12:03 -08004728 mWindowManager.setTaskResizeable(task.taskId, task.mResizeable);
Wale Ogunwale706ed792015-08-02 10:29:44 -07004729 r.taskConfigOverride = task.mOverrideConfig;
4730 }
4731
Wale Ogunwale079a0042015-10-24 11:44:07 -07004732 void setFocusAndResumeStateIfNeeded(
4733 ActivityRecord r, boolean setFocus, boolean setResume, String reason) {
4734 // If the activity had focus before move focus to this stack.
4735 if (setFocus) {
4736 // If the activity owns the last resumed activity, transfer that together,
4737 // so that we don't resume the same activity again in the new stack.
4738 // Apps may depend on onResume()/onPause() being called in pairs.
4739 if (setResume) {
4740 mResumedActivity = r;
4741 // Move the stack in which we are placing the activity to the front. We don't use
4742 // ActivityManagerService.setFocusedActivityLocked, because if the activity is
4743 // already focused, the call will short-circuit and do nothing.
4744 moveToFront(reason);
4745 } else {
4746 // We need to not only move the stack to the front, but also have the activity
4747 // focused. This will achieve both goals.
4748 mService.setFocusedActivityLocked(r, reason);
4749 }
4750 }
4751 }
4752
4753 /**
4754 * Moves the input activity from its current stack to this one.
4755 * NOTE: The current task of the activity isn't moved to this stack. Instead a new task is
4756 * created on this stack which the activity is added to.
4757 * */
4758 void moveActivityToStack(ActivityRecord r) {
4759 final ActivityStack prevStack = r.task.stack;
4760 if (prevStack.mStackId == mStackId) {
4761 // You are already in the right stack silly...
4762 return;
4763 }
4764
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07004765 final boolean wasFocused = mStackSupervisor.isFocusedStack(prevStack)
Wale Ogunwale079a0042015-10-24 11:44:07 -07004766 && (mStackSupervisor.topRunningActivityLocked() == r);
4767 final boolean wasResumed = wasFocused && (prevStack.mResumedActivity == r);
4768
4769 final TaskRecord task = createTaskRecord(
4770 mStackSupervisor.getNextTaskId(), r.info, r.intent, null, null, true);
4771 r.setTask(task, null);
4772 task.addActivityToTop(r);
4773 setAppTask(r, task);
Wale Ogunwale5f986092015-12-04 15:35:38 -08004774 task.reportPictureInPictureModeChange();
Wale Ogunwale079a0042015-10-24 11:44:07 -07004775 setFocusAndResumeStateIfNeeded(r, wasFocused, wasResumed, "moveActivityToStack");
4776 }
4777
Wale Ogunwale706ed792015-08-02 10:29:44 -07004778 private void setAppTask(ActivityRecord r, TaskRecord task) {
4779 final Rect bounds = task.getLaunchBounds();
Chong Zhang0fa656b2015-08-31 15:17:21 -07004780 task.updateOverrideConfiguration(bounds);
4781 mWindowManager.setAppTask(
Wale Ogunwale2998eef2015-12-02 19:46:29 -08004782 r.appToken, task.taskId, mStackId, task.getLaunchBounds(), task.mOverrideConfig);
Chong Zhangb15758a2015-11-17 12:12:03 -08004783 mWindowManager.setTaskResizeable(task.taskId, task.mResizeable);
Wale Ogunwale706ed792015-08-02 10:29:44 -07004784 r.taskConfigOverride = task.mOverrideConfig;
4785 }
4786
Craig Mautnerc00204b2013-03-05 15:02:14 -08004787 public int getStackId() {
4788 return mStackId;
4789 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004790
4791 @Override
4792 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07004793 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
4794 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07004795 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08004796
Craig Mautner15df08a2015-04-01 12:17:18 -07004797 void onLockTaskPackagesUpdatedLocked() {
4798 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4799 mTaskHistory.get(taskNdx).setLockTaskAuth();
4800 }
4801 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004802}