blob: 30ee214e2f3beeeaba65e7086ab2fa4b8e6c5798 [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 Ogunwale6dfdfd62015-04-15 12:01:38 -070019import static android.content.pm.ActivityInfo.FLAG_SHOW_FOR_ALL_USERS;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -070020
Wale Ogunwalee23149f2015-03-06 15:39:44 -080021import static com.android.server.am.ActivityManagerDebugConfig.*;
Craig Mautner0eea92c2013-05-16 13:35:39 -070022
Craig Mautner84984fa2014-06-19 11:19:20 -070023import static com.android.server.am.ActivityRecord.HOME_ACTIVITY_TYPE;
24import static com.android.server.am.ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Craig Mautner84984fa2014-06-19 11:19:20 -070025
Craig Mautnerde4ef022013-04-07 19:01:33 -070026import static com.android.server.am.ActivityStackSupervisor.HOME_STACK_ID;
27
Dianne Hackborn89ad4562014-08-24 16:45:38 -070028import android.util.ArraySet;
Dianne Hackborn91097de2014-04-04 18:02:06 -070029import com.android.internal.app.IVoiceInteractor;
Dianne Hackborn85d558c2014-11-04 10:31:54 -080030import com.android.internal.content.ReferrerIntent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070031import com.android.internal.os.BatteryStatsImpl;
Kenny Rootadd58212013-05-07 09:47:34 -070032import com.android.server.Watchdog;
Craig Mautnercae015f2013-02-08 14:31:27 -080033import com.android.server.am.ActivityManagerService.ItemMatcher;
Craig Mautner4a1cb222013-12-04 16:14:06 -080034import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
Craig Mautner4b71aa12012-12-27 17:20:01 -080035import com.android.server.wm.AppTransition;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080036import com.android.server.wm.TaskGroup;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -070037import com.android.server.wm.WindowManagerService;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070038
39import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070040import android.app.ActivityManager;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070041import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070042import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080043import android.app.IActivityController;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070044import android.app.ResultInfo;
Craig Mautnercae015f2013-02-08 14:31:27 -080045import android.app.ActivityManager.RunningTaskInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070046import android.content.ComponentName;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070047import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070048import android.content.pm.ActivityInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070049import android.content.pm.PackageManager;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070050import android.content.res.Configuration;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080051import android.graphics.Bitmap;
Santos Cordon73ff7d82013-03-06 17:24:11 -080052import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070053import android.os.Binder;
Dianne Hackbornce86ba82011-07-13 19:33:41 -070054import android.os.Bundle;
Craig Mautner329f4122013-11-07 09:10:42 -080055import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070056import android.os.Handler;
57import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +090058import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070059import android.os.Message;
Craig Mautnera0026042014-04-23 11:45:37 -070060import android.os.PersistableBundle;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070061import android.os.RemoteException;
62import android.os.SystemClock;
Craig Mautner329f4122013-11-07 09:10:42 -080063import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070064import android.os.UserHandle;
Craig Mautner4c07d022014-06-11 17:12:59 -070065import android.service.voice.IVoiceInteractionSession;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070066import android.util.EventLog;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070067import android.util.Slog;
Craig Mautner59c00972012-07-30 12:10:24 -070068import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070069
Craig Mautnercae015f2013-02-08 14:31:27 -080070import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -080071import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070072import java.lang.ref.WeakReference;
73import java.util.ArrayList;
74import java.util.Iterator;
75import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -080076import java.util.Objects;
Wale Ogunwale540e1232015-05-01 15:35:39 -070077import java.util.Set;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070078
79/**
80 * State and management of a single stack of activities.
81 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070082final class ActivityStack {
Craig Mautner5d9c7be2013-02-15 14:02:56 -080083
Wale Ogunwalee23149f2015-03-06 15:39:44 -080084 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityStack" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070085 private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
86 private static final String TAG_APP = TAG + POSTFIX_APP;
Wale Ogunwalee23149f2015-03-06 15:39:44 -080087 private static final String TAG_CLEANUP = TAG + POSTFIX_CLEANUP;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -070088 private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070089 private static final String TAG_CONTAINERS = TAG + POSTFIX_CONTAINERS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070090 private static final String TAG_PAUSE = TAG + POSTFIX_PAUSE;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070091 private static final String TAG_RELEASE = TAG + POSTFIX_RELEASE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070092 private static final String TAG_RESULTS = TAG + POSTFIX_RESULTS;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070093 private static final String TAG_SAVED_STATE = TAG + POSTFIX_SAVED_STATE;
94 private static final String TAG_SCREENSHOTS = TAG + POSTFIX_SCREENSHOTS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070095 private static final String TAG_STACK = TAG + POSTFIX_STACK;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070096 private static final String TAG_STATES = TAG + POSTFIX_STATES;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070097 private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
98 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
99 private static final String TAG_TRANSITION = TAG + POSTFIX_TRANSITION;
100 private static final String TAG_USER_LEAVING = TAG + POSTFIX_USER_LEAVING;
101 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700102
103 private static final boolean VALIDATE_TOKENS = false;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800104
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700105 // Ticks during which we check progress while waiting for an app to launch.
106 static final int LAUNCH_TICK = 500;
107
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700108 // How long we wait until giving up on the last activity to pause. This
109 // is short because it directly impacts the responsiveness of starting the
110 // next activity.
111 static final int PAUSE_TIMEOUT = 500;
112
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700113 // How long we wait for the activity to tell us it has stopped before
114 // giving up. This is a good amount of time because we really need this
115 // from the application in order to get its saved state.
116 static final int STOP_TIMEOUT = 10*1000;
117
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700118 // How long we wait until giving up on an activity telling us it has
119 // finished destroying itself.
120 static final int DESTROY_TIMEOUT = 10*1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800121
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700122 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800123 // disabled.
124 static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800125
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700126 // How long between activity launches that we consider safe to not warn
127 // the user about an unexpected activity being launched on top.
128 static final long START_WARN_TIME = 5*1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800129
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700130 // Set to false to disable the preview that is shown while a new activity
131 // is being started.
132 static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800133
Craig Mautner5eda9b32013-07-02 11:58:16 -0700134 // How long to wait for all background Activities to redraw following a call to
135 // convertToTranslucent().
136 static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
137
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700138 enum ActivityState {
139 INITIALIZING,
140 RESUMED,
141 PAUSING,
142 PAUSED,
143 STOPPING,
144 STOPPED,
145 FINISHING,
146 DESTROYING,
147 DESTROYED
148 }
149
150 final ActivityManagerService mService;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700151 final WindowManagerService mWindowManager;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800152 private final RecentTasks mRecentTasks;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800153
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700154 /**
155 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800156 * running) activities. It contains #TaskRecord objects.
157 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800158 private ArrayList<TaskRecord> mTaskHistory = new ArrayList<>();
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800159
160 /**
Dianne Hackbornbe707852011-11-11 14:32:10 -0800161 * Used for validating app tokens with window manager.
162 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800163 final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<>();
Dianne Hackbornbe707852011-11-11 14:32:10 -0800164
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700165 /**
166 * List of running activities, sorted by recent usage.
167 * The first entry in the list is the least recently used.
168 * It contains HistoryRecord objects.
169 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800170 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700171
172 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700173 * Animations that for the current transition have requested not to
174 * be considered for the transition animation.
175 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800176 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700177
178 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700179 * When we are in the process of pausing an activity, before starting the
180 * next one, this variable holds the activity that is currently being paused.
181 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800182 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700183
184 /**
185 * This is the last activity that we put into the paused state. This is
186 * used to determine if we need to do an activity transition while sleeping,
187 * when we normally hold the top activity paused.
188 */
189 ActivityRecord mLastPausedActivity = null;
190
191 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700192 * Activities that specify No History must be removed once the user navigates away from them.
193 * If the device goes to sleep with such an activity in the paused state then we save it here
194 * and finish it later if another activity replaces it on wakeup.
195 */
196 ActivityRecord mLastNoHistoryActivity = null;
197
198 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700199 * Current activity that is resumed, or null if there is none.
200 */
201 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800202
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700203 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700204 * This is the last activity that has been started. It is only used to
205 * identify when multiple activities are started at once so that the user
206 * can be warned they may not be in the activity they think they are.
207 */
208 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800209
Craig Mautner5eda9b32013-07-02 11:58:16 -0700210 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
211 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
212 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
213 // Activity in mTranslucentActivityWaiting is notified via
214 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
215 // background activity being drawn then the same call will be made with a true value.
216 ActivityRecord mTranslucentActivityWaiting = null;
Craig Mautnereb8abf72014-07-02 15:04:09 -0700217 private ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent =
Craig Mautner5eda9b32013-07-02 11:58:16 -0700218 new ArrayList<ActivityRecord>();
219
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700220 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700221 * Set when we know we are going to be calling updateConfiguration()
222 * soon, so want to skip intermediate config checks.
223 */
224 boolean mConfigWillChange;
225
Todd Kennedyaab56db2015-01-30 09:39:53 -0800226 // Whether or not this stack covers the entire screen; by default stacks are full screen
227 boolean mFullscreen = true;
228
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700229 long mLaunchStartTime = 0;
230 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800231
Craig Mautner858d8a62013-04-23 17:08:34 -0700232 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700233
Craig Mautnerc00204b2013-03-05 15:02:14 -0800234 final int mStackId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800235 final ActivityContainer mActivityContainer;
Craig Mautnere0a38842013-12-16 16:14:02 -0800236 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
237 ArrayList<ActivityStack> mStacks;
238 /** The attached Display's unique identifier, or -1 if detached */
239 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800240
Craig Mautner27084302013-03-25 08:05:25 -0700241 /** Run all ActivityStacks through this */
242 final ActivityStackSupervisor mStackSupervisor;
243
Wale Ogunwale60454db2015-01-23 16:05:07 -0800244 Configuration mOverrideConfig;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800245 /** True if the stack was forced to full screen because {@link TaskRecord#mResizeable} is false
246 * and the stack was previously resized. */
247 private boolean mForcedFullscreen = false;
Wale Ogunwale60454db2015-01-23 16:05:07 -0800248
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700249 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700250 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
251 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
252 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
253 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700254 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Jose Lima4b6c6692014-08-12 17:41:12 -0700255 static final int RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG =
Craig Mautneree2e45a2014-06-27 12:10:03 -0700256 ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 7;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700257
258 static class ScheduleDestroyArgs {
259 final ProcessRecord mOwner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700260 final String mReason;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700261 ScheduleDestroyArgs(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700262 mOwner = owner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700263 mReason = reason;
264 }
265 }
266
Zoran Marcetaf958b322012-08-09 20:27:12 +0900267 final Handler mHandler;
268
269 final class ActivityStackHandler extends Handler {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800270
Craig Mautnerc8143c62013-09-03 12:15:57 -0700271 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900272 super(looper);
273 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700274
Zoran Marcetaf958b322012-08-09 20:27:12 +0900275 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700276 public void handleMessage(Message msg) {
277 switch (msg.what) {
278 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800279 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700280 // We don't at this point know if the activity is fullscreen,
281 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800282 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700283 synchronized (mService) {
284 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700285 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700286 }
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700287 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800288 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700289 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700290 case LAUNCH_TICK_MSG: {
291 ActivityRecord r = (ActivityRecord)msg.obj;
292 synchronized (mService) {
293 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700294 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700295 }
296 }
297 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700298 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800299 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700300 // We don't at this point know if the activity is fullscreen,
301 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800302 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800303 synchronized (mService) {
Craig Mautner299f9602015-01-26 09:47:33 -0800304 activityDestroyedLocked(r != null ? r.appToken : null, "destroyTimeout");
Craig Mautnerd2328952013-03-05 12:46:26 -0800305 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700306 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700307 case STOP_TIMEOUT_MSG: {
308 ActivityRecord r = (ActivityRecord)msg.obj;
309 // We don't at this point know if the activity is fullscreen,
310 // so we need to be conservative and assume it isn't.
311 Slog.w(TAG, "Activity stop timeout for " + r);
312 synchronized (mService) {
313 if (r.isInHistory()) {
314 activityStoppedLocked(r, null, null, null);
315 }
316 }
317 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700318 case DESTROY_ACTIVITIES_MSG: {
319 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
320 synchronized (mService) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700321 destroyActivitiesLocked(args.mOwner, args.mReason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700322 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700323 } break;
324 case TRANSLUCENT_TIMEOUT_MSG: {
325 synchronized (mService) {
326 notifyActivityDrawnLocked(null);
327 }
328 } break;
Jose Lima4b6c6692014-08-12 17:41:12 -0700329 case RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG: {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700330 synchronized (mService) {
Jose Lima4b6c6692014-08-12 17:41:12 -0700331 final ActivityRecord r = getVisibleBehindActivity();
332 Slog.e(TAG, "Timeout waiting for cancelVisibleBehind player=" + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700333 if (r != null) {
334 mService.killAppAtUsersRequest(r.app, null);
335 }
336 }
337 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700338 }
339 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800340 }
341
Craig Mautner34b73df2014-01-12 21:11:08 -0800342 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800343 int count = 0;
344 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
345 count += mTaskHistory.get(taskNdx).mActivities.size();
346 }
347 return count;
348 }
349
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800350 int numTasks() {
351 return mTaskHistory.size();
352 }
353
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800354 ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer,
355 RecentTasks recentTasks) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800356 mActivityContainer = activityContainer;
357 mStackSupervisor = activityContainer.getOuter();
358 mService = mStackSupervisor.mService;
359 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
360 mWindowManager = mService.mWindowManager;
361 mStackId = activityContainer.mStackId;
362 mCurrentUser = mService.mCurrentUserId;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800363 mRecentTasks = recentTasks;
Wale Ogunwale60454db2015-01-23 16:05:07 -0800364 mOverrideConfig = Configuration.EMPTY;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700365 }
Craig Mautner5962b122012-10-05 14:45:52 -0700366
Amith Yamasani734983f2014-03-04 16:48:05 -0800367 boolean okToShowLocked(ActivityRecord r) {
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700368 return mStackSupervisor.isCurrentProfileLocked(r.userId)
369 || (r.info.flags & FLAG_SHOW_FOR_ALL_USERS) != 0;
Craig Mautner5962b122012-10-05 14:45:52 -0700370 }
371
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700372 final ActivityRecord topRunningActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800373 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner6b74cb52013-09-27 17:02:21 -0700374 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked(notTop);
375 if (r != null) {
376 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800377 }
378 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700379 return null;
380 }
381
382 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800383 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
384 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800385 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800386 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
387 ActivityRecord r = activities.get(activityNdx);
Amith Yamasani734983f2014-03-04 16:48:05 -0800388 if (!r.finishing && !r.delayedResume && r != notTop && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800389 return r;
390 }
391 }
392 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700393 return null;
394 }
395
396 /**
397 * This is a simplified version of topRunningActivityLocked that provides a number of
398 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800399 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700400 * @param token If non-null, any history records matching this token will be skipped.
401 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800402 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700403 * @return Returns the HistoryRecord of the next activity on the stack.
404 */
405 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800406 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
407 TaskRecord task = mTaskHistory.get(taskNdx);
408 if (task.taskId == taskId) {
409 continue;
410 }
411 ArrayList<ActivityRecord> activities = task.mActivities;
412 for (int i = activities.size() - 1; i >= 0; --i) {
413 final ActivityRecord r = activities.get(i);
414 // Note: the taskId check depends on real taskId fields being non-zero
Amith Yamasani734983f2014-03-04 16:48:05 -0800415 if (!r.finishing && (token != r.appToken) && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800416 return r;
417 }
418 }
419 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700420 return null;
421 }
422
Craig Mautner8849a5e2013-04-02 16:41:03 -0700423 final ActivityRecord topActivity() {
Craig Mautner8849a5e2013-04-02 16:41:03 -0700424 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
425 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Craig Mautner0175b882014-09-07 18:05:31 -0700426 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
427 final ActivityRecord r = activities.get(activityNdx);
428 if (!r.finishing) {
429 return r;
430 }
Craig Mautner8849a5e2013-04-02 16:41:03 -0700431 }
432 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700433 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700434 }
435
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700436 final TaskRecord topTask() {
437 final int size = mTaskHistory.size();
438 if (size > 0) {
439 return mTaskHistory.get(size - 1);
440 }
441 return null;
442 }
443
Craig Mautnerd2328952013-03-05 12:46:26 -0800444 TaskRecord taskForIdLocked(int id) {
445 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
446 final TaskRecord task = mTaskHistory.get(taskNdx);
447 if (task.taskId == id) {
448 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800449 }
450 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700451 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700452 }
453
Craig Mautnerd2328952013-03-05 12:46:26 -0800454 ActivityRecord isInStackLocked(IBinder token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700455 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale60454db2015-01-23 16:05:07 -0800456 return isInStackLocked(r);
457 }
458
459 ActivityRecord isInStackLocked(ActivityRecord r) {
460 if (r == null) {
461 return null;
462 }
463 final TaskRecord task = r.task;
Wale Ogunwale7d701172015-03-11 15:36:30 -0700464 if (task != null && task.stack != null
465 && task.mActivities.contains(r) && mTaskHistory.contains(task)) {
Wale Ogunwale60454db2015-01-23 16:05:07 -0800466 if (task.stack != this) Slog.w(TAG,
Craig Mautnerd2328952013-03-05 12:46:26 -0800467 "Illegal state! task does not point to stack it is in.");
Wale Ogunwale60454db2015-01-23 16:05:07 -0800468 return r;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800469 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800470 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800471 }
472
Craig Mautner2420ead2013-04-01 17:13:20 -0700473 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700474 final boolean hadit = mLRUActivities.remove(r);
475 mLRUActivities.add(r);
476 return hadit;
477 }
478
Craig Mautnerde4ef022013-04-07 19:01:33 -0700479 final boolean isHomeStack() {
480 return mStackId == HOME_STACK_ID;
481 }
482
Craig Mautnere0a38842013-12-16 16:14:02 -0800483 final boolean isOnHomeDisplay() {
484 return isAttached() &&
485 mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
486 }
487
Craig Mautner299f9602015-01-26 09:47:33 -0800488 final void moveToFront(String reason) {
Craig Mautnere0a38842013-12-16 16:14:02 -0800489 if (isAttached()) {
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800490 final boolean homeStack = isHomeStack()
491 || (mActivityContainer.mParentActivity != null
492 && mActivityContainer.mParentActivity.isHomeActivity());
493 ActivityStack lastFocusStack = null;
494 if (!homeStack) {
495 // Need to move this stack to the front before calling
496 // {@link ActivityStackSupervisor#moveHomeStack} below.
497 lastFocusStack = mStacks.get(mStacks.size() - 1);
498 mStacks.remove(this);
499 mStacks.add(this);
Wale Ogunwaleaf0e4482015-02-24 12:27:31 -0800500 }
Wale Ogunwaled80c2632015-03-13 10:26:26 -0700501 // TODO(multi-display): Focus stack currently adjusted in call to move home stack.
502 // Needs to also work if focus is moving to the non-home display.
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800503 if (isOnHomeDisplay()) {
504 mStackSupervisor.moveHomeStack(homeStack, reason, lastFocusStack);
505 }
Craig Mautner6b904ef2014-12-17 15:45:03 -0800506 final TaskRecord task = topTask();
507 if (task != null) {
508 mWindowManager.moveTaskToTop(task.taskId);
509 }
Craig Mautner4a1cb222013-12-04 16:14:06 -0800510 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800511 }
512
513 final boolean isAttached() {
514 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800515 }
516
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700517 /**
518 * Returns the top activity in any existing task matching the given
519 * Intent. Returns null if no such task is found.
520 */
Craig Mautnerac6f8432013-07-17 13:24:59 -0700521 ActivityRecord findTaskLocked(ActivityRecord target) {
522 Intent intent = target.intent;
523 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700524 ComponentName cls = intent.getComponent();
525 if (info.targetActivity != null) {
526 cls = new ComponentName(info.packageName, info.targetActivity);
527 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700528 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautnerd00f4742014-03-12 14:17:26 -0700529 boolean isDocument = intent != null & intent.isDocument();
530 // If documentData is non-null then it must match the existing task data.
531 Uri documentData = isDocument ? intent.getData() : null;
Craig Mautner000f0022013-02-26 15:04:29 -0800532
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700533 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800534 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
535 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn91097de2014-04-04 18:02:06 -0700536 if (task.voiceSession != null) {
537 // We never match voice sessions; those always run independently.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700538 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": voice session");
Dianne Hackborn91097de2014-04-04 18:02:06 -0700539 continue;
540 }
Craig Mautnerac6f8432013-07-17 13:24:59 -0700541 if (task.userId != userId) {
542 // Looking for a different task.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700543 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700544 continue;
545 }
Craig Mautner000f0022013-02-26 15:04:29 -0800546 final ActivityRecord r = task.getTopActivity();
547 if (r == null || r.finishing || r.userId != userId ||
548 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700549 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800550 continue;
551 }
552
Craig Mautnerd00f4742014-03-12 14:17:26 -0700553 final Intent taskIntent = task.intent;
554 final Intent affinityIntent = task.affinityIntent;
555 final boolean taskIsDocument;
556 final Uri taskDocumentData;
557 if (taskIntent != null && taskIntent.isDocument()) {
558 taskIsDocument = true;
559 taskDocumentData = taskIntent.getData();
560 } else if (affinityIntent != null && affinityIntent.isDocument()) {
561 taskIsDocument = true;
562 taskDocumentData = affinityIntent.getData();
563 } else {
564 taskIsDocument = false;
565 taskDocumentData = null;
566 }
567
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700568 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Comparing existing cls="
Craig Mautnerd00f4742014-03-12 14:17:26 -0700569 + taskIntent.getComponent().flattenToShortString()
Dianne Hackborn79228822014-09-16 11:11:23 -0700570 + "/aff=" + r.task.rootAffinity + " to new cls="
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700571 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Dianne Hackborn79228822014-09-16 11:11:23 -0700572 if (!isDocument && !taskIsDocument && task.rootAffinity != null) {
573 if (task.rootAffinity.equals(target.taskAffinity)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700574 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching affinity!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700575 return r;
576 }
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700577 } else if (taskIntent != null && taskIntent.getComponent() != null &&
578 taskIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700579 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700580 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800581 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700582 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
583 "For Intent " + intent + " bringing to top: " + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800584 return r;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700585 } else if (affinityIntent != null && affinityIntent.getComponent() != null &&
586 affinityIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700587 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700588 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800589 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700590 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
591 "For Intent " + intent + " bringing to top: " + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800592 return r;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700593 } else if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700594 }
595
596 return null;
597 }
598
599 /**
600 * Returns the first activity (starting from the top of the stack) that
601 * is the same as the given activity. Returns null if no such activity
602 * is found.
603 */
Craig Mautner8849a5e2013-04-02 16:41:03 -0700604 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700605 ComponentName cls = intent.getComponent();
606 if (info.targetActivity != null) {
607 cls = new ComponentName(info.packageName, info.targetActivity);
608 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700609 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700610
Craig Mautner000f0022013-02-26 15:04:29 -0800611 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700612 final TaskRecord task = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700613 final boolean notCurrentUserTask =
614 !mStackSupervisor.isCurrentProfileLocked(task.userId);
Craig Mautnerac6f8432013-07-17 13:24:59 -0700615 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700616
Craig Mautner000f0022013-02-26 15:04:29 -0800617 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
618 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700619 if (notCurrentUserTask && (r.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700620 return null;
621 }
Craig Mautner000f0022013-02-26 15:04:29 -0800622 if (!r.finishing && r.intent.getComponent().equals(cls) && r.userId == userId) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700623 //Slog.i(TAG, "Found matching class!");
624 //dump();
625 //Slog.i(TAG, "For Intent " + intent + " bringing to top: " + r.intent);
626 return r;
627 }
628 }
629 }
630
631 return null;
632 }
633
Amith Yamasani742a6712011-05-04 14:49:28 -0700634 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700635 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700636 */
Craig Mautner93529a42013-10-04 15:03:13 -0700637 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800638 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700639 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800640 }
641 mCurrentUser = userId;
642
643 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800644 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800645 for (int i = 0; i < index; ) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700646 final TaskRecord task = mTaskHistory.get(i);
647
648 // NOTE: If {@link TaskRecord#topRunningActivityLocked} return is not null then it is
649 // okay to show the activity when locked.
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700650 if (mStackSupervisor.isCurrentProfileLocked(task.userId)
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700651 || task.topRunningActivityLocked(null) != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700652 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "switchUserLocked: stack=" + getStackId() +
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700653 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800654 mTaskHistory.remove(i);
655 mTaskHistory.add(task);
656 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800657 // Use same value for i.
658 } else {
659 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800660 }
661 }
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700662 if (VALIDATE_TOKENS) {
663 validateAppTokensLocked();
664 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700665 }
666
Craig Mautner2420ead2013-04-01 17:13:20 -0700667 void minimalResumeActivityLocked(ActivityRecord r) {
668 r.state = ActivityState.RESUMED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700669 if (DEBUG_STATES) Slog.v(TAG_STATES,
670 "Moving to RESUMED: " + r + " (starting new instance)");
Craig Mautner2420ead2013-04-01 17:13:20 -0700671 r.stopped = false;
672 mResumedActivity = r;
673 r.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800674 mRecentTasks.addLocked(r.task);
Craig Mautner2420ead2013-04-01 17:13:20 -0700675 completeResumeLocked(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700676 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautner1e8b8722013-10-14 18:24:52 -0700677 setLaunchTime(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700678 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
679 "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700680 }
681
Dianne Hackborncee04b52013-07-03 17:01:28 -0700682 private void startLaunchTraces() {
683 if (mFullyDrawnStartTime != 0) {
684 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
685 }
686 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching", 0);
687 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
688 }
689
690 private void stopFullyDrawnTraceIfNeeded() {
691 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
692 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
693 mFullyDrawnStartTime = 0;
694 }
695 }
696
Craig Mautnere79d42682013-04-01 19:01:53 -0700697 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700698 if (r.displayStartTime == 0) {
699 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
700 if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700701 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700702 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700703 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700704 } else if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700705 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700706 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700707 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700708 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800709
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700710 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700711 // Make sure that there is no activity waiting for this to launch.
712 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
713 r.displayStartTime = r.fullyDrawnStartTime = 0;
714 } else {
715 mStackSupervisor.removeTimeoutsForActivityLocked(r);
716 mStackSupervisor.scheduleIdleTimeoutLocked(r);
717 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700718 }
719
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800720 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800721 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800722 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
723 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
724 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
725 activities.get(activityNdx).setSleeping(false);
726 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800727 }
Craig Mautnerf49b0a42014-11-20 15:06:40 -0800728 if (mPausingActivity != null) {
729 Slog.d(TAG, "awakeFromSleepingLocked: previously pausing activity didn't pause");
730 activityPausedLocked(mPausingActivity.appToken, true);
731 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800732 }
733
Craig Mautner0eea92c2013-05-16 13:35:39 -0700734 /**
735 * @return true if something must be done before going to sleep.
736 */
737 boolean checkReadyForSleepLocked() {
738 if (mResumedActivity != null) {
739 // Still have something resumed; can't sleep until it is paused.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700740 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep needs to pause " + mResumedActivity);
741 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
742 "Sleep => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700743 startPausingLocked(false, true, false, false);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700744 return true;
745 }
746 if (mPausingActivity != null) {
747 // Still waiting for something to pause; can't sleep yet.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700748 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still waiting to pause " + mPausingActivity);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700749 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800750 }
751
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700752 if (hasVisibleBehindActivity()) {
753 // Stop visible behind activity before going to sleep.
754 final ActivityRecord r = mActivityContainer.mActivityDisplay.mVisibleBehindActivity;
755 mStackSupervisor.mStoppingActivities.add(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700756 if (DEBUG_STATES) Slog.v(TAG_STATES,
757 "Sleep still waiting to stop visible behind " + r);
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700758 return true;
759 }
760
Craig Mautner0eea92c2013-05-16 13:35:39 -0700761 return false;
762 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800763
Craig Mautner0eea92c2013-05-16 13:35:39 -0700764 void goToSleep() {
765 ensureActivitiesVisibleLocked(null, 0);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800766
Craig Mautner0eea92c2013-05-16 13:35:39 -0700767 // Make sure any stopped but visible activities are now sleeping.
768 // This ensures that the activity's onStop() is called.
769 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
770 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
771 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
772 final ActivityRecord r = activities.get(activityNdx);
773 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED) {
774 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800775 }
776 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800777 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700778 }
Craig Mautner59c00972012-07-30 12:10:24 -0700779
Dianne Hackbornd2835932010-12-13 16:28:46 -0800780 public final Bitmap screenshotActivities(ActivityRecord who) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700781 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "screenshotActivities: " + who);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800782 if (who.noDisplay) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700783 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tNo display");
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800784 return null;
785 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800786
Winson Chung083baf92014-07-11 10:32:42 -0700787 if (isHomeStack()) {
Winson Chung376543b2014-05-21 17:43:28 -0700788 // This is an optimization -- since we never show Home or Recents within Recents itself,
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800789 // we can just go ahead and skip taking the screenshot if this is the home stack.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700790 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tHome stack");
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700791 return null;
792 }
793
Winson Chung48a10a52014-08-27 14:36:51 -0700794 int w = mService.mThumbnailWidth;
795 int h = mService.mThumbnailHeight;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800796 if (w > 0) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700797 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tTaking screenshot");
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800798 return mWindowManager.screenshotApplications(who.appToken, Display.DEFAULT_DISPLAY,
Dianne Hackborn27eac1d2015-03-16 17:15:53 -0700799 w, h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800800 }
Winson Chung376543b2014-05-21 17:43:28 -0700801 Slog.e(TAG, "Invalid thumbnail dimensions: " + w + "x" + h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800802 return null;
803 }
804
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700805 /**
806 * Start pausing the currently resumed activity. It is an error to call this if there
807 * is already an activity being paused or there is no resumed activity.
808 *
809 * @param userLeaving True if this should result in an onUserLeaving to the current activity.
810 * @param uiSleeping True if this is happening with the user interface going to sleep (the
811 * screen turning off).
812 * @param resuming True if this is being called as part of resuming the top activity, so
813 * we shouldn't try to instigate a resume here.
814 * @param dontWait True if the caller does not want to wait for the pause to complete. If
815 * set to true, we will immediately complete the pause here before returning.
816 * @return Returns true if an activity now is in the PAUSING state, and we are waiting for
817 * it to tell us when it is done.
818 */
819 final boolean startPausingLocked(boolean userLeaving, boolean uiSleeping, boolean resuming,
820 boolean dontWait) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800821 if (mPausingActivity != null) {
riddle_hsu7dfe4d72015-02-16 18:43:49 +0800822 Slog.wtf(TAG, "Going to pause when pause is already pending for " + mPausingActivity
823 + " state=" + mPausingActivity.state);
824 if (!mService.isSleeping()) {
825 // Avoid recursion among check for sleep and complete pause during sleeping.
826 // Because activity will be paused immediately after resume, just let pause
827 // be completed by the order of activity paused from clients.
828 completePauseLocked(false);
829 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800830 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700831 ActivityRecord prev = mResumedActivity;
832 if (prev == null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700833 if (!resuming) {
834 Slog.wtf(TAG, "Trying to pause when nothing is resumed");
835 mStackSupervisor.resumeTopActivitiesLocked();
836 }
837 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700838 }
Craig Mautnerdf88d732014-01-27 09:21:32 -0800839
840 if (mActivityContainer.mParentActivity == null) {
841 // Top level stack, not a child. Look for child stacks.
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700842 mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping, resuming, dontWait);
Craig Mautnerdf88d732014-01-27 09:21:32 -0800843 }
844
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700845 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSING: " + prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700846 else if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700847 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800848 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700849 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -0700850 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
851 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700852 prev.state = ActivityState.PAUSING;
853 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700854 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700855 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
Wale Ogunwaled3e2a082014-11-04 16:09:19 -0800856 if (mService.mHasRecents && (next == null || next.noDisplay || next.task != prev.task || uiSleeping)) {
Winson Chung740c3ac2014-11-12 16:14:38 -0800857 prev.updateThumbnailLocked(screenshotActivities(prev), null);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700858 }
Dianne Hackborncee04b52013-07-03 17:01:28 -0700859 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700860
861 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -0800862
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700863 if (prev.app != null && prev.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700864 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending pause: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700865 try {
866 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700867 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700868 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -0700869 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800870 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700871 userLeaving, prev.configChangeFlags, dontWait);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700872 } catch (Exception e) {
873 // Ignore exception, if process died other code will cleanup.
874 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800875 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700876 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700877 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700878 }
879 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800880 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700881 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700882 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700883 }
884
885 // If we are not going to sleep, we want to ensure the device is
886 // awake until the next activity is started.
Dianne Hackborn3d07c942015-03-13 18:02:54 -0700887 if (!uiSleeping && !mService.isSleepingOrShuttingDown()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700888 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700889 }
890
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800891 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700892 // Have the window manager pause its key dispatching until the new
893 // activity has started. If we're pausing the activity just because
894 // the screen is being turned off and the UI is sleeping, don't interrupt
895 // key dispatch; the same activity will pick it up again on wakeup.
896 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800897 prev.pauseKeyDispatchingLocked();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700898 } else if (DEBUG_PAUSE) {
899 Slog.v(TAG_PAUSE, "Key dispatch not paused for screen off");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700900 }
901
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700902 if (dontWait) {
903 // If the caller said they don't want to wait for the pause, then complete
904 // the pause now.
905 completePauseLocked(false);
906 return false;
907
908 } else {
909 // Schedule a pause timeout in case the app doesn't respond.
910 // We don't give it much time because this directly impacts the
911 // responsiveness seen by the user.
912 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
913 msg.obj = prev;
914 prev.pauseTime = SystemClock.uptimeMillis();
915 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700916 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Waiting for pause to complete...");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700917 return true;
918 }
919
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700920 } else {
921 // This activity failed to schedule the
922 // pause, so just treat it as being paused now.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700923 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Activity not running, resuming next.");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700924 if (!resuming) {
925 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
926 }
927 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700928 }
929 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700930
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700931 final void activityPausedLocked(IBinder token, boolean timeout) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700932 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE,
933 "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700934
Craig Mautnerd2328952013-03-05 12:46:26 -0800935 final ActivityRecord r = isInStackLocked(token);
936 if (r != null) {
937 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
938 if (mPausingActivity == r) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700939 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSED: " + r
Craig Mautnerd2328952013-03-05 12:46:26 -0800940 + (timeout ? " (due to timeout)" : " (pause complete)"));
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700941 completePauseLocked(true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800942 } else {
943 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
944 r.userId, System.identityHashCode(r), r.shortComponentName,
945 mPausingActivity != null
946 ? mPausingActivity.shortComponentName : "(none)");
louis_chang047dfd42015-04-08 16:35:55 +0800947 if (r.finishing && r.state == ActivityState.PAUSING) {
948 if (DEBUG_PAUSE) Slog.v(TAG,
949 "Executing finish of failed to pause activity: " + r);
950 finishCurrentActivityLocked(r, FINISH_AFTER_VISIBLE, false);
951 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700952 }
953 }
954 }
955
Craig Mautnera0026042014-04-23 11:45:37 -0700956 final void activityStoppedLocked(ActivityRecord r, Bundle icicle,
957 PersistableBundle persistentState, CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -0700958 if (r.state != ActivityState.STOPPING) {
959 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
960 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
961 return;
962 }
Craig Mautner21d24a22014-04-23 11:45:37 -0700963 if (persistentState != null) {
964 r.persistentState = persistentState;
965 mService.notifyTaskPersisterLocked(r.task, false);
966 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700967 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700968 if (icicle != null) {
969 // If icicle is null, this is happening due to a timeout, so we
970 // haven't really saved the state.
971 r.icicle = icicle;
972 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -0800973 r.launchCount = 0;
Winson Chung740c3ac2014-11-12 16:14:38 -0800974 r.updateThumbnailLocked(null, description);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700975 }
976 if (!r.stopped) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700977 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to STOPPED: " + r + " (stop complete)");
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700978 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
979 r.stopped = true;
980 r.state = ActivityState.STOPPED;
Jose Lima4b6c6692014-08-12 17:41:12 -0700981 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == r) {
982 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700983 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700984 if (r.finishing) {
985 r.clearOptionsLocked();
986 } else {
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700987 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700988 destroyActivityLocked(r, true, "stop-config");
Craig Mautner05d29032013-05-03 13:40:13 -0700989 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700990 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -0700991 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -0800992 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700993 }
994 }
995 }
996
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700997 private void completePauseLocked(boolean resumeNext) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800998 ActivityRecord prev = mPausingActivity;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700999 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -08001000
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001001 if (prev != null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001002 prev.state = ActivityState.PAUSED;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001003 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001004 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001005 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001006 } else if (prev.app != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001007 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending stop: " + prev);
Craig Mautner8c14c152015-01-15 17:32:07 -08001008 if (mStackSupervisor.mWaitingVisibleActivities.remove(prev)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001009 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1010 "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001011 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001012 if (prev.configDestroy) {
1013 // The previous is being paused because the configuration
1014 // is changing, which means it is actually stopping...
1015 // To juggle the fact that we are also starting a new
1016 // instance right now, we need to first completely stop
1017 // the current instance before starting the new one.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001018 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Destroying after pause: " + prev);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001019 destroyActivityLocked(prev, true, "pause-config");
Wale Ogunwale5c42e502015-04-08 09:18:54 -07001020 } else if (!hasVisibleBehindActivity() || mService.isSleepingOrShuttingDown()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07001021 // If we were visible then resumeTopActivities will release resources before
Craig Mautneree2e45a2014-06-27 12:10:03 -07001022 // stopping.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001023 mStackSupervisor.mStoppingActivities.add(prev);
Craig Mautner29219d92013-04-16 20:19:12 -07001024 if (mStackSupervisor.mStoppingActivities.size() > 3 ||
1025 prev.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001026 // If we already have a few activities waiting to stop,
1027 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07001028 // them out. Or if r is the last of activity of the last task the stack
1029 // will be empty and must be cleared immediately.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001030 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "To many pending stops, forcing idle");
Craig Mautnerf3333272013-04-22 10:55:53 -07001031 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001032 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07001033 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001034 }
1035 }
1036 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001037 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "App died during pause, not stopping: " + prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001038 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001039 }
Wale Ogunwale07927bf2015-03-28 17:21:05 -07001040 // It is possible the activity was freezing the screen before it was paused.
1041 // In that case go ahead and remove the freeze this activity has on the screen
1042 // since it is no longer visible.
1043 prev.stopFreezingScreenLocked(true /*force*/);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001044 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001045 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001046
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001047 if (resumeNext) {
1048 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
1049 if (!mService.isSleepingOrShuttingDown()) {
1050 mStackSupervisor.resumeTopActivitiesLocked(topStack, prev, null);
1051 } else {
1052 mStackSupervisor.checkReadyForSleepLocked();
1053 ActivityRecord top = topStack.topRunningActivityLocked(null);
1054 if (top == null || (prev != null && top != prev)) {
1055 // If there are no more activities available to run,
1056 // do resume anyway to start something. Also if the top
1057 // activity on the stack is not the just paused activity,
1058 // we need to go ahead and resume it to ensure we complete
1059 // an in-flight app switch.
1060 mStackSupervisor.resumeTopActivitiesLocked(topStack, null, null);
1061 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07001062 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001063 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001064
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001065 if (prev != null) {
1066 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001067
Craig Mautner525f3d92013-05-07 14:01:50 -07001068 if (prev.app != null && prev.cpuTimeAtResume > 0
1069 && mService.mBatteryStatsService.isOnBattery()) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001070 long diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
1071 - prev.cpuTimeAtResume;
Craig Mautner525f3d92013-05-07 14:01:50 -07001072 if (diff > 0) {
1073 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
1074 synchronized (bsi) {
1075 BatteryStatsImpl.Uid.Proc ps =
1076 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -07001077 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -07001078 if (ps != null) {
1079 ps.addForegroundTimeLocked(diff);
1080 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001081 }
1082 }
1083 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001084 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001085 }
Winson Chung740c3ac2014-11-12 16:14:38 -08001086
1087 // Notfiy when the task stack has changed
1088 mService.notifyTaskStackChangedLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001089 }
1090
1091 /**
1092 * Once we know that we have asked an application to put an activity in
1093 * the resumed state (either by launching it or explicitly telling it),
1094 * this function updates the rest of our state to match that fact.
1095 */
Craig Mautner525f3d92013-05-07 14:01:50 -07001096 private void completeResumeLocked(ActivityRecord next) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001097 next.idle = false;
1098 next.results = null;
1099 next.newIntents = null;
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001100
1101 if (next.isHomeActivity() && next.isNotResolverActivity()) {
1102 ProcessRecord app = next.task.mActivities.get(0).app;
1103 if (app != null && app != mService.mHomeProcess) {
1104 mService.mHomeProcess = app;
1105 }
1106 }
1107
Craig Mautner07566322013-09-26 16:42:55 -07001108 if (next.nowVisible) {
1109 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02001110 mStackSupervisor.notifyActivityDrawnForKeyguard();
Craig Mautner07566322013-09-26 16:42:55 -07001111 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001112
1113 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -07001114 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001115
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001116 mStackSupervisor.reportResumedActivityLocked(next);
1117
1118 next.resumeKeyDispatchingLocked();
1119 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001120
1121 // Mark the point when the activity is resuming
1122 // TODO: To be more accurate, the mark should be before the onCreate,
1123 // not after the onResume. But for subsequent starts, onResume is fine.
1124 if (next.app != null) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001125 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001126 } else {
1127 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1128 }
Winson Chung376543b2014-05-21 17:43:28 -07001129
George Mount6ba042b2014-07-28 11:12:28 -07001130 next.returningOptions = null;
Craig Mautner64ccb702014-10-01 09:38:40 -07001131
1132 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == next) {
1133 // When resuming an activity, require it to call requestVisibleBehind() again.
1134 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(null);
1135 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001136 }
1137
Craig Mautner2568c3a2015-03-26 14:22:34 -07001138 private void setVisible(ActivityRecord r, boolean visible) {
Craig Mautnere3a00d72014-04-16 08:31:19 -07001139 r.visible = visible;
1140 mWindowManager.setAppVisibility(r.appToken, visible);
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001141 final ArrayList<ActivityContainer> containers = r.mChildContainers;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001142 for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001143 ActivityContainer container = containers.get(containerNdx);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001144 container.setVisible(visible);
1145 }
1146 }
1147
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001148 // Find the first visible activity above the passed activity and if it is translucent return it
1149 // otherwise return null;
1150 ActivityRecord findNextTranslucentActivity(ActivityRecord r) {
1151 TaskRecord task = r.task;
1152 if (task == null) {
1153 return null;
1154 }
1155
1156 ActivityStack stack = task.stack;
1157 if (stack == null) {
1158 return null;
1159 }
1160
1161 int stackNdx = mStacks.indexOf(stack);
1162
1163 ArrayList<TaskRecord> tasks = stack.mTaskHistory;
1164 int taskNdx = tasks.indexOf(task);
1165
1166 ArrayList<ActivityRecord> activities = task.mActivities;
1167 int activityNdx = activities.indexOf(r) + 1;
1168
1169 final int numStacks = mStacks.size();
1170 while (stackNdx < numStacks) {
Todd Kennedyaab56db2015-01-30 09:39:53 -08001171 ActivityStack historyStack = mStacks.get(stackNdx);
1172 tasks = historyStack.mTaskHistory;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001173 final int numTasks = tasks.size();
1174 while (taskNdx < numTasks) {
1175 activities = tasks.get(taskNdx).mActivities;
1176 final int numActivities = activities.size();
1177 while (activityNdx < numActivities) {
1178 final ActivityRecord activity = activities.get(activityNdx);
1179 if (!activity.finishing) {
Todd Kennedyaab56db2015-01-30 09:39:53 -08001180 return historyStack.mFullscreen && activity.fullscreen ? null : activity;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001181 }
1182 ++activityNdx;
1183 }
1184 activityNdx = 0;
1185 ++taskNdx;
1186 }
1187 taskNdx = 0;
1188 ++stackNdx;
1189 }
1190
1191 return null;
1192 }
1193
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001194 private ActivityStack getNextVisibleStackLocked() {
1195 ArrayList<ActivityStack> stacks = mStacks;
1196 final ActivityRecord parent = mActivityContainer.mParentActivity;
1197 if (parent != null) {
1198 stacks = parent.task.stack.mStacks;
1199 }
1200 if (stacks != null) {
1201 for (int i = stacks.size() - 1; i >= 0; --i) {
1202 ActivityStack stack = stacks.get(i);
1203 if (stack != this && stack.isStackVisibleLocked()) {
1204 return stack;
1205 }
1206 }
1207 }
1208 return null;
1209 }
1210
Jose Lima7ba71252014-04-30 12:59:27 -07001211 // Checks if any of the stacks above this one has a fullscreen activity behind it.
1212 // If so, this stack is hidden, otherwise it is visible.
Todd Kennedyaab56db2015-01-30 09:39:53 -08001213 private boolean isStackVisibleLocked() {
Jose Lima7ba71252014-04-30 12:59:27 -07001214 if (!isAttached()) {
1215 return false;
1216 }
1217
1218 if (mStackSupervisor.isFrontStack(this)) {
1219 return true;
1220 }
1221
Jose Lima729cb232014-05-05 15:59:40 -07001222 /**
1223 * Start at the task above this one and go up, looking for a visible
1224 * fullscreen activity, or a translucent activity that requested the
1225 * wallpaper to be shown behind it.
1226 */
Jose Lima7ba71252014-04-30 12:59:27 -07001227 for (int i = mStacks.indexOf(this) + 1; i < mStacks.size(); i++) {
Todd Kennedyaab56db2015-01-30 09:39:53 -08001228 ActivityStack stack = mStacks.get(i);
1229 // stack above isn't full screen, so, we assume we're still visible. at some point
1230 // we should look at the stack bounds to see if we're occluded even if the stack
1231 // isn't fullscreen
1232 if (!stack.mFullscreen) {
1233 continue;
1234 }
1235 final ArrayList<TaskRecord> tasks = stack.getAllTasks();
1236 for (int taskNdx = tasks.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001237 final TaskRecord task = tasks.get(taskNdx);
1238 final ArrayList<ActivityRecord> activities = task.mActivities;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001239 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Jose Lima7ba71252014-04-30 12:59:27 -07001240 final ActivityRecord r = activities.get(activityNdx);
Jose Lima729cb232014-05-05 15:59:40 -07001241
1242 // Conditions for an activity to obscure the stack we're
1243 // examining:
1244 // 1. Not Finishing AND Visible AND:
1245 // 2. Either:
1246 // - Full Screen Activity OR
1247 // - On top of Home and our stack is NOT home
1248 if (!r.finishing && r.visible && (r.fullscreen ||
Craig Mautner84984fa2014-06-19 11:19:20 -07001249 (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()))) {
Jose Lima7ba71252014-04-30 12:59:27 -07001250 return false;
1251 }
1252 }
1253 }
1254 }
1255
1256 return true;
1257 }
1258
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001259 /**
1260 * Make sure that all activities that need to be visible (that is, they
1261 * currently can be seen by the user) actually are.
1262 */
Craig Mautnerbb742462014-07-07 15:28:55 -07001263 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) {
1264 ActivityRecord top = topRunningActivityLocked(null);
1265 if (top == null) {
1266 return;
1267 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001268 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1269 "ensureActivitiesVisible behind " + top
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001270 + " configChanges=0x" + Integer.toHexString(configChanges));
1271
Craig Mautner5eda9b32013-07-02 11:58:16 -07001272 if (mTranslucentActivityWaiting != top) {
1273 mUndrawnActivitiesBelowTopTranslucent.clear();
1274 if (mTranslucentActivityWaiting != null) {
1275 // Call the callback with a timeout indication.
1276 notifyActivityDrawnLocked(null);
1277 mTranslucentActivityWaiting = null;
1278 }
1279 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1280 }
1281
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001282 // If the top activity is not fullscreen, then we need to
1283 // make sure any activities under it are now visible.
Craig Mautnerd44711d2013-02-23 11:24:36 -08001284 boolean aboveTop = true;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001285 boolean behindFullscreen = !isStackVisibleLocked();
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001286 boolean noStackActivityResumed = (isInStackLocked(starting) == null);
Jose Lima7ba71252014-04-30 12:59:27 -07001287
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001288 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001289 final TaskRecord task = mTaskHistory.get(taskNdx);
1290 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001291 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1292 final ActivityRecord r = activities.get(activityNdx);
1293 if (r.finishing) {
1294 continue;
1295 }
1296 if (aboveTop && r != top) {
1297 continue;
1298 }
1299 aboveTop = false;
Craig Mautnerbb742462014-07-07 15:28:55 -07001300 // mLaunchingBehind: Activities launching behind are at the back of the task stack
1301 // but must be drawn initially for the animation as though they were visible.
1302 if (!behindFullscreen || r.mLaunchTaskBehind) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001303 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1304 "Make visible? " + r + " finishing=" + r.finishing
Craig Mautnerd44711d2013-02-23 11:24:36 -08001305 + " state=" + r.state);
Craig Mautner58547802013-03-05 08:23:53 -08001306
Craig Mautnerd44711d2013-02-23 11:24:36 -08001307 // First: if this is not the current activity being started, make
1308 // sure it matches the current configuration.
Craig Mautnerbb742462014-07-07 15:28:55 -07001309 if (r != starting) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001310 ensureActivityConfigurationLocked(r, 0);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001311 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001312
1313 if (r.app == null || r.app.thread == null) {
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001314 // This activity needs to be visible, but isn't even running...
1315 // get it started and resume if no other stack in this stack is resumed.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001316 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1317 "Start and freeze screen for " + r);
Craig Mautnerbb742462014-07-07 15:28:55 -07001318 if (r != starting) {
1319 r.startFreezingScreenLocked(r.app, configChanges);
1320 }
1321 if (!r.visible || r.mLaunchTaskBehind) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001322 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1323 "Starting and making visible: " + r);
Craig Mautner2568c3a2015-03-26 14:22:34 -07001324 setVisible(r, true);
Craig Mautnerbb742462014-07-07 15:28:55 -07001325 }
1326 if (r != starting) {
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001327 mStackSupervisor.startSpecificActivityLocked(
1328 r, noStackActivityResumed, false);
1329 noStackActivityResumed = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001330 }
1331
1332 } else if (r.visible) {
1333 // If this activity is already visible, then there is nothing
1334 // else to do here.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001335 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1336 "Skipping: already visible at " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001337 r.stopFreezingScreenLocked(false);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001338 try {
George Mount6ba042b2014-07-28 11:12:28 -07001339 if (r.returningOptions != null) {
1340 r.app.thread.scheduleOnNewActivityOptions(r.appToken,
1341 r.returningOptions);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001342 }
1343 } catch(RemoteException e) {
1344 }
Wale Ogunwale85b90ab2015-04-27 20:54:47 -07001345 if (r.state == ActivityState.RESUMED) {
1346 noStackActivityResumed = false;
1347 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001348 } else {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001349 // This activity is not currently visible, but is running.
1350 // Tell it to become visible.
1351 r.visible = true;
1352 if (r.state != ActivityState.RESUMED && r != starting) {
1353 // If this activity is paused, tell it
1354 // to now show its window.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001355 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1356 "Making visible and scheduling visibility: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001357 try {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001358 if (mTranslucentActivityWaiting != null) {
George Mount6ba042b2014-07-28 11:12:28 -07001359 r.updateOptionsLocked(r.returningOptions);
Craig Mautner5eda9b32013-07-02 11:58:16 -07001360 mUndrawnActivitiesBelowTopTranslucent.add(r);
1361 }
Craig Mautner2568c3a2015-03-26 14:22:34 -07001362 setVisible(r, true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001363 r.sleeping = false;
1364 r.app.pendingUiClean = true;
1365 r.app.thread.scheduleWindowVisibility(r.appToken, true);
1366 r.stopFreezingScreenLocked(false);
1367 } catch (Exception e) {
1368 // Just skip on any failure; we'll make it
1369 // visible when it next restarts.
1370 Slog.w(TAG, "Exception thrown making visibile: "
1371 + r.intent.getComponent(), e);
1372 }
1373 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001374 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001375
Craig Mautnerd44711d2013-02-23 11:24:36 -08001376 // Aggregate current change flags.
1377 configChanges |= r.configChangeFlags;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001378
Craig Mautnerd44711d2013-02-23 11:24:36 -08001379 if (r.fullscreen) {
1380 // At this point, nothing else needs to be shown
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001381 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Fullscreen: at " + r);
Craig Mautner580ea812013-04-25 12:58:38 -07001382 behindFullscreen = true;
Craig Mautner84984fa2014-06-19 11:19:20 -07001383 } else if (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001384 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Showing home: at " + r);
Jose Lima729cb232014-05-05 15:59:40 -07001385 behindFullscreen = true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001386 }
1387 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001388 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1389 "Make invisible? " + r + " finishing=" + r.finishing
1390 + " state=" + r.state + " behindFullscreen=" + behindFullscreen);
Craig Mautnerde4ef022013-04-07 19:01:33 -07001391 // Now for any activities that aren't visible to the user, make
1392 // sure they no longer are keeping the screen frozen.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001393 if (r.visible) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001394 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Making invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001395 try {
Craig Mautner2568c3a2015-03-26 14:22:34 -07001396 setVisible(r, false);
Craig Mautner4addfc52013-06-25 08:05:45 -07001397 switch (r.state) {
1398 case STOPPING:
1399 case STOPPED:
1400 if (r.app != null && r.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001401 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1402 "Scheduling invisibility: " + r);
Craig Mautner4addfc52013-06-25 08:05:45 -07001403 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1404 }
1405 break;
1406
1407 case INITIALIZING:
1408 case RESUMED:
1409 case PAUSING:
1410 case PAUSED:
Craig Mautner88176102013-07-22 12:57:51 -07001411 // This case created for transitioning activities from
1412 // translucent to opaque {@link Activity#convertToOpaque}.
Jose Lima4b6c6692014-08-12 17:41:12 -07001413 if (getVisibleBehindActivity() == r) {
Todd Kennedyaab56db2015-01-30 09:39:53 -08001414 releaseBackgroundResources(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001415 } else {
1416 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1417 mStackSupervisor.mStoppingActivities.add(r);
1418 }
1419 mStackSupervisor.scheduleIdleLocked();
Craig Mautnere5273b42013-09-09 12:57:47 -07001420 }
Craig Mautner4addfc52013-06-25 08:05:45 -07001421 break;
1422
1423 default:
1424 break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001425 }
1426 } catch (Exception e) {
1427 // Just skip on any failure; we'll make it
1428 // visible when it next restarts.
1429 Slog.w(TAG, "Exception thrown making hidden: "
1430 + r.intent.getComponent(), e);
1431 }
1432 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001433 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Already invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001434 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001435 }
1436 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001437 }
Craig Mautnereb8abf72014-07-02 15:04:09 -07001438
1439 if (mTranslucentActivityWaiting != null &&
1440 mUndrawnActivitiesBelowTopTranslucent.isEmpty()) {
1441 // Nothing is getting drawn or everything was already visible, don't wait for timeout.
1442 notifyActivityDrawnLocked(null);
1443 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001444 }
Craig Mautner58547802013-03-05 08:23:53 -08001445
Todd Kennedyaab56db2015-01-30 09:39:53 -08001446 void convertActivityToTranslucent(ActivityRecord r) {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001447 mTranslucentActivityWaiting = r;
1448 mUndrawnActivitiesBelowTopTranslucent.clear();
1449 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
1450 }
1451
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07001452 void clearOtherAppTimeTrackers(AppTimeTracker except) {
1453 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1454 final TaskRecord task = mTaskHistory.get(taskNdx);
1455 final ArrayList<ActivityRecord> activities = task.mActivities;
1456 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1457 final ActivityRecord r = activities.get(activityNdx);
1458 if ( r.appTimeTracker != except) {
1459 r.appTimeTracker = null;
1460 }
1461 }
1462 }
1463 }
1464
Craig Mautner5eda9b32013-07-02 11:58:16 -07001465 /**
1466 * Called as activities below the top translucent activity are redrawn. When the last one is
1467 * redrawn notify the top activity by calling
1468 * {@link Activity#onTranslucentConversionComplete}.
1469 *
1470 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
1471 * occurred and the activity will be notified immediately.
1472 */
1473 void notifyActivityDrawnLocked(ActivityRecord r) {
Craig Mautner6985bad2014-04-21 15:22:06 -07001474 mActivityContainer.setDrawn();
Craig Mautner5eda9b32013-07-02 11:58:16 -07001475 if ((r == null)
1476 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
1477 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
1478 // The last undrawn activity below the top has just been drawn. If there is an
1479 // opaque activity at the top, notify it that it can become translucent safely now.
1480 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
1481 mTranslucentActivityWaiting = null;
1482 mUndrawnActivitiesBelowTopTranslucent.clear();
1483 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1484
Craig Mautner71dd1b62014-02-18 15:48:52 -08001485 if (waitingActivity != null) {
1486 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
1487 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
1488 try {
1489 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
1490 waitingActivity.appToken, r != null);
1491 } catch (RemoteException e) {
1492 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001493 }
1494 }
1495 }
1496 }
1497
Craig Mautnera61bc652013-10-28 15:43:18 -07001498 /** If any activities below the top running one are in the INITIALIZING state and they have a
1499 * starting window displayed then remove that starting window. It is possible that the activity
1500 * in this state will never resumed in which case that starting window will be orphaned. */
1501 void cancelInitializingActivities() {
1502 final ActivityRecord topActivity = topRunningActivityLocked(null);
1503 boolean aboveTop = true;
1504 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1505 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1506 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1507 final ActivityRecord r = activities.get(activityNdx);
1508 if (aboveTop) {
1509 if (r == topActivity) {
1510 aboveTop = false;
1511 }
1512 continue;
1513 }
1514
1515 if (r.state == ActivityState.INITIALIZING && r.mStartingWindowShown) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001516 if (DEBUG_VISIBILITY) Slog.w(TAG_VISIBILITY,
1517 "Found orphaned starting window " + r);
Craig Mautnera61bc652013-10-28 15:43:18 -07001518 r.mStartingWindowShown = false;
1519 mWindowManager.removeAppStartingWindow(r.appToken);
1520 }
1521 }
1522 }
1523 }
1524
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001525 /**
1526 * Ensure that the top activity in the stack is resumed.
1527 *
1528 * @param prev The previously resumed activity, for when in the process
1529 * of pausing; can be null to call from elsewhere.
1530 *
1531 * @return Returns true if something is being resumed, or false if
1532 * nothing happened.
1533 */
1534 final boolean resumeTopActivityLocked(ActivityRecord prev) {
Dianne Hackborn84375872012-06-01 19:03:50 -07001535 return resumeTopActivityLocked(prev, null);
1536 }
1537
1538 final boolean resumeTopActivityLocked(ActivityRecord prev, Bundle options) {
Craig Mautner42d04db2014-11-06 12:13:23 -08001539 if (mStackSupervisor.inResumeTopActivity) {
Craig Mautner544efa72014-09-04 16:41:20 -07001540 // Don't even start recursing.
1541 return false;
1542 }
1543
1544 boolean result = false;
1545 try {
1546 // Protect against recursion.
Craig Mautner42d04db2014-11-06 12:13:23 -08001547 mStackSupervisor.inResumeTopActivity = true;
1548 if (mService.mLockScreenShown == ActivityManagerService.LOCK_SCREEN_LEAVING) {
1549 mService.mLockScreenShown = ActivityManagerService.LOCK_SCREEN_HIDDEN;
Jeff Brown9ef94012014-11-21 13:04:42 -08001550 mService.updateSleepIfNeededLocked();
Craig Mautner42d04db2014-11-06 12:13:23 -08001551 }
Craig Mautner544efa72014-09-04 16:41:20 -07001552 result = resumeTopActivityInnerLocked(prev, options);
1553 } finally {
Craig Mautner42d04db2014-11-06 12:13:23 -08001554 mStackSupervisor.inResumeTopActivity = false;
Craig Mautner544efa72014-09-04 16:41:20 -07001555 }
1556 return result;
1557 }
1558
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001559 private boolean resumeTopActivityInnerLocked(ActivityRecord prev, Bundle options) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001560 if (DEBUG_LOCKSCREEN) mService.logLockScreen("");
Craig Mautner5314a402013-09-26 12:40:16 -07001561
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07001562 if (!mService.mBooting && !mService.mBooted) {
1563 // Not ready yet!
1564 return false;
1565 }
1566
Craig Mautnerdf88d732014-01-27 09:21:32 -08001567 ActivityRecord parent = mActivityContainer.mParentActivity;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001568 if ((parent != null && parent.state != ActivityState.RESUMED) ||
Craig Mautnerd163e752014-06-13 17:18:47 -07001569 !mActivityContainer.isAttachedLocked()) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001570 // Do not resume this stack if its parent is not resumed.
1571 // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
1572 return false;
1573 }
1574
Craig Mautnera61bc652013-10-28 15:43:18 -07001575 cancelInitializingActivities();
1576
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001577 // Find the first activity that is not finishing.
Craig Mautner94ab4662015-01-20 10:49:22 -08001578 final ActivityRecord next = topRunningActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001579
1580 // Remember how we'll process this pause/resume situation, and ensure
1581 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001582 final boolean userLeaving = mStackSupervisor.mUserLeaving;
1583 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001584
Craig Mautner84984fa2014-06-19 11:19:20 -07001585 final TaskRecord prevTask = prev != null ? prev.task : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001586 if (next == null) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001587 // There are no more activities!
1588 final String reason = "noMoreActivities";
1589 if (!mFullscreen) {
1590 // Try to move focus to the next visible stack with a running activity if this
1591 // stack is not covering the entire screen.
1592 final ActivityStack stack = getNextVisibleStackLocked();
1593 if (adjustFocusToNextVisibleStackLocked(stack, reason)) {
1594 return mStackSupervisor.resumeTopActivitiesLocked(stack, prev, null);
1595 }
1596 }
1597 // Let's just start up the Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07001598 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001599 if (DEBUG_STATES) Slog.d(TAG_STATES,
1600 "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07001601 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnere0a38842013-12-16 16:14:02 -08001602 // Only resume home if on home display
Craig Mautner84984fa2014-06-19 11:19:20 -07001603 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1604 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1605 return isOnHomeDisplay() &&
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001606 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001607 }
1608
1609 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08001610
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001611 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001612 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
1613 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001614 // Make sure we have executed any pending transitions, since there
1615 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001616 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001617 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001618 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001619 if (DEBUG_STATES) Slog.d(TAG_STATES,
1620 "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07001621 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001622 return false;
1623 }
1624
Craig Mautner525f3d92013-05-07 14:01:50 -07001625 final TaskRecord nextTask = next.task;
bulicccd230712014-05-12 14:34:50 -07001626 if (prevTask != null && prevTask.stack == this &&
Craig Mautner84984fa2014-06-19 11:19:20 -07001627 prevTask.isOverHomeStack() && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07001628 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07001629 if (prevTask == nextTask) {
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08001630 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07001631 } else if (prevTask != topTask()) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001632 // This task is going away but it was supposed to return to the home stack.
Craig Mautnere418ecd2013-05-01 17:02:29 -07001633 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07001634 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07001635 mTaskHistory.get(taskNdx).setTaskToReturnTo(HOME_ACTIVITY_TYPE);
louis_chang2d094e92015-01-21 19:01:52 +08001636 } else if (!isOnHomeDisplay()) {
1637 return false;
1638 } else if (!isHomeStack()){
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001639 if (DEBUG_STATES) Slog.d(TAG_STATES,
Craig Mautnere0a38842013-12-16 16:14:02 -08001640 "resumeTopActivityLocked: Launching home next");
Craig Mautner84984fa2014-06-19 11:19:20 -07001641 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1642 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1643 return isOnHomeDisplay() &&
Craig Mautner3c878f22015-01-26 13:57:19 -08001644 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, "prevFinished");
Craig Mautnere418ecd2013-05-01 17:02:29 -07001645 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001646 }
1647
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001648 // If we are sleeping, and there is no resumed activity, and the top
1649 // activity is paused, well that is the state we want.
Craig Mautner5314a402013-09-26 12:40:16 -07001650 if (mService.isSleepingOrShuttingDown()
p13451dbad2872012-04-18 11:39:23 +09001651 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07001652 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001653 // Make sure we have executed any pending transitions, since there
1654 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001655 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001656 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001657 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001658 if (DEBUG_STATES) Slog.d(TAG_STATES,
1659 "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07001660 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001661 return false;
1662 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001663
1664 // Make sure that the user who owns this activity is started. If not,
1665 // we will just leave it as is because someone should be bringing
1666 // another user's activities to the top of the stack.
1667 if (mService.mStartedUsers.get(next.userId) == null) {
1668 Slog.w(TAG, "Skipping resume of top activity " + next
1669 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07001670 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001671 return false;
1672 }
1673
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001674 // The activity may be waiting for stop, but that is no longer
1675 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001676 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07001677 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001678 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001679 mStackSupervisor.mWaitingVisibleActivities.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001680
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001681 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resuming " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001682
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001683 // If we are currently pausing an activity, then don't do anything
1684 // until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07001685 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001686 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG_PAUSE,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001687 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07001688 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001689 return false;
1690 }
1691
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001692 // Okay we are now going to start a switch, to 'next'. We may first
1693 // have to pause the current activity, but this is an important point
1694 // where we have decided to go to 'next' so keep track of that.
Dianne Hackborn034093a42010-09-20 22:24:38 -07001695 // XXX "App Redirected" dialog is getting too many false positives
1696 // at this point, so turn off for now.
1697 if (false) {
1698 if (mLastStartedActivity != null && !mLastStartedActivity.finishing) {
1699 long now = SystemClock.uptimeMillis();
1700 final boolean inTime = mLastStartedActivity.startTime != 0
1701 && (mLastStartedActivity.startTime + START_WARN_TIME) >= now;
1702 final int lastUid = mLastStartedActivity.info.applicationInfo.uid;
1703 final int nextUid = next.info.applicationInfo.uid;
1704 if (inTime && lastUid != nextUid
1705 && lastUid != next.launchedFromUid
1706 && mService.checkPermission(
1707 android.Manifest.permission.STOP_APP_SWITCHES,
1708 -1, next.launchedFromUid)
1709 != PackageManager.PERMISSION_GRANTED) {
1710 mService.showLaunchWarningLocked(mLastStartedActivity, next);
1711 } else {
1712 next.startTime = now;
1713 mLastStartedActivity = next;
1714 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001715 } else {
Dianne Hackborn034093a42010-09-20 22:24:38 -07001716 next.startTime = SystemClock.uptimeMillis();
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001717 mLastStartedActivity = next;
1718 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001719 }
Craig Mautner58547802013-03-05 08:23:53 -08001720
Dianne Hackborn3d07c942015-03-13 18:02:54 -07001721 mStackSupervisor.setLaunchSource(next.info.applicationInfo.uid);
1722
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001723 // We need to start pausing the current activity so the top one
1724 // can be resumed...
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001725 boolean dontWaitForPause = (next.info.flags&ActivityInfo.FLAG_RESUME_WHILE_PAUSING) != 0;
1726 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001727 if (mResumedActivity != null) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001728 if (DEBUG_STATES) Slog.d(TAG_STATES,
1729 "resumeTopActivityLocked: Pausing " + mResumedActivity);
Craig Mautnere042bf22014-11-11 11:28:43 -08001730 pausing |= startPausingLocked(userLeaving, false, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001731 }
1732 if (pausing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001733 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG_STATES,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001734 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001735 // At this point we want to put the upcoming activity's process
1736 // at the top of the LRU list, since we know we will be needing it
1737 // very soon and it would be a waste to let it get killed if it
1738 // happens to be sitting towards the end.
1739 if (next.app != null && next.app.thread != null) {
Dianne Hackborndb926082013-10-31 16:32:44 -07001740 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001741 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001742 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001743 return true;
1744 }
1745
Christopher Tated3f175c2012-06-14 14:16:54 -07001746 // If the most recent activity was noHistory but was only stopped rather
1747 // than stopped+finished because the device went to sleep, we need to make
1748 // sure to finish it as we're making a new activity topmost.
Dianne Hackborn91097de2014-04-04 18:02:06 -07001749 if (mService.isSleeping() && mLastNoHistoryActivity != null &&
Craig Mautner0f922742013-08-06 08:44:42 -07001750 !mLastNoHistoryActivity.finishing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001751 if (DEBUG_STATES) Slog.d(TAG_STATES,
1752 "no-history finish of " + mLastNoHistoryActivity + " on new resume");
Craig Mautner0f922742013-08-06 08:44:42 -07001753 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
Todd Kennedy539db512014-12-15 09:57:55 -08001754 null, "resume-no-history", false);
Craig Mautner0f922742013-08-06 08:44:42 -07001755 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07001756 }
1757
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001758 if (prev != null && prev != next) {
Craig Mautner8c14c152015-01-15 17:32:07 -08001759 if (!mStackSupervisor.mWaitingVisibleActivities.contains(prev)
1760 && next != null && !next.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001761 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001762 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
1763 "Resuming top, waiting visible to hide: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001764 } else {
1765 // The next activity is already visible, so hide the previous
1766 // activity's windows right now so we can show the new one ASAP.
1767 // We only do this if the previous is finishing, which should mean
1768 // it is on top of the one being resumed so hiding it quickly
1769 // is good. Otherwise, we want to do the normal route of allowing
1770 // the resumed activity to be shown so we can decide if the
1771 // previous should actually be hidden depending on whether the
1772 // new one is found to be full-screen or not.
1773 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001774 mWindowManager.setAppVisibility(prev.appToken, false);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001775 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
1776 "Not waiting for visible to hide: " + prev + ", waitingVisible="
Craig Mautner8c14c152015-01-15 17:32:07 -08001777 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001778 + ", nowVisible=" + next.nowVisible);
1779 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001780 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
Craig Mautner8c14c152015-01-15 17:32:07 -08001781 "Previous already visible but still waiting to hide: " + prev
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001782 + ", waitingVisible="
1783 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
1784 + ", nowVisible=" + next.nowVisible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001785 }
1786 }
1787 }
1788
Dianne Hackborne7f97212011-02-24 14:40:20 -08001789 // Launching this app's activity, make sure the app is no longer
1790 // considered stopped.
1791 try {
1792 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07001793 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08001794 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08001795 } catch (IllegalArgumentException e) {
1796 Slog.w(TAG, "Failed trying to unstop package "
1797 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08001798 }
1799
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001800 // We are starting up the next activity, so tell the window manager
1801 // that the previous one will be hidden soon. This way it can know
1802 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07001803 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001804 if (prev != null) {
1805 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001806 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001807 "Prepare close transition: prev=" + prev);
1808 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001809 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001810 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001811 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001812 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001813 ? AppTransition.TRANSIT_ACTIVITY_CLOSE
1814 : AppTransition.TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001815 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001816 mWindowManager.setAppWillBeHidden(prev.appToken);
1817 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001818 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001819 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
1820 "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001821 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001822 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001823 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001824 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001825 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001826 ? AppTransition.TRANSIT_ACTIVITY_OPEN
Craig Mautnerbb742462014-07-07 15:28:55 -07001827 : next.mLaunchTaskBehind
1828 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
1829 : AppTransition.TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001830 }
1831 }
1832 if (false) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001833 mWindowManager.setAppWillBeHidden(prev.appToken);
1834 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001835 }
Craig Mautner967212c2013-04-13 21:10:58 -07001836 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001837 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001838 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001839 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001840 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001841 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001842 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001843 }
1844 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08001845
1846 Bundle resumeAnimOptions = null;
Craig Mautner525f3d92013-05-07 14:01:50 -07001847 if (anim) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08001848 ActivityOptions opts = next.getOptionsForTargetActivityLocked();
1849 if (opts != null) {
1850 resumeAnimOptions = opts.toBundle();
1851 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001852 next.applyOptionsLocked();
1853 } else {
1854 next.clearOptionsLocked();
1855 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001856
Craig Mautnercf910b02013-04-23 11:23:27 -07001857 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001858 if (next.app != null && next.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001859 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resume running: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001860
1861 // This activity is now becoming visible.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001862 mWindowManager.setAppVisibility(next.appToken, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001863
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001864 // schedule launch ticks to collect information about slow apps.
1865 next.startLaunchTickingLocked();
1866
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001867 ActivityRecord lastResumedActivity =
1868 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001869 ActivityState lastState = next.state;
1870
1871 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08001872
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001873 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + next + " (in existing)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001874 next.state = ActivityState.RESUMED;
1875 mResumedActivity = next;
1876 next.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08001877 mRecentTasks.addLocked(next.task);
Dianne Hackborndb926082013-10-31 16:32:44 -07001878 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001879 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07001880 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001881
1882 // Have the window manager re-evaluate the orientation of
1883 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07001884 boolean notUpdated = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001885 if (mStackSupervisor.isFrontStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001886 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07001887 mService.mConfiguration,
1888 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
1889 if (config != null) {
1890 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001891 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001892 notUpdated = !mService.updateConfigurationLocked(config, next, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001893 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07001894
Craig Mautner525f3d92013-05-07 14:01:50 -07001895 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001896 // The configuration update wasn't able to keep the existing
1897 // instance of the activity, and instead started a new one.
1898 // We should be all done, but let's just make sure our activity
1899 // is still at the top and schedule another run if something
1900 // weird happened.
1901 ActivityRecord nextNext = topRunningActivityLocked(null);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001902 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_STATES,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001903 "Activity config changed during resume: " + next
1904 + ", new next: " + nextNext);
1905 if (nextNext != next) {
1906 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07001907 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001908 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001909 if (mStackSupervisor.reportResumedActivityLocked(next)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001910 mNoAnimActivities.clear();
Craig Mautnercf910b02013-04-23 11:23:27 -07001911 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001912 return true;
1913 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001914 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001915 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001916 }
Craig Mautner58547802013-03-05 08:23:53 -08001917
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001918 try {
1919 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08001920 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001921 if (a != null) {
1922 final int N = a.size();
1923 if (!next.finishing && N > 0) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001924 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS,
1925 "Delivering results to " + next + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001926 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001927 }
1928 }
1929
1930 if (next.newIntents != null) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001931 next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001932 }
1933
Craig Mautner299f9602015-01-26 09:47:33 -08001934 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY, next.userId,
1935 System.identityHashCode(next), next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08001936
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001937 next.sleeping = false;
Craig Mautner2420ead2013-04-01 17:13:20 -07001938 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07001939 next.app.pendingUiClean = true;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001940 next.app.forceProcessStateUpTo(mService.mTopProcessState);
George Mount2c92c972014-03-20 09:38:23 -07001941 next.clearOptionsLocked();
Dianne Hackborna413dc02013-07-12 12:02:55 -07001942 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Adam Powellcfbe9be2013-11-06 14:58:58 -08001943 mService.isNextTransitionForward(), resumeAnimOptions);
Craig Mautner58547802013-03-05 08:23:53 -08001944
Craig Mautner0eea92c2013-05-16 13:35:39 -07001945 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001946
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001947 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001948 } catch (Exception e) {
1949 // Whoops, need to restart this activity!
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001950 if (DEBUG_STATES) Slog.v(TAG_STATES, "Resume failed; resetting state to "
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001951 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001952 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001953 if (lastStack != null) {
1954 lastStack.mResumedActivity = lastResumedActivity;
1955 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001956 Slog.i(TAG, "Restarting because process died: " + next);
1957 if (!next.hasBeenLaunched) {
1958 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001959 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
1960 mStackSupervisor.isFrontStack(lastStack)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001961 mWindowManager.setAppStartingWindow(
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001962 next.appToken, next.packageName, next.theme,
1963 mService.compatibilityInfoForPackageLocked(next.info.applicationInfo),
Adam Powell04fe6eb2013-05-31 14:39:48 -07001964 next.nonLocalizedLabel, next.labelRes, next.icon, next.logo,
1965 next.windowFlags, null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001966 }
George Mount2c92c972014-03-20 09:38:23 -07001967 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07001968 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001969 return true;
1970 }
1971
1972 // From this point on, if something goes wrong there is no way
1973 // to recover the activity.
1974 try {
1975 next.visible = true;
1976 completeResumeLocked(next);
1977 } catch (Exception e) {
1978 // If any exception gets thrown, toss away this
1979 // activity and try the next one.
1980 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001981 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001982 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07001983 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001984 return true;
1985 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001986 next.stopped = false;
1987
1988 } else {
1989 // Whoops, need to restart this activity!
1990 if (!next.hasBeenLaunched) {
1991 next.hasBeenLaunched = true;
1992 } else {
1993 if (SHOW_APP_STARTING_PREVIEW) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001994 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08001995 next.appToken, next.packageName, next.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07001996 mService.compatibilityInfoForPackageLocked(
1997 next.info.applicationInfo),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001998 next.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07001999 next.labelRes, next.icon, next.logo, next.windowFlags,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002000 null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002001 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002002 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Restarting: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002003 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002004 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Restarting " + next);
George Mount2c92c972014-03-20 09:38:23 -07002005 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002006 }
2007
Craig Mautnercf910b02013-04-23 11:23:27 -07002008 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002009 return true;
2010 }
2011
riddle_hsuc215a4f2014-12-27 12:10:45 +08002012 private TaskRecord getNextTask(TaskRecord targetTask) {
2013 final int index = mTaskHistory.indexOf(targetTask);
2014 if (index >= 0) {
2015 final int numTasks = mTaskHistory.size();
2016 for (int i = index + 1; i < numTasks; ++i) {
2017 TaskRecord task = mTaskHistory.get(i);
2018 if (task.userId == targetTask.userId) {
2019 return task;
2020 }
2021 }
2022 }
2023 return null;
2024 }
2025
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002026 private void insertTaskAtTop(TaskRecord task, ActivityRecord newActivity) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08002027 // If the moving task is over home stack, transfer its return type to next task
2028 if (task.isOverHomeStack()) {
2029 final TaskRecord nextTask = getNextTask(task);
2030 if (nextTask != null) {
2031 nextTask.setTaskToReturnTo(task.getTaskToReturnTo());
2032 }
2033 }
2034
Craig Mautner9c85c202013-10-04 20:11:26 -07002035 // If this is being moved to the top by another activity or being launched from the home
riddle_hsuc215a4f2014-12-27 12:10:45 +08002036 // activity, set mTaskToReturnTo accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08002037 if (isOnHomeDisplay()) {
2038 ActivityStack lastStack = mStackSupervisor.getLastStack();
2039 final boolean fromHome = lastStack.isHomeStack();
2040 if (!isHomeStack() && (fromHome || topTask() != task)) {
Craig Mautner3b1dac82014-07-15 09:51:33 -07002041 task.setTaskToReturnTo(fromHome
2042 ? lastStack.topTask() == null
2043 ? HOME_ACTIVITY_TYPE
2044 : lastStack.topTask().taskType
2045 : APPLICATION_ACTIVITY_TYPE);
Craig Mautnere0a38842013-12-16 16:14:02 -08002046 }
2047 } else {
Craig Mautner84984fa2014-06-19 11:19:20 -07002048 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner9c85c202013-10-04 20:11:26 -07002049 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07002050
Craig Mautnerac6f8432013-07-17 13:24:59 -07002051 mTaskHistory.remove(task);
2052 // Now put task at top.
Craig Mautnerbb742462014-07-07 15:28:55 -07002053 int taskNdx = mTaskHistory.size();
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002054 final boolean notShownWhenLocked =
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -07002055 (newActivity != null && (newActivity.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0)
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002056 || (newActivity == null && task.topRunningActivityLocked(null) == null);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002057 if (!mStackSupervisor.isCurrentProfileLocked(task.userId) && notShownWhenLocked) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002058 // Put non-current user tasks below current user tasks.
Craig Mautnerbb742462014-07-07 15:28:55 -07002059 while (--taskNdx >= 0) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002060 final TaskRecord tmpTask = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002061 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002062 || tmpTask.topRunningActivityLocked(null) == null) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002063 break;
2064 }
2065 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002066 ++taskNdx;
Craig Mautnerac6f8432013-07-17 13:24:59 -07002067 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002068 mTaskHistory.add(taskNdx, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07002069 updateTaskMovement(task, true);
Craig Mautnerac6f8432013-07-17 13:24:59 -07002070 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08002071
Craig Mautner8849a5e2013-04-02 16:41:03 -07002072 final void startActivityLocked(ActivityRecord r, boolean newTask,
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07002073 boolean doResume, boolean keepCurTransition, Bundle options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002074 TaskRecord rTask = r.task;
2075 final int taskId = rTask.taskId;
Craig Mautnerbb742462014-07-07 15:28:55 -07002076 // mLaunchTaskBehind tasks get placed at the back of the task stack.
2077 if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
Craig Mautner77878772013-03-04 19:46:24 -08002078 // Last activity in task had been removed or ActivityManagerService is reusing task.
2079 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08002080 // Might not even be in.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002081 insertTaskAtTop(rTask, r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002082 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08002083 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002084 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002085 if (!newTask) {
2086 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08002087 boolean startIt = true;
2088 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2089 task = mTaskHistory.get(taskNdx);
riddle_hsu9bcc6e82014-07-31 00:26:51 +08002090 if (task.getTopActivity() == null) {
2091 // All activities in task are finishing.
2092 continue;
2093 }
Craig Mautner70a86932013-02-28 22:37:44 -08002094 if (task == r.task) {
2095 // Here it is! Now, if this is not yet visible to the
2096 // user, then just add it without starting; it will
2097 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08002098 if (!startIt) {
2099 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
2100 + task, new RuntimeException("here").fillInStackTrace());
2101 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002102 r.putInHistory();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002103 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
2104 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -07002105 (r.info.flags & ActivityInfo.FLAG_SHOW_FOR_ALL_USERS) != 0,
Craig Mautnerbb742462014-07-07 15:28:55 -07002106 r.userId, r.info.configChanges, task.voiceSession != null,
2107 r.mLaunchTaskBehind);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002108 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002109 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002110 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002111 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002112 return;
2113 }
2114 break;
Craig Mautner70a86932013-02-28 22:37:44 -08002115 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002116 startIt = false;
2117 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002118 }
2119 }
2120
2121 // Place a new activity at top of stack, so it is next to interact
2122 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08002123
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002124 // If we are not placing the new activity frontmost, we do not want
2125 // to deliver the onUserLeaving callback to the actual frontmost
2126 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08002127 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002128 mStackSupervisor.mUserLeaving = false;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002129 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
Craig Mautner70a86932013-02-28 22:37:44 -08002130 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002131 }
Craig Mautner70a86932013-02-28 22:37:44 -08002132
2133 task = r.task;
2134
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002135 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08002136 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08002137 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08002138 task.addActivityToTop(r);
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002139 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08002140
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002141 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002142 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002143 // We want to show the starting preview window if we are
2144 // switching to a new task, or the next activity's process is
2145 // not currently running.
2146 boolean showStartingIcon = newTask;
2147 ProcessRecord proc = r.app;
2148 if (proc == null) {
2149 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
2150 }
2151 if (proc == null || proc.thread == null) {
2152 showStartingIcon = true;
2153 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002154 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002155 "Prepare open transition: starting " + r);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002156 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002157 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002158 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002159 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002160 mWindowManager.prepareAppTransition(newTask
Craig Mautnerbb742462014-07-07 15:28:55 -07002161 ? r.mLaunchTaskBehind
2162 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
2163 : AppTransition.TRANSIT_TASK_OPEN
Craig Mautner4b71aa12012-12-27 17:20:01 -08002164 : AppTransition.TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002165 mNoAnimActivities.remove(r);
2166 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002167 mWindowManager.addAppToken(task.mActivities.indexOf(r),
Craig Mautnerc00204b2013-03-05 15:02:14 -08002168 r.appToken, r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -07002169 (r.info.flags & ActivityInfo.FLAG_SHOW_FOR_ALL_USERS) != 0, r.userId,
Craig Mautnerbb742462014-07-07 15:28:55 -07002170 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002171 boolean doShow = true;
2172 if (newTask) {
2173 // Even though this activity is starting fresh, we still need
2174 // to reset it to make sure we apply affinities to move any
2175 // existing activities from other tasks in to it.
2176 // If the caller has requested that the target task be
2177 // reset, then do so.
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002178 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002179 resetTaskIfNeededLocked(r, r);
2180 doShow = topRunningNonDelayedActivityLocked(null) == r;
2181 }
George Mount70778d72014-07-01 16:33:45 -07002182 } else if (options != null && new ActivityOptions(options).getAnimationType()
2183 == ActivityOptions.ANIM_SCENE_TRANSITION) {
2184 doShow = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002185 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002186 if (r.mLaunchTaskBehind) {
2187 // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2188 // tell WindowManager that r is visible even though it is at the back of the stack.
2189 mWindowManager.setAppVisibility(r.appToken, true);
2190 ensureActivitiesVisibleLocked(null, 0);
2191 } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002192 // Figure out if we are transitioning from another activity that is
2193 // "has the same starting icon" as the next one. This allows the
2194 // window manager to keep the previous window it had previously
2195 // created, if it still had one.
2196 ActivityRecord prev = mResumedActivity;
2197 if (prev != null) {
2198 // We don't want to reuse the previous starting preview if:
2199 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07002200 if (prev.task != r.task) {
2201 prev = null;
2202 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002203 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07002204 else if (prev.nowVisible) {
2205 prev = null;
2206 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002207 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002208 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002209 r.appToken, r.packageName, r.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002210 mService.compatibilityInfoForPackageLocked(
2211 r.info.applicationInfo), r.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002212 r.labelRes, r.icon, r.logo, r.windowFlags,
Dianne Hackbornbe707852011-11-11 14:32:10 -08002213 prev != null ? prev.appToken : null, showStartingIcon);
Craig Mautnera61bc652013-10-28 15:43:18 -07002214 r.mStartingWindowShown = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002215 }
2216 } else {
2217 // If this is the first activity, don't do any fancy animations,
2218 // because there is nothing for it to animate on top of.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002219 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
Craig Mautnerc00204b2013-03-05 15:02:14 -08002220 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -07002221 (r.info.flags & ActivityInfo.FLAG_SHOW_FOR_ALL_USERS) != 0, r.userId,
Craig Mautnerbb742462014-07-07 15:28:55 -07002222 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002223 ActivityOptions.abort(options);
Craig Mautner233ceee2014-05-09 17:05:11 -07002224 options = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002225 }
2226 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002227 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002228 }
2229
2230 if (doResume) {
Craig Mautner233ceee2014-05-09 17:05:11 -07002231 mStackSupervisor.resumeTopActivitiesLocked(this, r, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002232 }
2233 }
2234
Dianne Hackbornbe707852011-11-11 14:32:10 -08002235 final void validateAppTokensLocked() {
2236 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08002237 mValidateAppTokens.ensureCapacity(numActivities());
2238 final int numTasks = mTaskHistory.size();
2239 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
2240 TaskRecord task = mTaskHistory.get(taskNdx);
2241 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07002242 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08002243 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002244 }
Craig Mautner000f0022013-02-26 15:04:29 -08002245 TaskGroup group = new TaskGroup();
2246 group.taskId = task.taskId;
2247 mValidateAppTokens.add(group);
2248 final int numActivities = activities.size();
2249 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
2250 final ActivityRecord r = activities.get(activityNdx);
2251 group.tokens.add(r.appToken);
2252 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002253 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002254 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002255 }
2256
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002257 /**
2258 * Perform a reset of the given task, if needed as part of launching it.
2259 * Returns the new HistoryRecord at the top of the task.
2260 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08002261 /**
2262 * Helper method for #resetTaskIfNeededLocked.
2263 * We are inside of the task being reset... we'll either finish this activity, push it out
2264 * for another task, or leave it as-is.
2265 * @param task The task containing the Activity (taskTop) that might be reset.
2266 * @param forceReset
2267 * @return An ActivityOptions that needs to be processed.
2268 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002269 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002270 ActivityOptions topOptions = null;
2271
2272 int replyChainEnd = -1;
2273 boolean canMoveOptions = true;
2274
2275 // We only do this for activities that are not the root of the task (since if we finish
2276 // the root, we may no longer have the task!).
2277 final ArrayList<ActivityRecord> activities = task.mActivities;
2278 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002279 final int rootActivityNdx = task.findEffectiveRootIndex();
2280 for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002281 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002282 if (target.frontOfTask)
2283 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002284
2285 final int flags = target.info.flags;
2286 final boolean finishOnTaskLaunch =
2287 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2288 final boolean allowTaskReparenting =
2289 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2290 final boolean clearWhenTaskReset =
2291 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
2292
2293 if (!finishOnTaskLaunch
2294 && !clearWhenTaskReset
2295 && target.resultTo != null) {
2296 // If this activity is sending a reply to a previous
2297 // activity, we can't do anything with it now until
2298 // we reach the start of the reply chain.
2299 // XXX note that we are assuming the result is always
2300 // to the previous activity, which is almost always
2301 // the case but we really shouldn't count on.
2302 if (replyChainEnd < 0) {
2303 replyChainEnd = i;
2304 }
2305 } else if (!finishOnTaskLaunch
2306 && !clearWhenTaskReset
2307 && allowTaskReparenting
2308 && target.taskAffinity != null
2309 && !target.taskAffinity.equals(task.affinity)) {
2310 // If this activity has an affinity for another
2311 // task, then we need to move it out of here. We will
2312 // move it as far out of the way as possible, to the
2313 // bottom of the activity stack. This also keeps it
2314 // correctly ordered with any activities we previously
2315 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08002316 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002317 final ActivityRecord bottom =
2318 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08002319 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002320 if (bottom != null && target.taskAffinity != null
2321 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002322 // If the activity currently at the bottom has the
2323 // same task affinity as the one we are moving,
2324 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08002325 targetTask = bottom.task;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002326 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07002327 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002328 } else {
Craig Mautner329f4122013-11-07 09:10:42 -08002329 targetTask = createTaskRecord(mStackSupervisor.getNextTaskId(), target.info,
Dianne Hackborn91097de2014-04-04 18:02:06 -07002330 null, null, null, false);
Craig Mautner329f4122013-11-07 09:10:42 -08002331 targetTask.affinityIntent = target.intent;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002332 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnere3a74d52013-02-22 14:14:58 -08002333 + " out to new task " + target.task);
2334 }
2335
Craig Mautnere3a74d52013-02-22 14:14:58 -08002336 final int targetTaskId = targetTask.taskId;
Craig Mautner83162a92015-01-26 14:43:30 -08002337 mWindowManager.setAppTask(target.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002338
Craig Mautner525f3d92013-05-07 14:01:50 -07002339 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002340 final int start = replyChainEnd < 0 ? i : replyChainEnd;
2341 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07002342 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002343 if (p.finishing) {
2344 continue;
2345 }
2346
Craig Mautnere3a74d52013-02-22 14:14:58 -08002347 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002348 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002349 topOptions = p.takeOptionsLocked();
2350 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002351 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002352 }
2353 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002354 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2355 "Removing activity " + p + " from task=" + task + " adding to task="
2356 + targetTask + " Callers=" + Debug.getCallers(4));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002357 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2358 "Pushing next activity " + p + " out to target's task " + target.task);
Craig Mautnera228ae92014-07-09 05:44:55 -07002359 p.setTask(targetTask, null);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002360 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08002361
Craig Mautner83162a92015-01-26 14:43:30 -08002362 mWindowManager.setAppTask(p.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002363 }
2364
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002365 mWindowManager.moveTaskToBottom(targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002366 if (VALIDATE_TOKENS) {
2367 validateAppTokensLocked();
2368 }
2369
2370 replyChainEnd = -1;
2371 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2372 // If the activity should just be removed -- either
2373 // because it asks for it, or the task should be
2374 // cleared -- then finish it and anything that is
2375 // part of its reply chain.
2376 int end;
2377 if (clearWhenTaskReset) {
2378 // In this case, we want to finish this activity
2379 // and everything above it, so be sneaky and pretend
2380 // like these are all in the reply chain.
Mark Lu4b5a9a02014-12-09 14:47:13 +08002381 end = activities.size() - 1;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002382 } else if (replyChainEnd < 0) {
2383 end = i;
2384 } else {
2385 end = replyChainEnd;
2386 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002387 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002388 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002389 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002390 if (p.finishing) {
2391 continue;
2392 }
2393 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002394 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002395 topOptions = p.takeOptionsLocked();
2396 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002397 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002398 }
2399 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002400 if (DEBUG_TASKS) Slog.w(TAG_TASKS,
Craig Mautner58547802013-03-05 08:23:53 -08002401 "resetTaskIntendedTask: calling finishActivity on " + p);
Todd Kennedy539db512014-12-15 09:57:55 -08002402 if (finishActivityLocked(
2403 p, Activity.RESULT_CANCELED, null, "reset-task", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002404 end--;
2405 srcPos--;
2406 }
2407 }
2408 replyChainEnd = -1;
2409 } else {
2410 // If we were in the middle of a chain, well the
2411 // activity that started it all doesn't want anything
2412 // special, so leave it all as-is.
2413 replyChainEnd = -1;
2414 }
2415 }
2416
2417 return topOptions;
2418 }
2419
2420 /**
2421 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2422 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2423 * @param affinityTask The task we are looking for an affinity to.
2424 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2425 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2426 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2427 */
Craig Mautner525f3d92013-05-07 14:01:50 -07002428 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08002429 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002430 int replyChainEnd = -1;
2431 final int taskId = task.taskId;
2432 final String taskAffinity = task.affinity;
2433
2434 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2435 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002436 final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
2437
2438 // Do not operate on or below the effective root Activity.
2439 for (int i = numActivities - 1; i > rootActivityNdx; --i) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002440 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002441 if (target.frontOfTask)
2442 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002443
2444 final int flags = target.info.flags;
2445 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2446 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2447
2448 if (target.resultTo != null) {
2449 // If this activity is sending a reply to a previous
2450 // activity, we can't do anything with it now until
2451 // we reach the start of the reply chain.
2452 // XXX note that we are assuming the result is always
2453 // to the previous activity, which is almost always
2454 // the case but we really shouldn't count on.
2455 if (replyChainEnd < 0) {
2456 replyChainEnd = i;
2457 }
2458 } else if (topTaskIsHigher
2459 && allowTaskReparenting
2460 && taskAffinity != null
2461 && taskAffinity.equals(target.taskAffinity)) {
2462 // This activity has an affinity for our task. Either remove it if we are
2463 // clearing or move it over to our task. Note that
2464 // we currently punt on the case where we are resetting a
2465 // task that is not at the top but who has activities above
2466 // with an affinity to it... this is really not a normal
2467 // case, and we will need to later pull that task to the front
2468 // and usually at that point we will do the reset and pick
2469 // up those remaining activities. (This only happens if
2470 // someone starts an activity in a new task from an activity
2471 // in a task that is not currently on top.)
2472 if (forceReset || finishOnTaskLaunch) {
2473 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002474 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2475 "Finishing task at index " + start + " to " + i);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002476 for (int srcPos = start; srcPos >= i; --srcPos) {
2477 final ActivityRecord p = activities.get(srcPos);
2478 if (p.finishing) {
2479 continue;
2480 }
Todd Kennedy539db512014-12-15 09:57:55 -08002481 finishActivityLocked(
2482 p, Activity.RESULT_CANCELED, null, "move-affinity", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002483 }
2484 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002485 if (taskInsertionPoint < 0) {
2486 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08002487
Craig Mautner77878772013-03-04 19:46:24 -08002488 }
Craig Mautner77878772013-03-04 19:46:24 -08002489
2490 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002491 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2492 "Reparenting from task=" + affinityTask + ":" + start + "-" + i
2493 + " to task=" + task + ":" + taskInsertionPoint);
Craig Mautner77878772013-03-04 19:46:24 -08002494 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002495 final ActivityRecord p = activities.get(srcPos);
Craig Mautnera228ae92014-07-09 05:44:55 -07002496 p.setTask(task, null);
Craig Mautner77878772013-03-04 19:46:24 -08002497 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002498
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002499 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2500 "Removing and adding activity " + p + " to stack at " + task
2501 + " callers=" + Debug.getCallers(3));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002502 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Pulling activity " + p
2503 + " from " + srcPos + " in to resetting task " + task);
Craig Mautner83162a92015-01-26 14:43:30 -08002504 mWindowManager.setAppTask(p.appToken, taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002505 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002506 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08002507 if (VALIDATE_TOKENS) {
2508 validateAppTokensLocked();
2509 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08002510
2511 // Now we've moved it in to place... but what if this is
2512 // a singleTop activity and we have put it on top of another
2513 // instance of the same activity? Then we drop the instance
2514 // below so it remains singleTop.
2515 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
2516 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002517 int targetNdx = taskActivities.indexOf(target);
2518 if (targetNdx > 0) {
2519 ActivityRecord p = taskActivities.get(targetNdx - 1);
2520 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08002521 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
2522 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002523 }
2524 }
2525 }
2526 }
2527
2528 replyChainEnd = -1;
2529 }
2530 }
Craig Mautner77878772013-03-04 19:46:24 -08002531 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002532 }
2533
Craig Mautner8849a5e2013-04-02 16:41:03 -07002534 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08002535 ActivityRecord newActivity) {
2536 boolean forceReset =
2537 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
2538 if (ACTIVITY_INACTIVE_RESET_TIME > 0
2539 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
2540 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
2541 forceReset = true;
2542 }
2543 }
2544
2545 final TaskRecord task = taskTop.task;
2546
2547 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
2548 * for remaining tasks. Used for later tasks to reparent to task. */
2549 boolean taskFound = false;
2550
2551 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
2552 ActivityOptions topOptions = null;
2553
Craig Mautner77878772013-03-04 19:46:24 -08002554 // Preserve the location for reparenting in the new task.
2555 int reparentInsertionPoint = -1;
2556
Craig Mautnere3a74d52013-02-22 14:14:58 -08002557 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
2558 final TaskRecord targetTask = mTaskHistory.get(i);
2559
2560 if (targetTask == task) {
2561 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
2562 taskFound = true;
2563 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002564 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
2565 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002566 }
2567 }
2568
Craig Mautner70a86932013-02-28 22:37:44 -08002569 int taskNdx = mTaskHistory.indexOf(task);
riddle_hsu1d7919a2015-03-11 17:09:50 +08002570 if (taskNdx >= 0) {
2571 do {
2572 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
2573 } while (taskTop == null && taskNdx >= 0);
2574 }
Craig Mautner70a86932013-02-28 22:37:44 -08002575
Craig Mautnere3a74d52013-02-22 14:14:58 -08002576 if (topOptions != null) {
2577 // If we got some ActivityOptions from an activity on top that
2578 // was removed from the task, propagate them to the new real top.
2579 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002580 taskTop.updateOptionsLocked(topOptions);
2581 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002582 topOptions.abort();
2583 }
2584 }
2585
2586 return taskTop;
2587 }
2588
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002589 void sendActivityResultLocked(int callingUid, ActivityRecord r,
2590 String resultWho, int requestCode, int resultCode, Intent data) {
2591
2592 if (callingUid > 0) {
2593 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002594 data, r.getUriPermissionsLocked(), r.userId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002595 }
2596
2597 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
2598 + " : who=" + resultWho + " req=" + requestCode
2599 + " res=" + resultCode + " data=" + data);
2600 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
2601 try {
2602 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
2603 list.add(new ResultInfo(resultWho, requestCode,
2604 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08002605 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002606 return;
2607 } catch (Exception e) {
2608 Slog.w(TAG, "Exception thrown sending result to " + r, e);
2609 }
2610 }
2611
2612 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
2613 }
2614
Craig Mautner299f9602015-01-26 09:47:33 -08002615 private void adjustFocusedActivityLocked(ActivityRecord r, String reason) {
Craig Mautner04f0b702013-10-22 12:31:01 -07002616 if (mStackSupervisor.isFrontStack(this) && mService.mFocusedActivity == r) {
2617 ActivityRecord next = topRunningActivityLocked(null);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002618 final String myReason = reason + " adjustFocus";
Craig Mautner04f0b702013-10-22 12:31:01 -07002619 if (next != r) {
2620 final TaskRecord task = r.task;
Craig Mautner84984fa2014-06-19 11:19:20 -07002621 if (r.frontOfTask && task == topTask() && task.isOverHomeStack()) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002622 // For non-fullscreen stack, we want to move the focus to the next visible
2623 // stack to prevent the home screen from moving to the top and obscuring
2624 // other visible stacks.
2625 if (!mFullscreen
2626 && adjustFocusToNextVisibleStackLocked(null, myReason)) {
2627 return;
2628 }
2629 // Move the home stack to the top if this stack is fullscreen or there is no
2630 // other visible stack.
Wale Ogunwaled80c2632015-03-13 10:26:26 -07002631 if (mStackSupervisor.moveHomeStackTaskToTop(
2632 task.getTaskToReturnTo(), myReason)) {
2633 // Activity focus was already adjusted. Nothing else to do...
2634 return;
2635 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002636 }
2637 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002638
2639 final ActivityRecord top = mStackSupervisor.topRunningActivityLocked();
Winson Chung648c83b2014-04-28 15:11:56 -07002640 if (top != null) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002641 mService.setFocusedActivityLocked(top, myReason);
Winson Chung648c83b2014-04-28 15:11:56 -07002642 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002643 }
2644 }
2645
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002646 private boolean adjustFocusToNextVisibleStackLocked(ActivityStack inStack, String reason) {
2647 final ActivityStack stack = (inStack != null) ? inStack : getNextVisibleStackLocked();
2648 final String myReason = reason + " adjustFocusToNextVisibleStack";
2649 if (stack == null) {
2650 return false;
2651 }
2652 final ActivityRecord top = stack.topRunningActivityLocked(null);
2653 if (top == null) {
2654 return false;
2655 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002656 mService.setFocusedActivityLocked(top, myReason);
2657 return true;
2658 }
2659
Craig Mautnerf3333272013-04-22 10:55:53 -07002660 final void stopActivityLocked(ActivityRecord r) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002661 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Stopping: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002662 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
2663 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
2664 if (!r.finishing) {
Dianne Hackborn91097de2014-04-04 18:02:06 -07002665 if (!mService.isSleeping()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002666 if (DEBUG_STATES) Slog.d(TAG_STATES, "no-history finish of " + r);
Christopher Tated3f175c2012-06-14 14:16:54 -07002667 requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
Todd Kennedy539db512014-12-15 09:57:55 -08002668 "stop-no-history", false);
Christopher Tated3f175c2012-06-14 14:16:54 -07002669 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002670 if (DEBUG_STATES) Slog.d(TAG_STATES, "Not finishing noHistory " + r
Christopher Tated3f175c2012-06-14 14:16:54 -07002671 + " on stop because we're just sleeping");
2672 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002673 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07002674 }
2675
2676 if (r.app != null && r.app.thread != null) {
Craig Mautner299f9602015-01-26 09:47:33 -08002677 adjustFocusedActivityLocked(r, "stopActivity");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002678 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002679 try {
2680 r.stopped = false;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002681 if (DEBUG_STATES) Slog.v(TAG_STATES,
2682 "Moving to STOPPING: " + r + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002683 r.state = ActivityState.STOPPING;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002684 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
2685 "Stopping visible=" + r.visible + " for " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002686 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002687 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002688 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002689 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Craig Mautnere11f2b72013-04-01 12:37:17 -07002690 if (mService.isSleepingOrShuttingDown()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002691 r.setSleeping(true);
2692 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002693 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002694 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002695 } catch (Exception e) {
2696 // Maybe just ignore exceptions here... if the process
2697 // has crashed, our death notification will clean things
2698 // up.
2699 Slog.w(TAG, "Exception thrown during pause", e);
2700 // Just in case, assume it to be stopped.
2701 r.stopped = true;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002702 if (DEBUG_STATES) Slog.v(TAG_STATES, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002703 r.state = ActivityState.STOPPED;
2704 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07002705 destroyActivityLocked(r, true, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002706 }
2707 }
2708 }
2709 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07002710
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002711 /**
2712 * @return Returns true if the activity is being finished, false if for
2713 * some reason it is being left as-is.
2714 */
2715 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002716 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002717 ActivityRecord r = isInStackLocked(token);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002718 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(TAG_STATES,
2719 "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07002720 + ", result=" + resultCode + ", data=" + resultData
2721 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002722 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002723 return false;
2724 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002725
Craig Mautnerd44711d2013-02-23 11:24:36 -08002726 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002727 return true;
2728 }
2729
Craig Mautnerd2328952013-03-05 12:46:26 -08002730 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08002731 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2732 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2733 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2734 ActivityRecord r = activities.get(activityNdx);
2735 if (r.resultTo == self && r.requestCode == requestCode) {
2736 if ((r.resultWho == null && resultWho == null) ||
2737 (r.resultWho != null && r.resultWho.equals(resultWho))) {
2738 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
2739 false);
2740 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002741 }
2742 }
2743 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002744 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002745 }
2746
Todd Kennedy539db512014-12-15 09:57:55 -08002747 final void finishTopRunningActivityLocked(ProcessRecord app, String reason) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002748 ActivityRecord r = topRunningActivityLocked(null);
2749 if (r != null && r.app == app) {
2750 // If the top running activity is from this crashing
2751 // process, then terminate it to avoid getting in a loop.
2752 Slog.w(TAG, " Force finishing activity "
2753 + r.intent.getComponent().flattenToShortString());
Craig Mautner9658b312013-02-28 10:55:59 -08002754 int taskNdx = mTaskHistory.indexOf(r.task);
2755 int activityNdx = r.task.mActivities.indexOf(r);
Todd Kennedy539db512014-12-15 09:57:55 -08002756 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002757 // Also terminate any activities below it that aren't yet
2758 // stopped, to avoid a situation where one will get
2759 // re-start our crashing activity once it gets resumed again.
Craig Mautner9658b312013-02-28 10:55:59 -08002760 --activityNdx;
2761 if (activityNdx < 0) {
2762 do {
2763 --taskNdx;
2764 if (taskNdx < 0) {
2765 break;
2766 }
2767 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
2768 } while (activityNdx < 0);
2769 }
2770 if (activityNdx >= 0) {
2771 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002772 if (r.state == ActivityState.RESUMED
2773 || r.state == ActivityState.PAUSING
2774 || r.state == ActivityState.PAUSED) {
Craig Mautner4ef26932013-09-18 15:15:52 -07002775 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002776 Slog.w(TAG, " Force finishing activity "
2777 + r.intent.getComponent().flattenToShortString());
Todd Kennedy539db512014-12-15 09:57:55 -08002778 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002779 }
2780 }
2781 }
2782 }
2783 }
2784
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07002785 final void finishVoiceTask(IVoiceInteractionSession session) {
2786 IBinder sessionBinder = session.asBinder();
2787 boolean didOne = false;
2788 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2789 TaskRecord tr = mTaskHistory.get(taskNdx);
2790 if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
2791 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
2792 ActivityRecord r = tr.mActivities.get(activityNdx);
2793 if (!r.finishing) {
2794 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
2795 false);
2796 didOne = true;
2797 }
2798 }
2799 }
2800 }
2801 if (didOne) {
2802 mService.updateOomAdjLocked();
2803 }
2804 }
2805
Craig Mautnerd2328952013-03-05 12:46:26 -08002806 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002807 ArrayList<ActivityRecord> activities = r.task.mActivities;
2808 for (int index = activities.indexOf(r); index >= 0; --index) {
2809 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08002810 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002811 break;
2812 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002813 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002814 }
2815 return true;
2816 }
2817
Dianne Hackborn5c607432012-02-28 14:44:19 -08002818 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
2819 // send the result
2820 ActivityRecord resultTo = r.resultTo;
2821 if (resultTo != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002822 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "Adding result to " + resultTo
Dianne Hackborn5c607432012-02-28 14:44:19 -08002823 + " who=" + r.resultWho + " req=" + r.requestCode
2824 + " res=" + resultCode + " data=" + resultData);
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002825 if (resultTo.userId != r.userId) {
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002826 if (resultData != null) {
Nicolas Prevotd1c99b12014-07-04 16:56:17 +01002827 resultData.setContentUserHint(r.userId);
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002828 }
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002829 }
Dianne Hackborn5c607432012-02-28 14:44:19 -08002830 if (r.info.applicationInfo.uid > 0) {
2831 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
2832 resultTo.packageName, resultData,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002833 resultTo.getUriPermissionsLocked(), resultTo.userId);
Dianne Hackborn5c607432012-02-28 14:44:19 -08002834 }
2835 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
2836 resultData);
2837 r.resultTo = null;
2838 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002839 else if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "No result destination from " + r);
Dianne Hackborn5c607432012-02-28 14:44:19 -08002840
2841 // Make sure this HistoryRecord is not holding on to other resources,
2842 // because clients have remote IPC references to this object so we
2843 // can't assume that will go away and want to avoid circular IPC refs.
2844 r.results = null;
2845 r.pendingResults = null;
2846 r.newIntents = null;
2847 r.icicle = null;
2848 }
2849
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002850 /**
2851 * @return Returns true if this activity has been removed from the history
2852 * list, or false if it is still in the list and will be removed later.
2853 */
Craig Mautnerf3333272013-04-22 10:55:53 -07002854 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
2855 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002856 if (r.finishing) {
2857 Slog.w(TAG, "Duplicate finish request for " + r);
2858 return false;
2859 }
2860
Wale Ogunwale7d701172015-03-11 15:36:30 -07002861 r.makeFinishingLocked();
Craig Mautneraea74a52014-03-08 14:23:10 -08002862 final TaskRecord task = r.task;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002863 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002864 r.userId, System.identityHashCode(r),
Craig Mautneraea74a52014-03-08 14:23:10 -08002865 task.taskId, r.shortComponentName, reason);
2866 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08002867 final int index = activities.indexOf(r);
2868 if (index < (activities.size() - 1)) {
Craig Mautneraea74a52014-03-08 14:23:10 -08002869 task.setFrontOfTask();
Craig Mautnerd00f4742014-03-12 14:17:26 -07002870 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08002871 // If the caller asked that this activity (and all above it)
2872 // be cleared when the task is reset, don't lose that information,
2873 // but propagate it up to the next activity.
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002874 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002875 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002876 }
2877 }
2878
2879 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07002880
Craig Mautner299f9602015-01-26 09:47:33 -08002881 adjustFocusedActivityLocked(r, "finishActivity");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002882
Dianne Hackborn5c607432012-02-28 14:44:19 -08002883 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07002884
Craig Mautnerde4ef022013-04-07 19:01:33 -07002885 if (mResumedActivity == r) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002886 boolean endTask = index <= 0;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002887 if (DEBUG_VISIBILITY || DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002888 "Prepare close transition: finishing " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002889 mWindowManager.prepareAppTransition(endTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08002890 ? AppTransition.TRANSIT_TASK_CLOSE
2891 : AppTransition.TRANSIT_ACTIVITY_CLOSE, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08002892
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002893 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002894 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002895
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002896 if (mPausingActivity == null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002897 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish needs to pause: " + r);
2898 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
2899 "finish() => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07002900 startPausingLocked(false, false, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002901 }
2902
Craig Mautneraea74a52014-03-08 14:23:10 -08002903 if (endTask) {
Craig Mautner15df08a2015-04-01 12:17:18 -07002904 mStackSupervisor.removeLockedTaskLocked(task);
Craig Mautneraea74a52014-03-08 14:23:10 -08002905 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002906 } else if (r.state != ActivityState.PAUSING) {
2907 // If the activity is PAUSING, we will complete the finish once
2908 // it is done pausing; else we can just directly finish it here.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002909 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish not pausing: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002910 return finishCurrentActivityLocked(r, FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002911 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002912 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish waiting for pause of: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002913 }
2914
2915 return false;
2916 }
2917
Craig Mautnerf3333272013-04-22 10:55:53 -07002918 static final int FINISH_IMMEDIATELY = 0;
2919 static final int FINISH_AFTER_PAUSE = 1;
2920 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002921
Craig Mautnerf3333272013-04-22 10:55:53 -07002922 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002923 // First things first: if this activity is currently visible,
2924 // and the resumed activity is not yet visible, then hold off on
2925 // finishing until the resumed one becomes visible.
2926 if (mode == FINISH_AFTER_VISIBLE && r.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002927 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
2928 mStackSupervisor.mStoppingActivities.add(r);
Craig Mautner29219d92013-04-16 20:19:12 -07002929 if (mStackSupervisor.mStoppingActivities.size() > 3
2930 || r.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002931 // If we already have a few activities waiting to stop,
2932 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07002933 // them out. Or if r is the last of activity of the last task the stack
2934 // will be empty and must be cleared immediately.
Craig Mautnerf3333272013-04-22 10:55:53 -07002935 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002936 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002937 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002938 }
2939 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002940 if (DEBUG_STATES) Slog.v(TAG_STATES,
2941 "Moving to STOPPING: "+ r + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002942 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002943 if (oomAdj) {
2944 mService.updateOomAdjLocked();
2945 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002946 return r;
2947 }
2948
2949 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002950 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002951 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002952 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002953 if (mResumedActivity == r) {
2954 mResumedActivity = null;
2955 }
2956 final ActivityState prevState = r.state;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002957 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002958 r.state = ActivityState.FINISHING;
2959
2960 if (mode == FINISH_IMMEDIATELY
2961 || prevState == ActivityState.STOPPED
2962 || prevState == ActivityState.INITIALIZING) {
2963 // If this activity is already stopped, we can just finish
2964 // it right now.
Wale Ogunwale7d701172015-03-11 15:36:30 -07002965 r.makeFinishingLocked();
Craig Mautneree2e45a2014-06-27 12:10:03 -07002966 boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm");
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002967 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07002968 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002969 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002970 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS,
Craig Mautnerd163e752014-06-13 17:18:47 -07002971 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
2972 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002973 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002974 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002975
2976 // Need to go through the full pause cycle to get this
2977 // activity into the stopped state and then finish it.
Wale Ogunwalee23149f2015-03-06 15:39:44 -08002978 if (DEBUG_ALL) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07002979 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02002980 r.resumeKeyDispatchingLocked();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002981 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002982 return r;
2983 }
2984
Craig Mautneree36c772014-07-16 14:56:05 -07002985 void finishAllActivitiesLocked(boolean immediately) {
2986 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002987 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2988 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2989 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2990 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07002991 noActivitiesInStack = false;
2992 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002993 continue;
2994 }
Craig Mautneree36c772014-07-16 14:56:05 -07002995 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002996 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
2997 }
2998 }
Craig Mautneree36c772014-07-16 14:56:05 -07002999 if (noActivitiesInStack) {
3000 mActivityContainer.onTaskListEmptyLocked();
3001 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003002 }
3003
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003004 final boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
3005 // Basic case: for simple app-centric recents, we need to recreate
3006 // the task if the affinity has changed.
3007 if (srec == null || srec.task.affinity == null ||
3008 !srec.task.affinity.equals(destAffinity)) {
3009 return true;
3010 }
3011 // Document-centric case: an app may be split in to multiple documents;
3012 // they need to re-create their task if this current activity is the root
3013 // of a document, unless simply finishing it will return them to the the
3014 // correct app behind.
Dianne Hackbornf3eb8432014-09-19 17:21:46 -07003015 if (srec.frontOfTask && srec.task != null && srec.task.getBaseIntent() != null
3016 && srec.task.getBaseIntent().isDocument()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003017 // Okay, this activity is at the root of its task. What to do, what to do...
3018 if (srec.task.getTaskToReturnTo() != ActivityRecord.APPLICATION_ACTIVITY_TYPE) {
3019 // Finishing won't return to an application, so we need to recreate.
3020 return true;
3021 }
3022 // We now need to get the task below it to determine what to do.
3023 int taskIdx = mTaskHistory.indexOf(srec.task);
3024 if (taskIdx <= 0) {
3025 Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
3026 return false;
3027 }
3028 if (taskIdx == 0) {
3029 // At the bottom of the stack, nothing to go back to.
3030 return true;
3031 }
3032 TaskRecord prevTask = mTaskHistory.get(taskIdx);
3033 if (!srec.task.affinity.equals(prevTask.affinity)) {
3034 // These are different apps, so need to recreate.
3035 return true;
3036 }
3037 }
3038 return false;
3039 }
3040
Wale Ogunwale7d701172015-03-11 15:36:30 -07003041 final boolean navigateUpToLocked(ActivityRecord srec, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003042 Intent resultData) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003043 final TaskRecord task = srec.task;
3044 final ArrayList<ActivityRecord> activities = task.mActivities;
3045 final int start = activities.indexOf(srec);
3046 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003047 return false;
3048 }
3049 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08003050 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003051 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08003052 final ComponentName dest = destIntent.getComponent();
3053 if (start > 0 && dest != null) {
3054 for (int i = finishTo; i >= 0; i--) {
3055 ActivityRecord r = activities.get(i);
3056 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003057 r.info.name.equals(dest.getClassName())) {
3058 finishTo = i;
3059 parent = r;
3060 foundParentInTask = true;
3061 break;
3062 }
3063 }
3064 }
3065
3066 IActivityController controller = mService.mController;
3067 if (controller != null) {
3068 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
3069 if (next != null) {
3070 // ask watcher if this is allowed
3071 boolean resumeOK = true;
3072 try {
3073 resumeOK = controller.activityResuming(next.packageName);
3074 } catch (RemoteException e) {
3075 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003076 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003077 }
3078
3079 if (!resumeOK) {
3080 return false;
3081 }
3082 }
3083 }
3084 final long origId = Binder.clearCallingIdentity();
3085 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003086 ActivityRecord r = activities.get(i);
3087 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003088 // Only return the supplied result for the first activity finished
3089 resultCode = Activity.RESULT_CANCELED;
3090 resultData = null;
3091 }
3092
3093 if (parent != null && foundParentInTask) {
3094 final int parentLaunchMode = parent.info.launchMode;
3095 final int destIntentFlags = destIntent.getFlags();
3096 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
3097 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
3098 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
3099 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003100 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
3101 srec.packageName);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003102 } else {
3103 try {
3104 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
3105 destIntent.getComponent(), 0, srec.userId);
Craig Mautner6170f732013-04-02 13:05:23 -07003106 int res = mStackSupervisor.startActivityLocked(srec.app.thread, destIntent,
Dianne Hackborn91097de2014-04-04 18:02:06 -07003107 null, aInfo, null, null, parent.appToken, null,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003108 0, -1, parent.launchedFromUid, parent.launchedFromPackage,
Dianne Hackborn95465202014-09-15 16:21:55 -07003109 -1, parent.launchedFromUid, 0, null, true, null, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003110 foundParentInTask = res == ActivityManager.START_SUCCESS;
3111 } catch (RemoteException e) {
3112 foundParentInTask = false;
3113 }
3114 requestFinishActivityLocked(parent.appToken, resultCode,
Todd Kennedy539db512014-12-15 09:57:55 -08003115 resultData, "navigate-top", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003116 }
3117 }
3118 Binder.restoreCallingIdentity(origId);
3119 return foundParentInTask;
3120 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003121 /**
3122 * Perform the common clean-up of an activity record. This is called both
3123 * as part of destroyActivityLocked() (when destroying the client-side
3124 * representation) and cleaning things up as a result of its hosting
3125 * processing going away, in which case there is no remaining client-side
3126 * state to destroy so only the cleanup here is needed.
Craig Mautneracebdc82015-02-24 10:53:03 -08003127 *
3128 * Note: Call before #removeActivityFromHistoryLocked.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003129 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003130 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
3131 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003132 if (mResumedActivity == r) {
3133 mResumedActivity = null;
3134 }
Craig Mautner1872ce32014-03-28 23:05:42 +00003135 if (mPausingActivity == r) {
3136 mPausingActivity = null;
3137 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07003138 mService.clearFocusedActivity(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003139
3140 r.configDestroy = false;
3141 r.frozenBeforeDestroy = false;
3142
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003143 if (setState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003144 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (cleaning up)");
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003145 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003146 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003147 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003148 }
3149
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003150 // Make sure this record is no longer in the pending finishes list.
3151 // This could happen, for example, if we are trimming activities
3152 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07003153 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003154 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07003155
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003156 // Remove any pending results.
3157 if (r.finishing && r.pendingResults != null) {
3158 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
3159 PendingIntentRecord rec = apr.get();
3160 if (rec != null) {
3161 mService.cancelIntentSenderLocked(rec, false);
3162 }
3163 }
3164 r.pendingResults = null;
3165 }
3166
3167 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07003168 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003169 }
3170
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003171 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003172 removeTimeoutsForActivityLocked(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003173 if (getVisibleBehindActivity() == r) {
3174 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003175 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003176 }
3177
3178 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07003179 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003180 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003181 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07003182 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07003183 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003184 }
3185
Craig Mautner299f9602015-01-26 09:47:33 -08003186 private void removeActivityFromHistoryLocked(ActivityRecord r, String reason) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003187 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003188 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
Wale Ogunwale7d701172015-03-11 15:36:30 -07003189 r.makeFinishingLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003190 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3191 "Removing activity " + r + " from stack callers=" + Debug.getCallers(5));
3192
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003193 r.takeFromHistory();
3194 removeTimeoutsForActivityLocked(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003195 if (DEBUG_STATES) Slog.v(TAG_STATES,
3196 "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003197 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003198 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003199 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003200 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003201 if (VALIDATE_TOKENS) {
3202 validateAppTokensLocked();
3203 }
Craig Mautner312ba862014-02-10 17:55:01 -08003204 final TaskRecord task = r.task;
3205 if (task != null && task.removeActivity(r)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003206 if (DEBUG_STACK) Slog.i(TAG_STACK,
Craig Mautner312ba862014-02-10 17:55:01 -08003207 "removeActivityFromHistoryLocked: last activity removed from " + this);
Craig Mautner84984fa2014-06-19 11:19:20 -07003208 if (mStackSupervisor.isFrontStack(this) && task == topTask() &&
3209 task.isOverHomeStack()) {
Craig Mautner299f9602015-01-26 09:47:33 -08003210 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(), reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003211 }
Craig Mautner299f9602015-01-26 09:47:33 -08003212 removeTask(task, reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003213 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003214 cleanUpActivityServicesLocked(r);
3215 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003216 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003217
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003218 /**
3219 * Perform clean-up of service connections in an activity record.
3220 */
3221 final void cleanUpActivityServicesLocked(ActivityRecord r) {
3222 // Throw away any services that have been bound by this activity.
3223 if (r.connections != null) {
3224 Iterator<ConnectionRecord> it = r.connections.iterator();
3225 while (it.hasNext()) {
3226 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07003227 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003228 }
3229 r.connections = null;
3230 }
3231 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003232
Craig Mautneree2e45a2014-06-27 12:10:03 -07003233 final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003234 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003235 msg.obj = new ScheduleDestroyArgs(owner, reason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003236 mHandler.sendMessage(msg);
3237 }
3238
Craig Mautneree2e45a2014-06-27 12:10:03 -07003239 final void destroyActivitiesLocked(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003240 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003241 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003242 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3243 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3244 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3245 final ActivityRecord r = activities.get(activityNdx);
3246 if (r.finishing) {
3247 continue;
3248 }
3249 if (r.fullscreen) {
3250 lastIsOpaque = true;
3251 }
3252 if (owner != null && r.app != owner) {
3253 continue;
3254 }
3255 if (!lastIsOpaque) {
3256 continue;
3257 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003258 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003259 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Destroying " + r + " in state " + r.state
Craig Mautnerd44711d2013-02-23 11:24:36 -08003260 + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003261 + " pausing=" + mPausingActivity + " for reason " + reason);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003262 if (destroyActivityLocked(r, true, reason)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003263 activityRemoved = true;
3264 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003265 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003266 }
3267 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003268 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07003269 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003270 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003271 }
3272
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003273 final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
3274 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003275 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
3276 "Destroying " + r + " in state " + r.state + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003277 + " pausing=" + mPausingActivity + " for reason " + reason);
3278 return destroyActivityLocked(r, true, reason);
3279 }
3280 return false;
3281 }
3282
3283 final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
3284 String reason) {
3285 // Iterate over tasks starting at the back (oldest) first.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003286 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Trying to release some activities in " + app);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003287 int maxTasks = tasks.size() / 4;
3288 if (maxTasks < 1) {
3289 maxTasks = 1;
3290 }
3291 int numReleased = 0;
3292 for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
3293 final TaskRecord task = mTaskHistory.get(taskNdx);
3294 if (!tasks.contains(task)) {
3295 continue;
3296 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003297 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Looking for activities to release in " + task);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003298 int curNum = 0;
3299 final ArrayList<ActivityRecord> activities = task.mActivities;
3300 for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
3301 final ActivityRecord activity = activities.get(actNdx);
3302 if (activity.app == app && activity.isDestroyable()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003303 if (DEBUG_RELEASE) Slog.v(TAG_RELEASE, "Destroying " + activity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003304 + " in state " + activity.state + " resumed=" + mResumedActivity
3305 + " pausing=" + mPausingActivity + " for reason " + reason);
3306 destroyActivityLocked(activity, true, reason);
3307 if (activities.get(actNdx) != activity) {
3308 // Was removed from list, back up so we don't miss the next one.
3309 actNdx--;
3310 }
3311 curNum++;
3312 }
3313 }
3314 if (curNum > 0) {
3315 numReleased += curNum;
3316 maxTasks--;
3317 if (mTaskHistory.get(taskNdx) != task) {
3318 // The entire task got removed, back up so we don't miss the next one.
3319 taskNdx--;
3320 }
3321 }
3322 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003323 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE,
3324 "Done releasing: did " + numReleased + " activities");
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003325 return numReleased;
3326 }
3327
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003328 /**
3329 * Destroy the current CLIENT SIDE instance of an activity. This may be
3330 * called both when actually finishing an activity, or when performing
3331 * a configuration switch where we destroy the current client-side object
3332 * but then create a new client-side object for this same HistoryRecord.
3333 */
Craig Mautneree2e45a2014-06-27 12:10:03 -07003334 final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003335 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(TAG_SWITCH,
3336 "Removing activity from " + reason + ": token=" + r
3337 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003338 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003339 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07003340 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003341
3342 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003343
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003344 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003345
3346 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003347
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003348 if (hadApp) {
3349 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003350 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003351 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
3352 mService.mHeavyWeightProcess = null;
3353 mService.mHandler.sendEmptyMessage(
3354 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
3355 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003356 if (r.app.activities.isEmpty()) {
Dianne Hackborn465fa392014-09-14 14:21:18 -07003357 // Update any services we are bound to that might care about whether
3358 // their client may have activities.
3359 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07003360 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07003361 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003362 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003363 }
3364 }
3365
3366 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003367
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003368 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003369 if (DEBUG_SWITCH) Slog.i(TAG_SWITCH, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003370 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003371 r.configChangeFlags);
3372 } catch (Exception e) {
3373 // We can just ignore exceptions here... if the process
3374 // has crashed, our death notification will clean things
3375 // up.
3376 //Slog.w(TAG, "Exception thrown during finish", e);
3377 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003378 removeActivityFromHistoryLocked(r, reason + " exceptionInScheduleDestroy");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003379 removedFromHistory = true;
3380 skipDestroy = true;
3381 }
3382 }
3383
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003384 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003385
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003386 // If the activity is finishing, we need to wait on removing it
3387 // from the list to give it a chance to do its cleanup. During
3388 // that time it may make calls back with its token so we need to
3389 // be able to find it on the list and so we don't want to remove
3390 // it from the list yet. Otherwise, we can just immediately put
3391 // it in the destroyed state since we are not removing it from the
3392 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003393 if (r.finishing && !skipDestroy) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003394 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYING: " + r
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003395 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003396 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003397 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003398 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
3399 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003400 if (DEBUG_STATES) Slog.v(TAG_STATES,
3401 "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003402 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003403 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003404 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003405 }
3406 } else {
3407 // remove this record from the history.
3408 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003409 removeActivityFromHistoryLocked(r, reason + " hadNoApp");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003410 removedFromHistory = true;
3411 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003412 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003413 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003414 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003415 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003416 }
3417 }
3418
3419 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003420
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003421 if (!mLRUActivities.remove(r) && hadApp) {
3422 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
3423 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003424
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003425 return removedFromHistory;
3426 }
3427
Craig Mautner299f9602015-01-26 09:47:33 -08003428 final void activityDestroyedLocked(IBinder token, String reason) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003429 final long origId = Binder.clearCallingIdentity();
3430 try {
Wale Ogunwale7d701172015-03-11 15:36:30 -07003431 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautnerd2328952013-03-05 12:46:26 -08003432 if (r != null) {
3433 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003434 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003435 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS, "activityDestroyedLocked: r=" + r);
Craig Mautnerd2328952013-03-05 12:46:26 -08003436
Wale Ogunwale60454db2015-01-23 16:05:07 -08003437 if (isInStackLocked(r) != null) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003438 if (r.state == ActivityState.DESTROYING) {
3439 cleanUpActivityLocked(r, true, false);
Craig Mautner299f9602015-01-26 09:47:33 -08003440 removeActivityFromHistoryLocked(r, reason);
Craig Mautnerd2328952013-03-05 12:46:26 -08003441 }
3442 }
Craig Mautner05d29032013-05-03 13:40:13 -07003443 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08003444 } finally {
3445 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003446 }
3447 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003448
Todd Kennedyaab56db2015-01-30 09:39:53 -08003449 void releaseBackgroundResources(ActivityRecord r) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003450 if (hasVisibleBehindActivity() &&
3451 !mHandler.hasMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG)) {
Craig Mautner64ccb702014-10-01 09:38:40 -07003452 if (r == topRunningActivityLocked(null)) {
3453 // Don't release the top activity if it has requested to run behind the next
3454 // activity.
3455 return;
3456 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003457 if (DEBUG_STATES) Slog.d(TAG_STATES, "releaseBackgroundResources activtyDisplay=" +
Jose Lima4b6c6692014-08-12 17:41:12 -07003458 mActivityContainer.mActivityDisplay + " visibleBehind=" + r + " app=" + r.app +
Craig Mautneree2e45a2014-06-27 12:10:03 -07003459 " thread=" + r.app.thread);
3460 if (r != null && r.app != null && r.app.thread != null) {
3461 try {
Jose Lima4b6c6692014-08-12 17:41:12 -07003462 r.app.thread.scheduleCancelVisibleBehind(r.appToken);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003463 } catch (RemoteException e) {
3464 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003465 mHandler.sendEmptyMessageDelayed(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG, 500);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003466 } else {
Jose Lima4b6c6692014-08-12 17:41:12 -07003467 Slog.e(TAG, "releaseBackgroundResources: activity " + r + " no longer running");
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003468 backgroundResourcesReleased();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003469 }
3470 }
3471 }
3472
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003473 final void backgroundResourcesReleased() {
Jose Lima4b6c6692014-08-12 17:41:12 -07003474 mHandler.removeMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG);
3475 final ActivityRecord r = getVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003476 if (r != null) {
3477 mStackSupervisor.mStoppingActivities.add(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003478 setVisibleBehindActivity(null);
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003479 mStackSupervisor.scheduleIdleTimeoutLocked(null);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003480 }
3481 mStackSupervisor.resumeTopActivitiesLocked();
3482 }
3483
Jose Lima4b6c6692014-08-12 17:41:12 -07003484 boolean hasVisibleBehindActivity() {
3485 return isAttached() && mActivityContainer.mActivityDisplay.hasVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003486 }
3487
Jose Lima4b6c6692014-08-12 17:41:12 -07003488 void setVisibleBehindActivity(ActivityRecord r) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003489 if (isAttached()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003490 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003491 }
3492 }
3493
Jose Lima4b6c6692014-08-12 17:41:12 -07003494 ActivityRecord getVisibleBehindActivity() {
3495 return isAttached() ? mActivityContainer.mActivityDisplay.mVisibleBehindActivity : null;
Craig Mautneree2e45a2014-06-27 12:10:03 -07003496 }
3497
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003498 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
3499 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003500 int i = list.size();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003501 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3502 "Removing app " + app + " from list " + listName + " with " + i + " entries");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003503 while (i > 0) {
3504 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003505 ActivityRecord r = list.get(i);
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003506 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003507 if (r.app == app) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003508 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003509 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003510 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003511 }
3512 }
3513 }
3514
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003515 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
3516 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003517 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
3518 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07003519 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
3520 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003521 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003522 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07003523 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
3524 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003525
3526 boolean hasVisibleActivities = false;
3527
3528 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08003529 int i = numActivities();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003530 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3531 "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08003532 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3533 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3534 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3535 final ActivityRecord r = activities.get(activityNdx);
3536 --i;
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003537 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3538 "Record #" + i + " " + r + ": app=" + r.app);
Craig Mautner0247fc82013-02-28 14:32:06 -08003539 if (r.app == app) {
riddle_hsu558e8492015-04-02 16:43:13 +08003540 if (r.visible) {
3541 hasVisibleActivities = true;
3542 }
Craig Mautneracebdc82015-02-24 10:53:03 -08003543 final boolean remove;
Craig Mautner0247fc82013-02-28 14:32:06 -08003544 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
3545 // Don't currently have state for the activity, or
3546 // it is finishing -- always remove it.
3547 remove = true;
3548 } else if (r.launchCount > 2 &&
3549 r.lastLaunchTime > (SystemClock.uptimeMillis()-60000)) {
3550 // We have launched this activity too many times since it was
3551 // able to run, so give up and remove it.
3552 remove = true;
3553 } else {
3554 // The process may be gone, but the activity lives on!
3555 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003556 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003557 if (remove) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003558 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) Slog.i(TAG_ADD_REMOVE,
3559 "Removing activity " + r + " from stack at " + i
3560 + ": haveState=" + r.haveState
3561 + " stateNotNeeded=" + r.stateNotNeeded
3562 + " finishing=" + r.finishing
3563 + " state=" + r.state + " callers=" + Debug.getCallers(5));
Craig Mautner0247fc82013-02-28 14:32:06 -08003564 if (!r.finishing) {
3565 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
3566 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3567 r.userId, System.identityHashCode(r),
3568 r.task.taskId, r.shortComponentName,
3569 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07003570 if (r.state == ActivityState.RESUMED) {
3571 mService.updateUsageStats(r, false);
3572 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003573 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003574 } else {
3575 // We have the current state for this activity, so
3576 // it can be restarted later when needed.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003577 if (DEBUG_ALL) Slog.v(TAG, "Keeping entry, setting app to null");
3578 if (DEBUG_APP) Slog.v(TAG_APP,
3579 "Clearing app during removeHistory for activity " + r);
Craig Mautner0247fc82013-02-28 14:32:06 -08003580 r.app = null;
3581 r.nowVisible = false;
3582 if (!r.haveState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003583 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
Craig Mautner0247fc82013-02-28 14:32:06 -08003584 "App died, clearing saved state of " + r);
3585 r.icicle = null;
3586 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003587 }
Craig Mautnerd2328952013-03-05 12:46:26 -08003588 cleanUpActivityLocked(r, true, true);
Craig Mautneracebdc82015-02-24 10:53:03 -08003589 if (remove) {
3590 removeActivityFromHistoryLocked(r, "appDied");
3591 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003592 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003593 }
3594 }
3595
3596 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003597 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003598
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003599 final void updateTransitLocked(int transit, Bundle options) {
3600 if (options != null) {
3601 ActivityRecord r = topRunningActivityLocked(null);
3602 if (r != null && r.state != ActivityState.RESUMED) {
3603 r.updateOptionsLocked(options);
3604 } else {
3605 ActivityOptions.abort(options);
3606 }
3607 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003608 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003609 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003610
Craig Mautner21d24a22014-04-23 11:45:37 -07003611 void updateTaskMovement(TaskRecord task, boolean toFront) {
3612 if (task.isPersistable) {
3613 task.mLastTimeMoved = System.currentTimeMillis();
3614 // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
3615 // recently will be most negative, tasks sent to the bottom before that will be less
3616 // negative. Similarly for recent tasks moved to the top which will be most positive.
3617 if (!toFront) {
3618 task.mLastTimeMoved *= -1;
3619 }
3620 }
3621 }
3622
Craig Mautner84984fa2014-06-19 11:19:20 -07003623 void moveHomeStackTaskToTop(int homeStackTaskType) {
Craig Mautnera82aa092013-09-13 15:34:08 -07003624 final int top = mTaskHistory.size() - 1;
3625 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
3626 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003627 if (task.taskType == homeStackTaskType) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003628 if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG_STACK,
3629 "moveHomeStackTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07003630 mTaskHistory.remove(taskNdx);
3631 mTaskHistory.add(top, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07003632 updateTaskMovement(task, true);
Craig Mautnera82aa092013-09-13 15:34:08 -07003633 return;
3634 }
3635 }
3636 }
3637
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003638 final void moveTaskToFrontLocked(TaskRecord tr, boolean noAnimation, Bundle options,
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07003639 AppTimeTracker timeTracker, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003640 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003641
Craig Mautner11bf9a52013-02-19 14:08:51 -08003642 final int numTasks = mTaskHistory.size();
3643 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07003644 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003645 // nothing to do!
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003646 if (noAnimation) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003647 ActivityOptions.abort(options);
3648 } else {
3649 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
3650 }
3651 return;
3652 }
3653
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07003654 if (timeTracker != null) {
3655 // The caller wants a time tracker associated with this task.
3656 for (int i = tr.mActivities.size() - 1; i >= 0; i--) {
3657 tr.mActivities.get(i).appTimeTracker = timeTracker;
3658 }
3659 }
3660
Craig Mautner11bf9a52013-02-19 14:08:51 -08003661 // Shift all activities with this task up to the top
3662 // of the stack, keeping them in the same internal order.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07003663 insertTaskAtTop(tr, null);
Wale Ogunwaled80c2632015-03-13 10:26:26 -07003664
3665 // Set focus to the top running activity of this stack.
3666 ActivityRecord r = topRunningActivityLocked(null);
3667 mService.setFocusedActivityLocked(r, reason);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003668
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003669 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to front transition: task=" + tr);
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003670 if (noAnimation) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003671 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003672 if (r != null) {
3673 mNoAnimActivities.add(r);
3674 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003675 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003676 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08003677 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003678 }
Craig Mautner30e2d722013-02-12 11:30:16 -08003679
Craig Mautner05d29032013-05-03 13:40:13 -07003680 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautner58547802013-03-05 08:23:53 -08003681 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003682
3683 if (VALIDATE_TOKENS) {
3684 validateAppTokensLocked();
3685 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003686 }
3687
3688 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003689 * Worker method for rearranging history stack. Implements the function of moving all
3690 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003691 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003692 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003693 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
3694 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003695 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003696 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003697 * @return Returns true if the move completed, false if not.
3698 */
Craig Mautner299f9602015-01-26 09:47:33 -08003699 final boolean moveTaskToBackLocked(int taskId) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003700 final TaskRecord tr = taskForIdLocked(taskId);
3701 if (tr == null) {
3702 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
3703 return false;
3704 }
3705
3706 Slog.i(TAG, "moveTaskToBack: " + tr);
Craig Mautner15df08a2015-04-01 12:17:18 -07003707 mStackSupervisor.removeLockedTaskLocked(tr);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003708
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003709 // If we have a watcher, preflight the move before committing to it. First check
3710 // for *other* available tasks, but if none are available, then try again allowing the
3711 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003712 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003713 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003714 if (next == null) {
3715 next = topRunningActivityLocked(null, 0);
3716 }
3717 if (next != null) {
3718 // ask watcher if this is allowed
3719 boolean moveOK = true;
3720 try {
3721 moveOK = mService.mController.activityResuming(next.packageName);
3722 } catch (RemoteException e) {
3723 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003724 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003725 }
3726 if (!moveOK) {
3727 return false;
3728 }
3729 }
3730 }
3731
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003732 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003733
riddle_hsuc215a4f2014-12-27 12:10:45 +08003734 boolean prevIsHome = false;
3735 if (tr.isOverHomeStack()) {
3736 final TaskRecord nextTask = getNextTask(tr);
3737 if (nextTask != null) {
3738 nextTask.setTaskToReturnTo(tr.getTaskToReturnTo());
3739 } else {
3740 prevIsHome = true;
3741 }
3742 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08003743 mTaskHistory.remove(tr);
3744 mTaskHistory.add(0, tr);
Craig Mautner21d24a22014-04-23 11:45:37 -07003745 updateTaskMovement(tr, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003746
Craig Mautnerc8143c62013-09-03 12:15:57 -07003747 // There is an assumption that moving a task to the back moves it behind the home activity.
3748 // We make sure here that some activity in the stack will launch home.
Craig Mautnerc8143c62013-09-03 12:15:57 -07003749 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003750 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
3751 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003752 if (task.isOverHomeStack()) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003753 break;
3754 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003755 if (taskNdx == 1) {
3756 // Set the last task before tr to go to home.
Craig Mautner84984fa2014-06-19 11:19:20 -07003757 task.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003758 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003759 }
3760
Craig Mautner299f9602015-01-26 09:47:33 -08003761 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_TASK_TO_BACK, false);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003762 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003763
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003764 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08003765 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003766 }
3767
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003768 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
riddle_hsuc215a4f2014-12-27 12:10:45 +08003769 if (prevIsHome || task == tr && tr.isOverHomeStack()
3770 || numTasks <= 1 && isOnHomeDisplay()) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07003771 if (!mService.mBooting && !mService.mBooted) {
3772 // Not ready yet!
3773 return false;
3774 }
Craig Mautner84984fa2014-06-19 11:19:20 -07003775 final int taskToReturnTo = tr.getTaskToReturnTo();
3776 tr.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner299f9602015-01-26 09:47:33 -08003777 return mStackSupervisor.resumeHomeStackTask(taskToReturnTo, null, "moveTaskToBack");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003778 }
3779
Craig Mautner05d29032013-05-03 13:40:13 -07003780 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003781 return true;
3782 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07003783
Craig Mautner8849a5e2013-04-02 16:41:03 -07003784 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003785 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08003786 final Uri data = r.intent.getData();
3787 final String strData = data != null ? data.toSafeString() : null;
3788
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003789 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003790 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003791 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08003792 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003793 }
3794
3795 /**
3796 * Make sure the given activity matches the current configuration. Returns
3797 * false if the activity had to be destroyed. Returns true if the
3798 * configuration is the same, or the activity will remain running as-is
3799 * for whatever reason. Ensures the HistoryRecord is updated with the
3800 * correct configuration and all other bookkeeping is handled.
3801 */
3802 final boolean ensureActivityConfigurationLocked(ActivityRecord r,
3803 int globalChanges) {
3804 if (mConfigWillChange) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003805 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003806 "Skipping config check (will change): " + r);
3807 return true;
3808 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003809
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003810 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003811 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003812
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08003813 // Make sure the current stack override configuration is supported by the top task
3814 // before continuing.
3815 final TaskRecord topTask = topTask();
3816 if (topTask != null && ((topTask.mResizeable && mForcedFullscreen)
3817 || (!topTask.mResizeable && !mFullscreen))) {
3818 final boolean prevFullscreen = mFullscreen;
3819 final Configuration newOverrideConfig =
3820 mWindowManager.forceStackToFullscreen(mStackId, !topTask.mResizeable);
3821 updateOverrideConfiguration(newOverrideConfig);
3822 mForcedFullscreen = !prevFullscreen && mFullscreen;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003823 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08003824 "Updated stack config to support task=" + topTask
3825 + " resizeable=" + topTask.mResizeable
3826 + " mForcedFullscreen=" + mForcedFullscreen
3827 + " prevFullscreen=" + prevFullscreen
3828 + " mFullscreen=" + mFullscreen);
3829 }
3830
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003831 // Short circuit: if the two configurations are the exact same
3832 // object (the common case), then there is nothing to do.
3833 Configuration newConfig = mService.mConfiguration;
Wale Ogunwale60454db2015-01-23 16:05:07 -08003834 if (r.configuration == newConfig
3835 && r.stackConfigOverride == mOverrideConfig
3836 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003837 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003838 "Configuration unchanged in " + r);
3839 return true;
3840 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003841
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003842 // We don't worry about activities that are finishing.
3843 if (r.finishing) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003844 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003845 "Configuration doesn't matter in finishing " + r);
3846 r.stopFreezingScreenLocked(false);
3847 return true;
3848 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003849
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003850 // Okay we now are going to make this activity have the new config.
3851 // But then we need to figure out how it needs to deal with that.
Wale Ogunwale60454db2015-01-23 16:05:07 -08003852 final Configuration oldConfig = r.configuration;
3853 final Configuration oldStackOverride = r.stackConfigOverride;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003854 r.configuration = newConfig;
Wale Ogunwale60454db2015-01-23 16:05:07 -08003855 r.stackConfigOverride = mOverrideConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003856
3857 // Determine what has changed. May be nothing, if this is a config
3858 // that has come back from the app after going idle. In that case
3859 // we just want to leave the official config object now in the
3860 // activity and do nothing else.
Wale Ogunwale60454db2015-01-23 16:05:07 -08003861 int stackChanges = oldStackOverride.diff(mOverrideConfig);
Wale Ogunwalea9281272015-02-07 14:04:19 -08003862 if (stackChanges == 0) {
3863 // {@link Configuration#diff} doesn't catch changes from unset values.
3864 // Check for changes we care about.
3865 if (oldStackOverride.orientation != mOverrideConfig.orientation) {
3866 stackChanges |= ActivityInfo.CONFIG_ORIENTATION;
3867 }
3868 if (oldStackOverride.screenHeightDp != mOverrideConfig.screenHeightDp
3869 || oldStackOverride.screenWidthDp != mOverrideConfig.screenWidthDp) {
3870 stackChanges |= ActivityInfo.CONFIG_SCREEN_SIZE;
3871 }
3872 if (oldStackOverride.smallestScreenWidthDp != mOverrideConfig.smallestScreenWidthDp) {
3873 stackChanges |= ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE;
3874 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08003875 }
3876 final int changes = oldConfig.diff(newConfig) | stackChanges;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003877 if (changes == 0 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003878 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003879 "Configuration no differences in " + r);
3880 return true;
3881 }
3882
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003883 // If the activity isn't currently running, just leave the new
3884 // configuration and it will pick that up next time it starts.
3885 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003886 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003887 "Configuration doesn't matter not running " + r);
3888 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003889 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003890 return true;
3891 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003892
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003893 // Figure out how to handle the changes between the configurations.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003894 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
3895 "Checking to restart " + r.info.name + ": changed=0x"
3896 + Integer.toHexString(changes) + ", handles=0x"
3897 + Integer.toHexString(r.info.getRealConfigChanged()) + ", newConfig=" + newConfig);
3898
Dianne Hackborne6676352011-06-01 16:51:20 -07003899 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003900 // Aha, the activity isn't handling the change, so DIE DIE DIE.
3901 r.configChangeFlags |= changes;
3902 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003903 r.forceNewConfig = false;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003904 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003905 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003906 "Config is destroying non-running " + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003907 destroyActivityLocked(r, true, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003908 } else if (r.state == ActivityState.PAUSING) {
3909 // A little annoying: we are waiting for this activity to
3910 // finish pausing. Let's not do anything now, but just
3911 // flag that it needs to be restarted when done pausing.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003912 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003913 "Config is skipping already pausing " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003914 r.configDestroy = true;
3915 return true;
3916 } else if (r.state == ActivityState.RESUMED) {
3917 // Try to optimize this case: the configuration is changing
3918 // and we need to restart the top, resumed activity.
3919 // Instead of doing the normal handshaking, just say
3920 // "restart!".
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003921 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003922 "Config is relaunching resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003923 relaunchActivityLocked(r, r.configChangeFlags, true);
3924 r.configChangeFlags = 0;
3925 } else {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003926 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003927 "Config is relaunching non-resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003928 relaunchActivityLocked(r, r.configChangeFlags, false);
3929 r.configChangeFlags = 0;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003930 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003931
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003932 // All done... tell the caller we weren't able to keep this
3933 // activity around.
3934 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003935 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003936
Wale Ogunwalec2607b42015-02-07 16:16:59 -08003937 // Default case: the activity can handle this new configuration, so hand it over.
3938 // NOTE: We only forward the stack override configuration as the system level configuration
3939 // changes is always sent to all processes when they happen so it can just use whatever
3940 // system level configuration it last got.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003941 if (r.app != null && r.app.thread != null) {
3942 try {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003943 if (DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION, "Sending new config to " + r);
Wale Ogunwalec2607b42015-02-07 16:16:59 -08003944 r.app.thread.scheduleActivityConfigurationChanged(
3945 r.appToken, new Configuration(mOverrideConfig));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003946 } catch (RemoteException e) {
3947 // If process died, whatever.
3948 }
3949 }
3950 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003951
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003952 return true;
3953 }
3954
Craig Mautner2568c3a2015-03-26 14:22:34 -07003955 private boolean relaunchActivityLocked(ActivityRecord r, int changes, boolean andResume) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003956 List<ResultInfo> results = null;
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003957 List<ReferrerIntent> newIntents = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003958 if (andResume) {
3959 results = r.results;
3960 newIntents = r.newIntents;
3961 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003962 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
3963 "Relaunching: " + r + " with results=" + results + " newIntents=" + newIntents
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003964 + " andResume=" + andResume);
3965 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003966 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003967 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003968
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003969 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003970
Craig Mautner34b73df2014-01-12 21:11:08 -08003971 mStackSupervisor.removeChildActivityContainers(r);
3972
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003973 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003974 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH,
3975 "Moving to " + (andResume ? "RESUMED" : "PAUSED") + " Relaunching " + r);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003976 r.forceNewConfig = false;
Wale Ogunwale60454db2015-01-23 16:05:07 -08003977 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents, changes,
3978 !andResume, new Configuration(mService.mConfiguration),
3979 new Configuration(mOverrideConfig));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003980 // Note: don't need to call pauseIfSleepingLocked() here, because
3981 // the caller will only pass in 'andResume' if this activity is
3982 // currently resumed, which implies we aren't sleeping.
3983 } catch (RemoteException e) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003984 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003985 }
3986
3987 if (andResume) {
3988 r.results = null;
3989 r.newIntents = null;
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003990 r.state = ActivityState.RESUMED;
3991 } else {
3992 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
3993 r.state = ActivityState.PAUSED;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003994 }
3995
3996 return true;
3997 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003998
3999 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004000 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4001 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4002 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4003 final ActivityRecord r = activities.get(activityNdx);
4004 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08004005 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08004006 }
4007 if (r.fullscreen && !r.finishing) {
4008 return false;
4009 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004010 }
4011 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07004012 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautner34b73df2014-01-12 21:11:08 -08004013 if (r == null) {
4014 return false;
4015 }
4016 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
4017 + " would have returned true for r=" + r);
4018 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08004019 }
4020
4021 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004022 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4023 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4024 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4025 final ActivityRecord r = activities.get(activityNdx);
4026 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004027 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004028 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004029 }
4030 }
4031 }
4032
Wale Ogunwale540e1232015-05-01 15:35:39 -07004033 boolean finishDisabledPackageActivitiesLocked(String packageName, Set<String> filterByClasses,
4034 boolean doit, boolean evenPersistent, int userId) {
Craig Mautnercae015f2013-02-08 14:31:27 -08004035 boolean didSomething = false;
4036 TaskRecord lastTask = null;
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004037 ComponentName homeActivity = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08004038 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4039 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4040 int numActivities = activities.size();
4041 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
4042 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004043 final boolean sameComponent =
4044 (r.packageName.equals(packageName) && (filterByClasses == null
4045 || filterByClasses.contains(r.realActivity.getClassName())))
4046 || (packageName == null && r.userId == userId);
Craig Mautner56f52db2013-02-25 10:03:01 -08004047 if ((userId == UserHandle.USER_ALL || r.userId == userId)
Wale Ogunwale540e1232015-05-01 15:35:39 -07004048 && (sameComponent || r.task == lastTask)
Craig Mautner56f52db2013-02-25 10:03:01 -08004049 && (r.app == null || evenPersistent || !r.app.persistent)) {
4050 if (!doit) {
4051 if (r.finishing) {
4052 // If this activity is just finishing, then it is not
4053 // interesting as far as something to stop.
4054 continue;
4055 }
4056 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08004057 }
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004058 if (r.isHomeActivity()) {
4059 if (homeActivity != null && homeActivity.equals(r.realActivity)) {
4060 Slog.i(TAG, "Skip force-stop again " + r);
4061 continue;
4062 } else {
4063 homeActivity = r.realActivity;
4064 }
4065 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004066 didSomething = true;
4067 Slog.i(TAG, " Force finishing activity " + r);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004068 if (sameComponent) {
Craig Mautner56f52db2013-02-25 10:03:01 -08004069 if (r.app != null) {
4070 r.app.removed = true;
4071 }
4072 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08004073 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004074 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07004075 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
4076 true)) {
4077 // r has been deleted from mActivities, accommodate.
4078 --numActivities;
4079 --activityNdx;
4080 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004081 }
4082 }
4083 }
4084 return didSomething;
4085 }
4086
Dianne Hackborn09233282014-04-30 11:33:59 -07004087 void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
riddle_hsuddc74152015-04-07 11:30:09 +08004088 boolean focusedStack = mStackSupervisor.getFocusedStack() == this;
4089 boolean topTask = true;
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004090 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004091 final TaskRecord task = mTaskHistory.get(taskNdx);
riddle_hsuddc74152015-04-07 11:30:09 +08004092 if (task.getTopActivity() == null) {
4093 continue;
4094 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004095 ActivityRecord r = null;
4096 ActivityRecord top = null;
Wale Ogunwale6035e012015-04-14 15:54:10 -07004097 ActivityRecord tmp;
Craig Mautneraab647e2013-02-28 16:31:36 -08004098 int numActivities = 0;
4099 int numRunning = 0;
4100 final ArrayList<ActivityRecord> activities = task.mActivities;
Dianne Hackborn885fbe52014-08-23 15:23:58 -07004101 if (!allowed && !task.isHomeTask() && task.effectiveUid != callingUid) {
Dianne Hackborn09233282014-04-30 11:33:59 -07004102 continue;
4103 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004104 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Wale Ogunwale6035e012015-04-14 15:54:10 -07004105 tmp = activities.get(activityNdx);
4106 if (tmp.finishing) {
4107 continue;
4108 }
4109 r = tmp;
Craig Mautnercae015f2013-02-08 14:31:27 -08004110
Craig Mautneraab647e2013-02-28 16:31:36 -08004111 // Initialize state for next task if needed.
4112 if (top == null || (top.state == ActivityState.INITIALIZING)) {
4113 top = r;
4114 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08004115 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004116
4117 // Add 'r' into the current task.
4118 numActivities++;
4119 if (r.app != null && r.app.thread != null) {
4120 numRunning++;
4121 }
4122
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004123 if (DEBUG_ALL) Slog.v(
Craig Mautneraab647e2013-02-28 16:31:36 -08004124 TAG, r.intent.getComponent().flattenToShortString()
4125 + ": task=" + r.task);
4126 }
4127
4128 RunningTaskInfo ci = new RunningTaskInfo();
4129 ci.id = task.taskId;
4130 ci.baseActivity = r.intent.getComponent();
4131 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004132 ci.lastActiveTime = task.lastActiveTime;
riddle_hsuddc74152015-04-07 11:30:09 +08004133 if (focusedStack && topTask) {
4134 // Give the latest time to ensure foreground task can be sorted
4135 // at the first, because lastActiveTime of creating task is 0.
4136 ci.lastActiveTime = System.currentTimeMillis();
4137 topTask = false;
4138 }
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004139
Craig Mautnerc0ffce52014-07-01 12:38:52 -07004140 if (top.task != null) {
4141 ci.description = top.task.lastDescription;
Craig Mautneraab647e2013-02-28 16:31:36 -08004142 }
4143 ci.numActivities = numActivities;
4144 ci.numRunning = numRunning;
Craig Mautneraab647e2013-02-28 16:31:36 -08004145 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08004146 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004147 }
4148
4149 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08004150 final int top = mTaskHistory.size() - 1;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004151 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08004152 if (top >= 0) {
4153 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
4154 int activityTop = activities.size() - 1;
4155 if (activityTop > 0) {
4156 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
4157 "unhandled-back", true);
4158 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004159 }
4160 }
4161
Craig Mautner6b74cb52013-09-27 17:02:21 -07004162 /**
4163 * Reset local parameters because an app's activity died.
4164 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07004165 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07004166 */
4167 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07004168 if (mPausingActivity != null && mPausingActivity.app == app) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004169 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG_PAUSE,
Craig Mautnere79d42682013-04-01 19:01:53 -07004170 "App died while pausing: " + mPausingActivity);
4171 mPausingActivity = null;
4172 }
4173 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
4174 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07004175 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07004176 }
4177
Craig Mautner19091252013-10-05 00:03:53 -07004178 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07004179 }
4180
Craig Mautnercae015f2013-02-08 14:31:27 -08004181 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004182 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4183 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4184 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4185 final ActivityRecord r = activities.get(activityNdx);
4186 if (r.app == app) {
4187 Slog.w(TAG, " Force finishing activity "
4188 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07004189 // Force the destroy to skip right to removal.
4190 r.app = null;
4191 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004192 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004193 }
4194 }
4195 }
4196
Dianne Hackborn390517b2013-05-30 15:03:32 -07004197 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004198 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07004199 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08004200 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4201 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07004202 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
4203 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004204 dumpClient, dumpPackage, needSep, header,
Craig Mautnerac6f8432013-07-17 13:24:59 -07004205 " Task id #" + task.taskId);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004206 if (printed) {
4207 header = null;
4208 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004209 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07004210 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08004211 }
4212
4213 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
4214 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
4215
4216 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004217 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4218 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08004219 }
4220 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004221 final int top = mTaskHistory.size() - 1;
4222 if (top >= 0) {
4223 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
4224 int listTop = list.size() - 1;
4225 if (listTop >= 0) {
4226 activities.add(list.get(listTop));
4227 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004228 }
4229 } else {
4230 ItemMatcher matcher = new ItemMatcher();
4231 matcher.build(name);
4232
Craig Mautneraab647e2013-02-28 16:31:36 -08004233 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4234 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
4235 if (matcher.match(r1, r1.intent.getComponent())) {
4236 activities.add(r1);
4237 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004238 }
4239 }
4240 }
4241
4242 return activities;
4243 }
4244
4245 ActivityRecord restartPackage(String packageName) {
4246 ActivityRecord starting = topRunningActivityLocked(null);
4247
4248 // All activities that came from the package must be
4249 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08004250 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4251 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4252 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4253 final ActivityRecord a = activities.get(activityNdx);
4254 if (a.info.packageName.equals(packageName)) {
4255 a.forceNewConfig = true;
4256 if (starting != null && a == starting && a.visible) {
4257 a.startFreezingScreenLocked(starting.app,
4258 ActivityInfo.CONFIG_SCREEN_LAYOUT);
4259 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004260 }
4261 }
4262 }
4263
4264 return starting;
4265 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004266
Craig Mautner299f9602015-01-26 09:47:33 -08004267 void removeTask(TaskRecord task, String reason) {
Wale Ogunwale000957c2015-04-03 08:19:12 -07004268 removeTask(task, reason, true /* notMoving */);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004269 }
4270
Wale Ogunwale000957c2015-04-03 08:19:12 -07004271 /**
4272 * Removes the input task from this stack.
4273 * @param task to remove.
4274 * @param reason for removal.
4275 * @param notMoving task to another stack. In the case we are moving we don't want to perform
4276 * some operations on the task like removing it from window manager or recents.
4277 */
4278 void removeTask(TaskRecord task, String reason, boolean notMoving) {
4279 if (notMoving) {
Craig Mautner15df08a2015-04-01 12:17:18 -07004280 mStackSupervisor.removeLockedTaskLocked(task);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004281 mWindowManager.removeTask(task.taskId);
4282 }
Wale Ogunwale000957c2015-04-03 08:19:12 -07004283
Craig Mautner04a0ea62014-01-13 12:51:26 -08004284 final ActivityRecord r = mResumedActivity;
4285 if (r != null && r.task == task) {
4286 mResumedActivity = null;
4287 }
4288
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004289 final int taskNdx = mTaskHistory.indexOf(task);
4290 final int topTaskNdx = mTaskHistory.size() - 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07004291 if (task.isOverHomeStack() && taskNdx < topTaskNdx) {
4292 final TaskRecord nextTask = mTaskHistory.get(taskNdx + 1);
4293 if (!nextTask.isOverHomeStack()) {
4294 nextTask.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
4295 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004296 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004297 mTaskHistory.remove(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004298 updateTaskMovement(task, true);
Craig Mautner41db4a72014-05-07 17:20:56 -07004299
Wale Ogunwale000957c2015-04-03 08:19:12 -07004300 if (notMoving && task.mActivities.isEmpty()) {
Craig Mautner41db4a72014-05-07 17:20:56 -07004301 final boolean isVoiceSession = task.voiceSession != null;
4302 if (isVoiceSession) {
4303 try {
4304 task.voiceSession.taskFinished(task.intent, task.taskId);
4305 } catch (RemoteException e) {
4306 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004307 }
Craig Mautner41db4a72014-05-07 17:20:56 -07004308 if (task.autoRemoveFromRecents() || isVoiceSession) {
4309 // Task creator asked to remove this when done, or this task was a voice
4310 // interaction, so it should not remain on the recent tasks list.
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08004311 mRecentTasks.remove(task);
Winson Chung740c3ac2014-11-12 16:14:38 -08004312 task.removedFromRecents();
Craig Mautner41db4a72014-05-07 17:20:56 -07004313 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07004314 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004315
4316 if (mTaskHistory.isEmpty()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004317 if (DEBUG_STACK) Slog.i(TAG_STACK, "removeTask: removing stack=" + this);
Wale Ogunwale49853bf2015-02-23 09:24:42 -08004318 final boolean notHomeStack = !isHomeStack();
Craig Mautner04a0ea62014-01-13 12:51:26 -08004319 if (isOnHomeDisplay()) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08004320 String myReason = reason + " leftTaskHistoryEmpty";
4321 if (mFullscreen || !adjustFocusToNextVisibleStackLocked(null, myReason)) {
4322 mStackSupervisor.moveHomeStack(notHomeStack, myReason);
4323 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004324 }
Craig Mautner593a4e62014-01-15 17:55:51 -08004325 if (mStacks != null) {
4326 mStacks.remove(this);
4327 mStacks.add(0, this);
4328 }
Wale Ogunwale49853bf2015-02-23 09:24:42 -08004329 if (notHomeStack) {
4330 mActivityContainer.onTaskListEmptyLocked();
4331 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004332 }
Wale Ogunwale04f4d6b2015-03-11 09:23:25 -07004333
4334 task.stack = null;
Craig Mautner0247fc82013-02-28 14:32:06 -08004335 }
4336
Dianne Hackborn91097de2014-04-04 18:02:06 -07004337 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
4338 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
4339 boolean toTop) {
Craig Mautner21d24a22014-04-23 11:45:37 -07004340 TaskRecord task = new TaskRecord(mService, taskId, info, intent, voiceSession,
4341 voiceInteractor);
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004342 addTask(task, toTop, false);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004343 return task;
4344 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004345
4346 ArrayList<TaskRecord> getAllTasks() {
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08004347 return new ArrayList<>(mTaskHistory);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004348 }
4349
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004350 void addTask(final TaskRecord task, final boolean toTop, boolean moving) {
Craig Mautnerc00204b2013-03-05 15:02:14 -08004351 task.stack = this;
4352 if (toTop) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07004353 insertTaskAtTop(task, null);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004354 } else {
4355 mTaskHistory.add(0, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004356 updateTaskMovement(task, false);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004357 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004358 if (!moving && task.voiceSession != null) {
4359 try {
4360 task.voiceSession.taskStarted(task.intent, task.taskId);
4361 } catch (RemoteException e) {
4362 }
4363 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004364 }
4365
4366 public int getStackId() {
4367 return mStackId;
4368 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004369
4370 @Override
4371 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07004372 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
4373 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07004374 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08004375
4376 boolean updateOverrideConfiguration(Configuration newConfig) {
4377 Configuration oldConfig = mOverrideConfig;
4378 mOverrideConfig = (newConfig == null) ? Configuration.EMPTY : newConfig;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08004379 // We override the configuration only when the stack's dimensions are different from
4380 // the display. In this manner, we know that if the override configuration is empty,
4381 // the stack is necessarily full screen.
Todd Kennedyaab56db2015-01-30 09:39:53 -08004382 mFullscreen = Configuration.EMPTY.equals(mOverrideConfig);
Wale Ogunwale60454db2015-01-23 16:05:07 -08004383 return !mOverrideConfig.equals(oldConfig);
4384 }
Craig Mautner15df08a2015-04-01 12:17:18 -07004385
4386 void onLockTaskPackagesUpdatedLocked() {
4387 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4388 mTaskHistory.get(taskNdx).setLockTaskAuth();
4389 }
4390 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004391}