blob: 3aaa793a34572a9c88bee41e25a525fd2dd43f1b [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 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
Jorim Jaggi02886a82016-12-06 09:10:06 -080019import static android.app.ActivityManager.ENABLE_TASK_SNAPSHOTS;
Winson Chungbb348802017-01-30 12:01:45 -080020import static android.app.ActivityManager.LOCK_TASK_MODE_NONE;
Wale Ogunwale4cea0f52015-12-25 06:30:31 -080021import static android.app.ActivityManager.StackId;
Winson Chung83471632016-12-13 11:02:12 -080022import static android.app.ActivityManager.StackId.ASSISTANT_STACK_ID;
Wale Ogunwaleeb915f22016-10-14 07:18:22 -070023import static android.app.ActivityManager.StackId.DOCKED_STACK_ID;
Filip Gruszczynski3d026712015-12-16 13:46:38 -080024import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
Matthew Ngae1ff4f2016-11-10 15:49:14 -080025import static android.app.ActivityManager.StackId.HOME_STACK_ID;
Jorim Jaggi3878ca32017-02-02 17:13:05 -080026import static android.app.ActivityManager.StackId.INVALID_STACK_ID;
Wale Ogunwale22e25262016-02-01 10:32:02 -080027import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
Ruben Brunkf53497c2017-03-27 20:26:17 -070028import static android.app.ActivityManager.TaskDescription.ATTR_TASKDESCRIPTION_PREFIX;
29import static android.app.ActivityOptions.ANIM_CLIP_REVEAL;
30import static android.app.ActivityOptions.ANIM_CUSTOM;
31import static android.app.ActivityOptions.ANIM_SCALE_UP;
32import static android.app.ActivityOptions.ANIM_SCENE_TRANSITION;
33import static android.app.ActivityOptions.ANIM_THUMBNAIL_ASPECT_SCALE_DOWN;
34import static android.app.ActivityOptions.ANIM_THUMBNAIL_ASPECT_SCALE_UP;
35import static android.app.ActivityOptions.ANIM_THUMBNAIL_SCALE_DOWN;
36import static android.app.ActivityOptions.ANIM_THUMBNAIL_SCALE_UP;
Winson Chung59fda9e2017-01-20 16:14:51 -080037import static android.app.AppOpsManager.MODE_ALLOWED;
Winson Chungf4ac0632017-03-17 12:34:12 -070038import static android.app.AppOpsManager.OP_PICTURE_IN_PICTURE;
Ruben Brunkf53497c2017-03-27 20:26:17 -070039import static android.content.Intent.ACTION_MAIN;
40import static android.content.Intent.CATEGORY_HOME;
41import static android.content.Intent.CATEGORY_LAUNCHER;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080042import static android.content.Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS;
Andrii Kulian21713ac2016-10-12 22:05:05 -070043import static android.content.pm.ActivityInfo.CONFIG_ORIENTATION;
44import static android.content.pm.ActivityInfo.CONFIG_SCREEN_LAYOUT;
45import static android.content.pm.ActivityInfo.CONFIG_SCREEN_SIZE;
46import static android.content.pm.ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE;
Zak Cohen90e7116742017-01-29 12:59:23 -080047import static android.content.pm.ActivityInfo.CONFIG_UI_MODE;
Jorim Jaggi02886a82016-12-06 09:10:06 -080048import static android.content.pm.ActivityInfo.FLAG_ALWAYS_FOCUSABLE;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080049import static android.content.pm.ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS;
50import static android.content.pm.ActivityInfo.FLAG_IMMERSIVE;
51import static android.content.pm.ActivityInfo.FLAG_MULTIPROCESS;
Chong Zhang87761972016-08-22 13:53:24 -070052import static android.content.pm.ActivityInfo.FLAG_SHOW_FOR_ALL_USERS;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080053import static android.content.pm.ActivityInfo.FLAG_STATE_NOT_NEEDED;
54import static android.content.pm.ActivityInfo.LAUNCH_MULTIPLE;
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -080055import static android.content.pm.ActivityInfo.LAUNCH_SINGLE_INSTANCE;
56import static android.content.pm.ActivityInfo.LAUNCH_SINGLE_TASK;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080057import static android.content.pm.ActivityInfo.LAUNCH_SINGLE_TOP;
Ruben Brunkf53497c2017-03-27 20:26:17 -070058import static android.content.pm.ActivityInfo.PERSIST_ACROSS_REBOOTS;
59import static android.content.pm.ActivityInfo.PERSIST_ROOT_ONLY;
Wale Ogunwaledf241e92016-10-13 15:14:21 -070060import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZEABLE;
Jorim Jaggicd13d332016-04-27 15:40:20 -070061import static android.content.pm.ActivityInfo.RESIZE_MODE_RESIZEABLE;
Wale Ogunwale72a73e32016-10-13 12:16:39 -070062import static android.content.pm.ActivityInfo.RESIZE_MODE_RESIZEABLE_VIA_SDK_VERSION;
Wale Ogunwaledf241e92016-10-13 15:14:21 -070063import static android.content.pm.ActivityInfo.RESIZE_MODE_UNRESIZEABLE;
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -070064import static android.content.res.Configuration.EMPTY;
Ruben Brunkf53497c2017-03-27 20:26:17 -070065import static android.content.res.Configuration.UI_MODE_TYPE_MASK;
Zak Cohen90e7116742017-01-29 12:59:23 -080066import static android.content.res.Configuration.UI_MODE_TYPE_VR_HEADSET;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080067import static android.os.Build.VERSION_CODES.HONEYCOMB;
Zak Cohen90e7116742017-01-29 12:59:23 -080068import static android.os.Build.VERSION_CODES.O;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080069import static android.os.Process.SYSTEM_UID;
Ruben Brunkf53497c2017-03-27 20:26:17 -070070import static android.os.Trace.TRACE_TAG_ACTIVITY_MANAGER;
Filip Gruszczynski3d026712015-12-16 13:46:38 -080071import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_CONFIGURATION;
Andrii Kulian21713ac2016-10-12 22:05:05 -070072import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SAVED_STATE;
73import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SCREENSHOTS;
74import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_STATES;
Filip Gruszczynski3d026712015-12-16 13:46:38 -080075import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SWITCH;
76import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_THUMBNAILS;
Andrii Kulian21713ac2016-10-12 22:05:05 -070077import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_VISIBILITY;
78import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_CONFIGURATION;
79import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SAVED_STATE;
80import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SCREENSHOTS;
Filip Gruszczynski3d026712015-12-16 13:46:38 -080081import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_STATES;
82import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SWITCH;
83import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_THUMBNAILS;
Andrii Kulian21713ac2016-10-12 22:05:05 -070084import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_VISIBILITY;
Filip Gruszczynski3d026712015-12-16 13:46:38 -080085import static com.android.server.am.ActivityManagerDebugConfig.TAG_AM;
86import static com.android.server.am.ActivityManagerDebugConfig.TAG_WITH_CLASS_NAME;
Ruben Brunkf53497c2017-03-27 20:26:17 -070087import static com.android.server.am.ActivityManagerService.IS_USER_BUILD;
Andrii Kulian21713ac2016-10-12 22:05:05 -070088import static com.android.server.am.ActivityManagerService.TAKE_FULLSCREEN_SCREENSHOTS;
Ruben Brunkf53497c2017-03-27 20:26:17 -070089import static com.android.server.am.ActivityStack.ActivityState.DESTROYED;
90import static com.android.server.am.ActivityStack.ActivityState.DESTROYING;
91import static com.android.server.am.ActivityStack.ActivityState.INITIALIZING;
92import static com.android.server.am.ActivityStack.ActivityState.PAUSED;
93import static com.android.server.am.ActivityStack.ActivityState.PAUSING;
94import static com.android.server.am.ActivityStack.ActivityState.RESUMED;
95import static com.android.server.am.ActivityStack.ActivityState.STOPPED;
96import static com.android.server.am.ActivityStack.ActivityState.STOPPING;
97import static com.android.server.am.ActivityStack.LAUNCH_TICK;
98import static com.android.server.am.ActivityStack.LAUNCH_TICK_MSG;
99import static com.android.server.am.ActivityStack.PAUSE_TIMEOUT_MSG;
Wale Ogunwale9b7a8272017-04-10 08:05:41 -0700100import static com.android.server.am.ActivityStack.STACK_INVISIBLE;
Ruben Brunkf53497c2017-03-27 20:26:17 -0700101import static com.android.server.am.ActivityStack.STOP_TIMEOUT_MSG;
102import static com.android.server.am.EventLogTags.AM_ACTIVITY_FULLY_DRAWN_TIME;
103import static com.android.server.am.EventLogTags.AM_ACTIVITY_LAUNCH_TIME;
104import static com.android.server.am.EventLogTags.AM_RELAUNCH_ACTIVITY;
105import static com.android.server.am.EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY;
106import static com.android.server.am.TaskPersister.DEBUG;
107import static com.android.server.am.TaskPersister.IMAGE_EXTENSION;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800108import static com.android.server.am.TaskRecord.INVALID_TASK_ID;
Ruben Brunkf53497c2017-03-27 20:26:17 -0700109import static org.xmlpull.v1.XmlPullParser.END_DOCUMENT;
110import static org.xmlpull.v1.XmlPullParser.END_TAG;
111import static org.xmlpull.v1.XmlPullParser.START_TAG;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800112
Andrii Kulian21713ac2016-10-12 22:05:05 -0700113import android.annotation.NonNull;
Craig Mautner21d24a22014-04-23 11:45:37 -0700114import android.app.ActivityManager.TaskDescription;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700115import android.app.ActivityOptions;
Filip Gruszczynski3d026712015-12-16 13:46:38 -0800116import android.app.PendingIntent;
Winson Chungc2baac02017-01-11 13:34:47 -0800117import android.app.PictureInPictureArgs;
Craig Mautner05d6272ba2013-02-11 09:39:27 -0800118import android.app.ResultInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800119import android.content.ComponentName;
120import android.content.Intent;
121import android.content.pm.ActivityInfo;
122import android.content.pm.ApplicationInfo;
Dianne Hackborn8ea5e1d2011-05-27 16:45:31 -0700123import android.content.res.CompatibilityInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124import android.content.res.Configuration;
125import android.graphics.Bitmap;
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700126import android.graphics.Point;
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700127import android.graphics.Rect;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800128import android.os.Bundle;
Andrii Kulian21713ac2016-10-12 22:05:05 -0700129import android.os.Debug;
Dianne Hackbornbe707852011-11-11 14:32:10 -0800130import android.os.IBinder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800131import android.os.Message;
Filip Gruszczynski3d026712015-12-16 13:46:38 -0800132import android.os.PersistableBundle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800133import android.os.Process;
Dianne Hackborn39792d22010-08-19 18:01:52 -0700134import android.os.RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135import android.os.SystemClock;
Filip Gruszczynski3d026712015-12-16 13:46:38 -0800136import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700137import android.os.UserHandle;
Amith Yamasani0af6fa72016-01-17 15:36:19 -0800138import android.service.voice.IVoiceInteractionSession;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139import android.util.EventLog;
140import android.util.Log;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700141import android.util.Slog;
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700142import android.util.TimeUtils;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700143import android.view.AppTransitionAnimationSpec;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800144import android.view.IApplicationToken;
Jorim Jaggife762342016-10-13 14:33:27 +0200145import android.view.WindowManager.LayoutParams;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700146
Filip Gruszczynski3d026712015-12-16 13:46:38 -0800147import com.android.internal.app.ResolverActivity;
148import com.android.internal.content.ReferrerIntent;
149import com.android.internal.util.XmlUtils;
150import com.android.server.AttributeCache;
Ruben Brunkf53497c2017-03-27 20:26:17 -0700151import com.android.server.AttributeCache.Entry;
Filip Gruszczynski3d026712015-12-16 13:46:38 -0800152import com.android.server.am.ActivityStack.ActivityState;
153import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800154import com.android.server.wm.AppWindowContainerController;
155import com.android.server.wm.AppWindowContainerListener;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800156import com.android.server.wm.TaskWindowContainerController;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157
Jorim Jaggi02886a82016-12-06 09:10:06 -0800158import org.xmlpull.v1.XmlPullParser;
159import org.xmlpull.v1.XmlPullParserException;
160import org.xmlpull.v1.XmlSerializer;
161
Suprabh Shukla23593142015-11-03 17:31:15 -0800162import java.io.File;
Craig Mautner21d24a22014-04-23 11:45:37 -0700163import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800164import java.io.PrintWriter;
165import java.lang.ref.WeakReference;
166import java.util.ArrayList;
Todd Kennedy39bfee52016-02-24 10:28:21 -0800167import java.util.Arrays;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800168import java.util.HashSet;
Andrii Kulian21713ac2016-10-12 22:05:05 -0700169import java.util.List;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700170import java.util.Objects;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800171
172/**
173 * An entry in the history stack, representing an activity.
174 */
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700175final class ActivityRecord extends ConfigurationContainer implements AppWindowContainerListener {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800176 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityRecord" : TAG_AM;
Andrii Kulian21713ac2016-10-12 22:05:05 -0700177 private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
178 private static final String TAG_SAVED_STATE = TAG + POSTFIX_SAVED_STATE;
179 private static final String TAG_SCREENSHOTS = TAG + POSTFIX_SCREENSHOTS;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700180 private static final String TAG_STATES = TAG + POSTFIX_STATES;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700181 private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
182 private static final String TAG_THUMBNAILS = TAG + POSTFIX_THUMBNAILS;
Andrii Kulian21713ac2016-10-12 22:05:05 -0700183 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800184
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700185 private static final boolean SHOW_ACTIVITY_START_TIME = true;
Andrii Kulian21713ac2016-10-12 22:05:05 -0700186 private static final String RECENTS_PACKAGE_NAME = "com.android.systemui.recents";
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700187
Craig Mautner21d24a22014-04-23 11:45:37 -0700188 private static final String ATTR_ID = "id";
189 private static final String TAG_INTENT = "intent";
190 private static final String ATTR_USERID = "user_id";
191 private static final String TAG_PERSISTABLEBUNDLE = "persistable_bundle";
192 private static final String ATTR_LAUNCHEDFROMUID = "launched_from_uid";
Stefan Kuhnee88d1e52015-05-18 10:33:45 -0700193 private static final String ATTR_LAUNCHEDFROMPACKAGE = "launched_from_package";
Craig Mautner21d24a22014-04-23 11:45:37 -0700194 private static final String ATTR_RESOLVEDTYPE = "resolved_type";
195 private static final String ATTR_COMPONENTSPECIFIED = "component_specified";
Dianne Hackborn337abb32014-09-24 12:44:29 -0700196 static final String ACTIVITY_ICON_SUFFIX = "_activity_icon_";
Craig Mautner21d24a22014-04-23 11:45:37 -0700197
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800198 final ActivityManagerService service; // owner
Dianne Hackbornbe707852011-11-11 14:32:10 -0800199 final IApplicationToken.Stub appToken; // window manager token
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800200 AppWindowContainerController mWindowContainerController;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800201 final ActivityInfo info; // all about me
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700202 final ApplicationInfo appInfo; // information about activity's app
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800203 final int launchedFromPid; // always the pid who started the activity.
Stefan Kuhnee88d1e52015-05-18 10:33:45 -0700204 final int launchedFromUid; // always the uid who started the activity.
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800205 final String launchedFromPackage; // always the package who started the activity.
Amith Yamasani742a6712011-05-04 14:49:28 -0700206 final int userId; // Which user is this running for?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800207 final Intent intent; // the original intent that generated us
208 final ComponentName realActivity; // the intent component, or target of an alias.
209 final String shortComponentName; // the short component name of the intent
210 final String resolvedType; // as per original caller;
211 final String packageName; // the package implementing intent's component
212 final String processName; // process where this component wants to run
213 final String taskAffinity; // as per ActivityInfo.taskAffinity
214 final boolean stateNotNeeded; // As per ActivityInfo.flags
Craig Mautner4addfc52013-06-25 08:05:45 -0700215 boolean fullscreen; // covers the full screen?
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800216 final boolean noDisplay; // activity is not displayed?
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800217 private final boolean componentSpecified; // did caller specify an explicit component?
Dianne Hackbornfb81d092015-08-03 17:14:46 -0700218 final boolean rootVoiceInteraction; // was this the root activity of a voice interaction?
Craig Mautner86d67a42013-05-14 10:34:38 -0700219
220 static final int APPLICATION_ACTIVITY_TYPE = 0;
221 static final int HOME_ACTIVITY_TYPE = 1;
222 static final int RECENTS_ACTIVITY_TYPE = 2;
Winson Chung83471632016-12-13 11:02:12 -0800223 static final int ASSISTANT_ACTIVITY_TYPE = 3;
Craig Mautner2c1faed2013-07-23 12:56:02 -0700224 int mActivityType;
Craig Mautner86d67a42013-05-14 10:34:38 -0700225
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800226 private CharSequence nonLocalizedLabel; // the label information from the package mgr.
227 private int labelRes; // the label information from the package mgr.
228 private int icon; // resource identifier of activity's icon.
229 private int logo; // resource identifier of activity's logo.
230 private int theme; // resource identifier of activity's theme.
231 private int realTheme; // actual theme resource we will use, never 0.
232 private int windowFlags; // custom window flags for preview window.
Bryce Leeaf691c02017-03-20 14:20:22 -0700233 private TaskRecord task; // the task this is in.
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800234 private long createTime = System.currentTimeMillis();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700235 long displayStartTime; // when we started launching this activity
236 long fullyDrawnStartTime; // when we started launching this activity
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800237 private long startTime; // last time this activity was started
Dianne Hackborn50685602011-12-01 12:23:37 -0800238 long lastVisibleTime; // last time this activity became visible
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700239 long cpuTimeAtResume; // the cpu time of host process at the time of resuming activity
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700240 long pauseTime; // last time we started pausing the activity
241 long launchTickTime; // base time for launch tick messages
Ruben Brunkf64af332017-03-22 22:03:25 -0700242 // TODO: Refactor mLastReportedConfiguration and mLastReportedOverrideConfiguration to use a
243 // MergedConfiguration object for clarity.
Andrii Kulian21713ac2016-10-12 22:05:05 -0700244 private Configuration mLastReportedConfiguration; // configuration activity was last running in
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700245 // Overridden configuration by the activity task
Andrii Kulian1779e612016-10-12 21:58:25 -0700246 // WARNING: Reference points to {@link TaskRecord#getMergedOverrideConfig}, so its internal
247 // state should never be altered directly.
Andrii Kulian21713ac2016-10-12 22:05:05 -0700248 private Configuration mLastReportedOverrideConfiguration;
Andrii Kulianb047b8b2017-02-08 18:38:26 -0800249 private int mLastReportedDisplayId;
Dianne Hackborn8ea5e1d2011-05-27 16:45:31 -0700250 CompatibilityInfo compat;// last used compatibility mode
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700251 ActivityRecord resultTo; // who started this entry, so will get our reply
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800252 final String resultWho; // additional identifier for use by resultTo.
253 final int requestCode; // code given by requester (resultTo)
Craig Mautner05d6272ba2013-02-11 09:39:27 -0800254 ArrayList<ResultInfo> results; // pending ActivityResult objs we have received
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800255 HashSet<WeakReference<PendingIntentRecord>> pendingResults; // all pending intents for this act
Dianne Hackborn85d558c2014-11-04 10:31:54 -0800256 ArrayList<ReferrerIntent> newIntents; // any pending new intents for single-top mode
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700257 ActivityOptions pendingOptions; // most recently given options
George Mount6ba042b2014-07-28 11:12:28 -0700258 ActivityOptions returningOptions; // options that are coming back via convertToTranslucent
Dianne Hackbornb5a380d2015-05-20 18:18:46 -0700259 AppTimeTracker appTimeTracker; // set if we are tracking the time in this app/task/activity
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800260 HashSet<ConnectionRecord> connections; // All ConnectionRecord we hold
Dianne Hackborn7e269642010-08-25 19:50:20 -0700261 UriPermissionOwner uriPermissions; // current special URI access perms.
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700262 ProcessRecord app; // if non-null, hosting application
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700263 ActivityState state; // current state we are in
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800264 Bundle icicle; // last saved activity state
Craig Mautnera0026042014-04-23 11:45:37 -0700265 PersistableBundle persistentState; // last persistently saved activity state
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800266 boolean frontOfTask; // is this the root activity of its task?
267 boolean launchFailed; // set if a launched failed, to abort on 2nd try
268 boolean haveState; // have we gotten the last activity state?
269 boolean stopped; // is activity pause finished?
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700270 boolean delayedResume; // not yet resumed because of stopped app switches?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800271 boolean finishing; // activity in pending finish list?
Wale Ogunwalef81c1d12016-01-12 12:20:18 -0800272 boolean deferRelaunchUntilPaused; // relaunch of activity is being deferred until pause is
273 // completed
274 boolean preserveWindowOnDeferredRelaunch; // activity windows are preserved on deferred relaunch
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800275 int configChangeFlags; // which config values have changed
276 boolean keysPaused; // has key dispatching been paused for it?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800277 int launchMode; // the launch mode activity attribute.
278 boolean visible; // does this activity's window need to be shown?
Jorim Jaggi241ae102016-11-02 21:57:33 -0700279 boolean visibleIgnoringKeyguard; // is this activity visible, ignoring the fact that Keyguard
280 // might hide this activity?
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800281 boolean sleeping; // have we told the activity to sleep?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800282 boolean nowVisible; // is this activity's window visible?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800283 boolean idle; // has the activity gone idle?
284 boolean hasBeenLaunched;// has this activity ever been launched?
285 boolean frozenBeforeDestroy;// has been frozen but not yet destroyed.
Daniel Sandler69a48172010-06-23 16:29:36 -0400286 boolean immersive; // immersive mode (don't interrupt if possible)
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400287 boolean forceNewConfig; // force re-create with new config next time
Winson Chung5af42fc2017-03-24 17:11:33 -0700288 private boolean mInMultiWindowMode; // whether or not this activity is currently in multi-window
289 // mode (default false)
290 private boolean mInPictureInPictureMode; // whether or not this activity is currently in
291 // picture-in-picture mode (default false)
Winson Chungc2baac02017-01-11 13:34:47 -0800292 boolean supportsPictureInPictureWhilePausing; // This flag is set by the system to indicate
293 // that the activity can enter picture in picture while pausing (ie. only when another
294 // task is brought to front or started)
295 PictureInPictureArgs pictureInPictureArgs = new PictureInPictureArgs(); // The PiP
Winson Chunga29eb982016-12-14 12:01:27 -0800296 // arguments used when deferring the entering of picture-in-picture.
Dianne Hackborn07981492013-01-28 11:36:23 -0800297 int launchCount; // count of launches since last state
Wale Ogunwalef81c1d12016-01-12 12:20:18 -0800298 long lastLaunchTime; // time of last launch of this activity
Ruben Brunke24b9a62016-02-16 21:38:24 -0800299 ComponentName requestedVrComponent; // the requested component for handling VR mode.
Wale Ogunwalef81c1d12016-01-12 12:20:18 -0800300 ArrayList<ActivityContainer> mChildContainers = new ArrayList<>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800301
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700302 String stringName; // for caching of toString().
Craig Mautnerde4ef022013-04-07 19:01:33 -0700303
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700304 private boolean inHistory; // are we in the history stack?
Craig Mautnerde4ef022013-04-07 19:01:33 -0700305 final ActivityStackSupervisor mStackSupervisor;
Wale Ogunwalef40c11b2016-02-26 08:16:02 -0800306
307 static final int STARTING_WINDOW_NOT_SHOWN = 0;
308 static final int STARTING_WINDOW_SHOWN = 1;
309 static final int STARTING_WINDOW_REMOVED = 2;
310 int mStartingWindowState = STARTING_WINDOW_NOT_SHOWN;
Wale Ogunwale3b232392016-05-13 15:37:13 -0700311 boolean mTaskOverlay = false; // Task is always on-top of other activities in the task.
Wale Ogunwalef40c11b2016-02-26 08:16:02 -0800312
Jorim Jaggic2f262b2015-12-07 16:59:10 -0800313 boolean mUpdateTaskThumbnailWhenHidden;
Craig Mautnere0a38842013-12-16 16:14:02 -0800314 ActivityContainer mInitialActivityContainer;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700315
Craig Mautner21d24a22014-04-23 11:45:37 -0700316 TaskDescription taskDescription; // the recents information for this activity
Craig Mautnerbb742462014-07-07 15:28:55 -0700317 boolean mLaunchTaskBehind; // this activity is actively being launched with
318 // ActivityOptions.setLaunchTaskBehind, will be cleared once launch is completed.
Craig Mautner2fbd7542014-03-21 09:34:07 -0700319
Filip Gruszczynski23493322015-07-29 17:02:59 -0700320 // These configurations are collected from application's resources based on size-sensitive
321 // qualifiers. For example, layout-w800dp will be added to mHorizontalSizeConfigurations as 800
322 // and drawable-sw400dp will be added to both as 400.
323 private int[] mVerticalSizeConfigurations;
324 private int[] mHorizontalSizeConfigurations;
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -0700325 private int[] mSmallestSizeConfigurations;
Filip Gruszczynski23493322015-07-29 17:02:59 -0700326
Amith Yamasani0af6fa72016-01-17 15:36:19 -0800327 boolean pendingVoiceInteractionStart; // Waiting for activity-invoked voice session
328 IVoiceInteractionSession voiceSession; // Voice interaction session for this activity
329
Robert Carrd2265122016-08-05 10:25:21 -0700330 // A hint to override the window specified rotation animation, or -1
331 // to use the window specified value. We use this so that
332 // we can select the right animation in the cases of starting
333 // windows, where the app hasn't had time to set a value
334 // on the window.
335 int mRotationAnimationHint = -1;
Robert Carrfd10cd12016-06-29 16:41:50 -0700336
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700337 // The bounds of this activity. Mainly used for aspect-ratio compatibility.
338 // TODO(b/36505427): Every level on ConfigurationContainer now has bounds information, which
339 // directly affects the configuration. We should probably move this into that class and have it
340 // handle calculating override configuration from the bounds.
341 private final Rect mBounds = new Rect();
342
Andrii Kulian21713ac2016-10-12 22:05:05 -0700343 /**
344 * Temp configs used in {@link #ensureActivityConfigurationLocked(int, boolean)}
345 */
Winson Chungbdc646f2017-02-13 12:12:22 -0800346 private final Configuration mTmpConfig1 = new Configuration();
347 private final Configuration mTmpConfig2 = new Configuration();
Ruben Brunkf64af332017-03-22 22:03:25 -0700348 private final Configuration mTmpConfig3 = new Configuration();
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700349 private final Point mTmpPoint = new Point();
350 private final Rect mTmpBounds = new Rect();
Andrii Kulian21713ac2016-10-12 22:05:05 -0700351
Wale Ogunwalef40c11b2016-02-26 08:16:02 -0800352 private static String startingWindowStateToString(int state) {
353 switch (state) {
354 case STARTING_WINDOW_NOT_SHOWN:
355 return "STARTING_WINDOW_NOT_SHOWN";
356 case STARTING_WINDOW_SHOWN:
357 return "STARTING_WINDOW_SHOWN";
358 case STARTING_WINDOW_REMOVED:
359 return "STARTING_WINDOW_REMOVED";
360 default:
361 return "unknown state=" + state;
362 }
363 }
364
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800365 void dump(PrintWriter pw, String prefix) {
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700366 final long now = SystemClock.uptimeMillis();
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700367 pw.print(prefix); pw.print("packageName="); pw.print(packageName);
368 pw.print(" processName="); pw.println(processName);
369 pw.print(prefix); pw.print("launchedFromUid="); pw.print(launchedFromUid);
Craig Mautnere11f2b72013-04-01 12:37:17 -0700370 pw.print(" launchedFromPackage="); pw.print(launchedFromPackage);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800371 pw.print(" userId="); pw.println(userId);
372 pw.print(prefix); pw.print("app="); pw.println(app);
373 pw.print(prefix); pw.println(intent.toInsecureStringWithClip());
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700374 pw.print(prefix); pw.print("frontOfTask="); pw.print(frontOfTask);
375 pw.print(" task="); pw.println(task);
376 pw.print(prefix); pw.print("taskAffinity="); pw.println(taskAffinity);
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700377 pw.print(prefix); pw.print("realActivity=");
378 pw.println(realActivity.flattenToShortString());
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700379 if (appInfo != null) {
380 pw.print(prefix); pw.print("baseDir="); pw.println(appInfo.sourceDir);
381 if (!Objects.equals(appInfo.sourceDir, appInfo.publicSourceDir)) {
382 pw.print(prefix); pw.print("resDir="); pw.println(appInfo.publicSourceDir);
383 }
384 pw.print(prefix); pw.print("dataDir="); pw.println(appInfo.dataDir);
Todd Kennedy39bfee52016-02-24 10:28:21 -0800385 if (appInfo.splitSourceDirs != null) {
386 pw.print(prefix); pw.print("splitDir=");
387 pw.println(Arrays.toString(appInfo.splitSourceDirs));
388 }
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800389 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700390 pw.print(prefix); pw.print("stateNotNeeded="); pw.print(stateNotNeeded);
391 pw.print(" componentSpecified="); pw.print(componentSpecified);
Craig Mautner86d67a42013-05-14 10:34:38 -0700392 pw.print(" mActivityType="); pw.println(mActivityType);
Dianne Hackbornfb81d092015-08-03 17:14:46 -0700393 if (rootVoiceInteraction) {
394 pw.print(prefix); pw.print("rootVoiceInteraction="); pw.println(rootVoiceInteraction);
395 }
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800396 pw.print(prefix); pw.print("compat="); pw.print(compat);
397 pw.print(" labelRes=0x"); pw.print(Integer.toHexString(labelRes));
398 pw.print(" icon=0x"); pw.print(Integer.toHexString(icon));
399 pw.print(" theme=0x"); pw.println(Integer.toHexString(theme));
Andrii Kulian1779e612016-10-12 21:58:25 -0700400 pw.print(prefix); pw.print("mLastReportedConfiguration=");
401 pw.println(mLastReportedConfiguration);
402 pw.print(prefix); pw.print("mLastReportedOverrideConfiguration=");
403 pw.println(mLastReportedOverrideConfiguration);
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700404 pw.print(prefix); pw.print("CurrentConfiguration="); pw.println(getConfiguration());
405 if (!getOverrideConfiguration().equals(EMPTY)) {
406 pw.println(prefix + "OverrideConfiguration=" + getOverrideConfiguration());
407 }
408 if (!mBounds.isEmpty()) {
409 pw.println(prefix + "mBounds=" + mBounds);
410 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700411 if (resultTo != null || resultWho != null) {
412 pw.print(prefix); pw.print("resultTo="); pw.print(resultTo);
413 pw.print(" resultWho="); pw.print(resultWho);
414 pw.print(" resultCode="); pw.println(requestCode);
415 }
Craig Mautner29c58ca2014-10-14 16:17:06 -0700416 if (taskDescription != null) {
417 final String iconFilename = taskDescription.getIconFilename();
418 if (iconFilename != null || taskDescription.getLabel() != null ||
419 taskDescription.getPrimaryColor() != 0) {
420 pw.print(prefix); pw.print("taskDescription:");
421 pw.print(" iconFilename="); pw.print(taskDescription.getIconFilename());
422 pw.print(" label=\""); pw.print(taskDescription.getLabel());
423 pw.print("\"");
Jorim Jaggi30d64f32017-04-07 16:33:17 +0200424 pw.print(" primaryColor=");
Craig Mautner29c58ca2014-10-14 16:17:06 -0700425 pw.println(Integer.toHexString(taskDescription.getPrimaryColor()));
Wale Ogunwale9c64cb62017-04-12 13:39:59 -0700426 pw.print(prefix + " backgroundColor=");
Jorim Jaggi30d64f32017-04-07 16:33:17 +0200427 pw.println(Integer.toHexString(taskDescription.getBackgroundColor()));
Wale Ogunwale9c64cb62017-04-12 13:39:59 -0700428 pw.print(prefix + " statusBarColor=");
Jorim Jaggi30d64f32017-04-07 16:33:17 +0200429 pw.println(Integer.toHexString(taskDescription.getStatusBarColor()));
Wale Ogunwale9c64cb62017-04-12 13:39:59 -0700430 pw.print(prefix + " navigationBarColor=");
Jorim Jaggi30d64f32017-04-07 16:33:17 +0200431 pw.println(Integer.toHexString(taskDescription.getNavigationBarColor()));
Craig Mautner29c58ca2014-10-14 16:17:06 -0700432 }
433 if (iconFilename == null && taskDescription.getIcon() != null) {
434 pw.print(prefix); pw.println("taskDescription contains Bitmap");
435 }
Craig Mautner648f69b2014-09-18 14:16:26 -0700436 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700437 if (results != null) {
438 pw.print(prefix); pw.print("results="); pw.println(results);
439 }
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700440 if (pendingResults != null && pendingResults.size() > 0) {
441 pw.print(prefix); pw.println("Pending Results:");
442 for (WeakReference<PendingIntentRecord> wpir : pendingResults) {
443 PendingIntentRecord pir = wpir != null ? wpir.get() : null;
444 pw.print(prefix); pw.print(" - ");
445 if (pir == null) {
446 pw.println("null");
447 } else {
448 pw.println(pir);
449 pir.dump(pw, prefix + " ");
450 }
451 }
452 }
453 if (newIntents != null && newIntents.size() > 0) {
454 pw.print(prefix); pw.println("Pending New Intents:");
455 for (int i=0; i<newIntents.size(); i++) {
Craig Mautnerd2328952013-03-05 12:46:26 -0800456 Intent intent = newIntents.get(i);
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700457 pw.print(prefix); pw.print(" - ");
458 if (intent == null) {
459 pw.println("null");
460 } else {
461 pw.println(intent.toShortString(false, true, false, true));
462 }
463 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700464 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700465 if (pendingOptions != null) {
466 pw.print(prefix); pw.print("pendingOptions="); pw.println(pendingOptions);
467 }
Dianne Hackbornb5a380d2015-05-20 18:18:46 -0700468 if (appTimeTracker != null) {
469 appTimeTracker.dumpWithHeader(pw, prefix, false);
470 }
Dianne Hackborn7e269642010-08-25 19:50:20 -0700471 if (uriPermissions != null) {
Jeff Sharkey846318a2014-04-04 12:12:41 -0700472 uriPermissions.dump(pw, prefix);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700473 }
474 pw.print(prefix); pw.print("launchFailed="); pw.print(launchFailed);
Dianne Hackborn07981492013-01-28 11:36:23 -0800475 pw.print(" launchCount="); pw.print(launchCount);
476 pw.print(" lastLaunchTime=");
477 if (lastLaunchTime == 0) pw.print("0");
478 else TimeUtils.formatDuration(lastLaunchTime, now, pw);
479 pw.println();
Dianne Hackborncfc837f2013-06-27 18:32:07 -0700480 pw.print(prefix); pw.print("haveState="); pw.print(haveState);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700481 pw.print(" icicle="); pw.println(icicle);
482 pw.print(prefix); pw.print("state="); pw.print(state);
483 pw.print(" stopped="); pw.print(stopped);
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700484 pw.print(" delayedResume="); pw.print(delayedResume);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700485 pw.print(" finishing="); pw.println(finishing);
486 pw.print(prefix); pw.print("keysPaused="); pw.print(keysPaused);
487 pw.print(" inHistory="); pw.print(inHistory);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700488 pw.print(" visible="); pw.print(visible);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800489 pw.print(" sleeping="); pw.print(sleeping);
Wale Ogunwalef40c11b2016-02-26 08:16:02 -0800490 pw.print(" idle="); pw.print(idle);
491 pw.print(" mStartingWindowState=");
492 pw.println(startingWindowStateToString(mStartingWindowState));
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800493 pw.print(prefix); pw.print("fullscreen="); pw.print(fullscreen);
494 pw.print(" noDisplay="); pw.print(noDisplay);
495 pw.print(" immersive="); pw.print(immersive);
496 pw.print(" launchMode="); pw.println(launchMode);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800497 pw.print(prefix); pw.print("frozenBeforeDestroy="); pw.print(frozenBeforeDestroy);
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400498 pw.print(" forceNewConfig="); pw.println(forceNewConfig);
Craig Mautnerae7ecab2013-09-18 11:48:14 -0700499 pw.print(prefix); pw.print("mActivityType=");
500 pw.println(activityTypeToString(mActivityType));
Ruben Brunke24b9a62016-02-16 21:38:24 -0800501 if (requestedVrComponent != null) {
502 pw.print(prefix);
503 pw.print("requestedVrComponent=");
504 pw.println(requestedVrComponent);
505 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700506 if (displayStartTime != 0 || startTime != 0) {
507 pw.print(prefix); pw.print("displayStartTime=");
508 if (displayStartTime == 0) pw.print("0");
509 else TimeUtils.formatDuration(displayStartTime, now, pw);
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700510 pw.print(" startTime=");
511 if (startTime == 0) pw.print("0");
512 else TimeUtils.formatDuration(startTime, now, pw);
513 pw.println();
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700514 }
Bryce Lee4a194382017-04-04 14:32:48 -0700515 final boolean waitingVisible =
516 mStackSupervisor.mActivitiesWaitingForVisibleActivity.contains(this);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800517 if (lastVisibleTime != 0 || waitingVisible || nowVisible) {
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700518 pw.print(prefix); pw.print("waitingVisible="); pw.print(waitingVisible);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800519 pw.print(" nowVisible="); pw.print(nowVisible);
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700520 pw.print(" lastVisibleTime=");
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700521 if (lastVisibleTime == 0) pw.print("0");
522 else TimeUtils.formatDuration(lastVisibleTime, now, pw);
523 pw.println();
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700524 }
Wale Ogunwalef81c1d12016-01-12 12:20:18 -0800525 if (deferRelaunchUntilPaused || configChangeFlags != 0) {
526 pw.print(prefix); pw.print("deferRelaunchUntilPaused="); pw.print(deferRelaunchUntilPaused);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700527 pw.print(" configChangeFlags=");
528 pw.println(Integer.toHexString(configChangeFlags));
529 }
530 if (connections != null) {
531 pw.print(prefix); pw.print("connections="); pw.println(connections);
532 }
Wale Ogunwaled26176f2016-01-25 20:04:04 -0800533 if (info != null) {
534 pw.println(prefix + "resizeMode=" + ActivityInfo.resizeModeToString(info.resizeMode));
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700535 if (info.supportsPictureInPicture()) {
536 pw.println(prefix + "supportsPictureInPicture=" + info.supportsPictureInPicture());
537 pw.println(prefix + "supportsPictureInPictureWhilePausing: "
538 + supportsPictureInPictureWhilePausing);
539 }
540 if (info.maxAspectRatio != 0) {
541 pw.println(prefix + "maxAspectRatio=" + info.maxAspectRatio);
542 }
Wale Ogunwaled26176f2016-01-25 20:04:04 -0800543 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800544 }
545
Andrii Kulian21713ac2016-10-12 22:05:05 -0700546 private boolean crossesHorizontalSizeThreshold(int firstDp, int secondDp) {
Filip Gruszczynski23493322015-07-29 17:02:59 -0700547 return crossesSizeThreshold(mHorizontalSizeConfigurations, firstDp, secondDp);
548 }
549
Andrii Kulian21713ac2016-10-12 22:05:05 -0700550 private boolean crossesVerticalSizeThreshold(int firstDp, int secondDp) {
Filip Gruszczynski23493322015-07-29 17:02:59 -0700551 return crossesSizeThreshold(mVerticalSizeConfigurations, firstDp, secondDp);
552 }
553
Andrii Kulian21713ac2016-10-12 22:05:05 -0700554 private boolean crossesSmallestSizeThreshold(int firstDp, int secondDp) {
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -0700555 return crossesSizeThreshold(mSmallestSizeConfigurations, firstDp, secondDp);
556 }
557
Filip Gruszczynski23493322015-07-29 17:02:59 -0700558 /**
559 * The purpose of this method is to decide whether the activity needs to be relaunched upon
560 * changing its size. In most cases the activities don't need to be relaunched, if the resize
561 * is small, all the activity content has to do is relayout itself within new bounds. There are
562 * cases however, where the activity's content would be completely changed in the new size and
563 * the full relaunch is required.
564 *
565 * The activity will report to us vertical and horizontal thresholds after which a relaunch is
566 * required. These thresholds are collected from the application resource qualifiers. For
567 * example, if application has layout-w600dp resource directory, then it needs a relaunch when
568 * we resize from width of 650dp to 550dp, as it crosses the 600dp threshold. However, if
569 * it resizes width from 620dp to 700dp, it won't be relaunched as it stays on the same side
570 * of the threshold.
571 */
572 private static boolean crossesSizeThreshold(int[] thresholds, int firstDp,
573 int secondDp) {
574 if (thresholds == null) {
575 return false;
576 }
577 for (int i = thresholds.length - 1; i >= 0; i--) {
578 final int threshold = thresholds[i];
579 if ((firstDp < threshold && secondDp >= threshold)
580 || (firstDp >= threshold && secondDp < threshold)) {
581 return true;
582 }
583 }
584 return false;
585 }
586
Andrii Kulian21713ac2016-10-12 22:05:05 -0700587 void setSizeConfigurations(int[] horizontalSizeConfiguration,
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -0700588 int[] verticalSizeConfigurations, int[] smallestSizeConfigurations) {
Filip Gruszczynski23493322015-07-29 17:02:59 -0700589 mHorizontalSizeConfigurations = horizontalSizeConfiguration;
590 mVerticalSizeConfigurations = verticalSizeConfigurations;
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -0700591 mSmallestSizeConfigurations = smallestSizeConfigurations;
Filip Gruszczynski23493322015-07-29 17:02:59 -0700592 }
593
Andrii Kulianb047b8b2017-02-08 18:38:26 -0800594 private void scheduleActivityMovedToDisplay(int displayId, Configuration config) {
Wale Ogunwale22e25262016-02-01 10:32:02 -0800595 if (app == null || app.thread == null) {
Andrii Kulianb047b8b2017-02-08 18:38:26 -0800596 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.w(TAG,
597 "Can't report activity moved to display - client not running, activityRecord="
598 + this + ", displayId=" + displayId);
Wale Ogunwale22e25262016-02-01 10:32:02 -0800599 return;
600 }
601 try {
Andrii Kulianb047b8b2017-02-08 18:38:26 -0800602 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
603 "Reporting activity moved to display" + ", activityRecord=" + this
604 + ", displayId=" + displayId + ", config=" + config);
Chong Zhang6be533e2016-06-17 16:24:21 -0700605
Andrii Kulianb047b8b2017-02-08 18:38:26 -0800606 app.thread.scheduleActivityMovedToDisplay(appToken, displayId,
607 new Configuration(config));
608 } catch (RemoteException e) {
609 // If process died, whatever.
610 }
611 }
612
613 private void scheduleConfigurationChanged(Configuration config) {
614 if (app == null || app.thread == null) {
615 if (DEBUG_CONFIGURATION) Slog.w(TAG,
616 "Can't report activity configuration update - client not running"
617 + ", activityRecord=" + this);
618 return;
619 }
620 try {
621 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Sending new config to " + this + ", config: "
622 + config);
623
624 app.thread.scheduleActivityConfigurationChanged(appToken, new Configuration(config));
Wale Ogunwale22e25262016-02-01 10:32:02 -0800625 } catch (RemoteException e) {
626 // If process died, whatever.
627 }
628 }
629
Winson Chung5af42fc2017-03-24 17:11:33 -0700630 void updateMultiWindowMode() {
Andrii Kulian02b7a832016-10-06 23:11:56 -0700631 if (task == null || task.getStack() == null || app == null || app.thread == null) {
Wale Ogunwale22e25262016-02-01 10:32:02 -0800632 return;
633 }
Winson Chung5af42fc2017-03-24 17:11:33 -0700634
635 // An activity is considered to be in multi-window mode if its task isn't fullscreen.
636 final boolean inMultiWindowMode = !task.mFullscreen;
637 if (inMultiWindowMode != mInMultiWindowMode) {
638 mInMultiWindowMode = inMultiWindowMode;
639 scheduleMultiWindowModeChanged(getConfiguration());
640 }
641 }
642
643 private void scheduleMultiWindowModeChanged(Configuration overrideConfig) {
Wale Ogunwale22e25262016-02-01 10:32:02 -0800644 try {
Winson Chung5af42fc2017-03-24 17:11:33 -0700645 app.thread.scheduleMultiWindowModeChanged(appToken, mInMultiWindowMode,
646 overrideConfig);
Wale Ogunwale22e25262016-02-01 10:32:02 -0800647 } catch (Exception e) {
648 // If process died, I don't care.
649 }
650 }
651
Winson Chung5af42fc2017-03-24 17:11:33 -0700652 void updatePictureInPictureMode(Rect targetStackBounds) {
Andrii Kulian02b7a832016-10-06 23:11:56 -0700653 if (task == null || task.getStack() == null || app == null || app.thread == null) {
Wale Ogunwale22e25262016-02-01 10:32:02 -0800654 return;
655 }
Winson Chung5af42fc2017-03-24 17:11:33 -0700656
657 final boolean inPictureInPictureMode = (task.getStackId() == PINNED_STACK_ID) &&
658 (targetStackBounds != null);
659 if (inPictureInPictureMode != mInPictureInPictureMode) {
660 // Picture-in-picture mode changes also trigger a multi-window mode change as well, so
661 // update that here in order
662 mInPictureInPictureMode = inPictureInPictureMode;
663 mInMultiWindowMode = inPictureInPictureMode;
664 final Configuration newConfig = task.computeNewOverrideConfigurationForBounds(
665 targetStackBounds, null);
666 schedulePictureInPictureModeChanged(newConfig);
667 scheduleMultiWindowModeChanged(newConfig);
668 }
669 }
670
671 private void schedulePictureInPictureModeChanged(Configuration overrideConfig) {
Wale Ogunwale22e25262016-02-01 10:32:02 -0800672 try {
Winson Chung5af42fc2017-03-24 17:11:33 -0700673 app.thread.schedulePictureInPictureModeChanged(appToken, mInPictureInPictureMode,
674 overrideConfig);
Wale Ogunwale22e25262016-02-01 10:32:02 -0800675 } catch (Exception e) {
676 // If process died, no one cares.
Filip Gruszczynskica664812015-12-04 12:43:36 -0800677 }
678 }
679
Filip Gruszczynski3d026712015-12-16 13:46:38 -0800680 boolean isFreeform() {
Andrii Kulian02b7a832016-10-06 23:11:56 -0700681 return task != null && task.getStackId() == FREEFORM_WORKSPACE_STACK_ID;
Filip Gruszczynski3d026712015-12-16 13:46:38 -0800682 }
683
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700684 @Override
685 protected int getChildCount() {
686 // {@link ActivityRecord} is a leaf node and has no children.
687 return 0;
688 }
689
690 @Override
691 protected ConfigurationContainer getChildAt(int index) {
692 return null;
693 }
694
695 @Override
696 protected ConfigurationContainer getParent() {
Bryce Leeaf691c02017-03-20 14:20:22 -0700697 return getTask();
698 }
699
700 TaskRecord getTask() {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700701 return task;
702 }
703
Bryce Leeaf691c02017-03-20 14:20:22 -0700704 /**
705 * Sets reference to the {@link TaskRecord} the {@link ActivityRecord} will treat as its parent.
706 * Note that this does not actually add the {@link ActivityRecord} as a {@link TaskRecord}
707 * children. However, this method will clean up references to this {@link ActivityRecord} in
708 * {@link ActivityStack}.
709 * @param task The new parent {@link TaskRecord}.
710 */
711 void setTask(TaskRecord task) {
712 setTask(task, false /*reparenting*/);
713 }
714
715 /**
716 * This method should only be called by {@link TaskRecord#removeActivity(ActivityRecord)}.
717 */
718 void setTask(TaskRecord task, boolean reparenting) {
719 // Do nothing if the {@link TaskRecord} is the same as the current {@link getTask}.
720 if (task != null && task == getTask()) {
721 return;
722 }
723
724 final ActivityStack stack = getStack();
725
726 // If the new {@link TaskRecord} is from a different {@link ActivityStack}, remove this
727 // {@link ActivityRecord} from its current {@link ActivityStack}.
728 if (!reparenting && stack != null && (task == null || stack != task.getStack())) {
729 stack.onActivityRemovedFromStack(this);
730 }
731
732 this.task = task;
733
734 if (!reparenting) {
735 onParentChanged();
736 }
737 }
738
Dianne Hackbornbe707852011-11-11 14:32:10 -0800739 static class Token extends IApplicationToken.Stub {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700740 private final WeakReference<ActivityRecord> weakActivity;
Dianne Hackbornbe707852011-11-11 14:32:10 -0800741
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800742 Token(ActivityRecord activity) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800743 weakActivity = new WeakReference<>(activity);
Wale Ogunwale7d701172015-03-11 15:36:30 -0700744 }
745
Andrii Kulian21713ac2016-10-12 22:05:05 -0700746 private static ActivityRecord tokenToActivityRecordLocked(Token token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700747 if (token == null) {
748 return null;
749 }
750 ActivityRecord r = token.weakActivity.get();
Andrii Kulian02b7a832016-10-06 23:11:56 -0700751 if (r == null || r.getStack() == null) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700752 return null;
753 }
754 return r;
Dianne Hackbornbe707852011-11-11 14:32:10 -0800755 }
756
Craig Mautnerde4ef022013-04-07 19:01:33 -0700757 @Override
Dianne Hackbornbe707852011-11-11 14:32:10 -0800758 public String toString() {
759 StringBuilder sb = new StringBuilder(128);
760 sb.append("Token{");
761 sb.append(Integer.toHexString(System.identityHashCode(this)));
762 sb.append(' ');
763 sb.append(weakActivity.get());
764 sb.append('}');
765 return sb.toString();
766 }
767 }
768
Wale Ogunwale7d701172015-03-11 15:36:30 -0700769 static ActivityRecord forTokenLocked(IBinder token) {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800770 try {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700771 return Token.tokenToActivityRecordLocked((Token)token);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800772 } catch (ClassCastException e) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800773 Slog.w(TAG, "Bad activity token: " + token, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800774 return null;
775 }
776 }
777
Chong Zhang85ee6542015-10-02 13:36:38 -0700778 boolean isResolverActivity() {
779 return ResolverActivity.class.getName().equals(realActivity.getClassName());
Craig Mautnerac6f8432013-07-17 13:24:59 -0700780 }
781
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800782 ActivityRecord(ActivityManagerService _service, ProcessRecord _caller, int _launchedFromPid,
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800783 int _launchedFromUid, String _launchedFromPackage, Intent _intent, String _resolvedType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800784 ActivityInfo aInfo, Configuration _configuration,
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700785 ActivityRecord _resultTo, String _resultWho, int _reqCode,
Dianne Hackbornfb81d092015-08-03 17:14:46 -0700786 boolean _componentSpecified, boolean _rootVoiceInteraction,
787 ActivityStackSupervisor supervisor,
Wale Ogunwale1affbbc2016-05-01 09:03:52 -0700788 ActivityContainer container, ActivityOptions options, ActivityRecord sourceRecord) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800789 service = _service;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800790 appToken = new Token(this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800791 info = aInfo;
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800792 launchedFromPid = _launchedFromPid;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800793 launchedFromUid = _launchedFromUid;
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800794 launchedFromPackage = _launchedFromPackage;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700795 userId = UserHandle.getUserId(aInfo.applicationInfo.uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800796 intent = _intent;
797 shortComponentName = _intent.getComponent().flattenToShortString();
798 resolvedType = _resolvedType;
The Android Open Source Project4df24232009-03-05 14:34:35 -0800799 componentSpecified = _componentSpecified;
Dianne Hackbornfb81d092015-08-03 17:14:46 -0700800 rootVoiceInteraction = _rootVoiceInteraction;
Andrii Kulian1779e612016-10-12 21:58:25 -0700801 mLastReportedConfiguration = new Configuration(_configuration);
802 mLastReportedOverrideConfiguration = new Configuration();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800803 resultTo = _resultTo;
804 resultWho = _resultWho;
805 requestCode = _reqCode;
Ruben Brunkf53497c2017-03-27 20:26:17 -0700806 state = INITIALIZING;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800807 frontOfTask = false;
808 launchFailed = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800809 stopped = false;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700810 delayedResume = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800811 finishing = false;
Wale Ogunwalef81c1d12016-01-12 12:20:18 -0800812 deferRelaunchUntilPaused = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800813 keysPaused = false;
814 inHistory = false;
Chong Zhanga48ef662015-08-18 19:21:47 -0700815 visible = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800816 nowVisible = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800817 idle = false;
818 hasBeenLaunched = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700819 mStackSupervisor = supervisor;
Craig Mautnere0a38842013-12-16 16:14:02 -0800820 mInitialActivityContainer = container;
Robert Carr0f5d7532016-10-17 16:39:17 -0700821
822 mRotationAnimationHint = aInfo.rotationAnimation;
823
Craig Mautner233ceee2014-05-09 17:05:11 -0700824 if (options != null) {
Chong Zhang280d3322015-11-03 17:27:26 -0800825 pendingOptions = options;
Craig Mautnerbb742462014-07-07 15:28:55 -0700826 mLaunchTaskBehind = pendingOptions.getLaunchTaskBehind();
Robert Carr0f5d7532016-10-17 16:39:17 -0700827
828 final int rotationAnimation = pendingOptions.getRotationAnimationHint();
829 // Only override manifest supplied option if set.
830 if (rotationAnimation >= 0) {
831 mRotationAnimationHint = rotationAnimation;
832 }
Dianne Hackbornb5a380d2015-05-20 18:18:46 -0700833 PendingIntent usageReport = pendingOptions.getUsageTimeReport();
834 if (usageReport != null) {
835 appTimeTracker = new AppTimeTracker(usageReport);
836 }
Craig Mautner233ceee2014-05-09 17:05:11 -0700837 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800838
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800839 // This starts out true, since the initial state of an activity is that we have everything,
840 // and we shouldn't never consider it lacking in state to be removed if it dies.
Dianne Hackborn2d1b3782012-09-09 17:49:39 -0700841 haveState = true;
842
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800843 // If the class name in the intent doesn't match that of the target, this is
844 // probably an alias. We have to create a new ComponentName object to keep track
845 // of the real activity name, so that FLAG_ACTIVITY_CLEAR_TOP is handled properly.
846 if (aInfo.targetActivity == null
847 || (aInfo.targetActivity.equals(_intent.getComponent().getClassName())
848 && (aInfo.launchMode == LAUNCH_MULTIPLE
849 || aInfo.launchMode == LAUNCH_SINGLE_TOP))) {
850 realActivity = _intent.getComponent();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800851 } else {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800852 realActivity = new ComponentName(aInfo.packageName, aInfo.targetActivity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800853 }
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800854 taskAffinity = aInfo.taskAffinity;
855 stateNotNeeded = (aInfo.flags & FLAG_STATE_NOT_NEEDED) != 0;
856 appInfo = aInfo.applicationInfo;
857 nonLocalizedLabel = aInfo.nonLocalizedLabel;
858 labelRes = aInfo.labelRes;
859 if (nonLocalizedLabel == null && labelRes == 0) {
860 ApplicationInfo app = aInfo.applicationInfo;
861 nonLocalizedLabel = app.nonLocalizedLabel;
862 labelRes = app.labelRes;
863 }
864 icon = aInfo.getIconResource();
865 logo = aInfo.getLogoResource();
866 theme = aInfo.getThemeResource();
867 realTheme = theme;
868 if (realTheme == 0) {
869 realTheme = aInfo.applicationInfo.targetSdkVersion < HONEYCOMB
870 ? android.R.style.Theme : android.R.style.Theme_Holo;
871 }
872 if ((aInfo.flags & ActivityInfo.FLAG_HARDWARE_ACCELERATED) != 0) {
873 windowFlags |= LayoutParams.FLAG_HARDWARE_ACCELERATED;
874 }
875 if ((aInfo.flags & FLAG_MULTIPROCESS) != 0 && _caller != null
876 && (aInfo.applicationInfo.uid == SYSTEM_UID
877 || aInfo.applicationInfo.uid == _caller.info.uid)) {
878 processName = _caller.processName;
879 } else {
880 processName = aInfo.processName;
881 }
882
883 if ((aInfo.flags & FLAG_EXCLUDE_FROM_RECENTS) != 0) {
884 intent.addFlags(FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
885 }
886
887 packageName = aInfo.applicationInfo.packageName;
888 launchMode = aInfo.launchMode;
889
Ruben Brunkf53497c2017-03-27 20:26:17 -0700890 Entry ent = AttributeCache.instance().get(packageName,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800891 realTheme, com.android.internal.R.styleable.Window, userId);
892 final boolean translucent = ent != null && (ent.array.getBoolean(
893 com.android.internal.R.styleable.Window_windowIsTranslucent, false)
894 || (!ent.array.hasValue(
895 com.android.internal.R.styleable.Window_windowIsTranslucent)
896 && ent.array.getBoolean(
897 com.android.internal.R.styleable.Window_windowSwipeToDismiss,
898 false)));
899 fullscreen = ent != null && !ent.array.getBoolean(
900 com.android.internal.R.styleable.Window_windowIsFloating, false) && !translucent;
901 noDisplay = ent != null && ent.array.getBoolean(
902 com.android.internal.R.styleable.Window_windowNoDisplay, false);
903
Winson Chung83471632016-12-13 11:02:12 -0800904 setActivityType(_componentSpecified, _launchedFromUid, _intent, options, sourceRecord);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800905
906 immersive = (aInfo.flags & FLAG_IMMERSIVE) != 0;
907
908 requestedVrComponent = (aInfo.requestedVrComponent == null) ?
909 null : ComponentName.unflattenFromString(aInfo.requestedVrComponent);
910 }
911
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800912 AppWindowContainerController getWindowContainerController() {
913 return mWindowContainerController;
914 }
915
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800916 void createWindowContainer() {
917 if (mWindowContainerController != null) {
918 throw new IllegalArgumentException("Window container=" + mWindowContainerController
919 + " already created for r=" + this);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800920 }
921
922 inHistory = true;
923
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800924 final TaskWindowContainerController taskController = task.getWindowContainerController();
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800925
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700926 // TODO(b/36505427): Maybe this call should be moved inside updateOverrideConfiguration()
927 task.updateOverrideConfigurationFromLaunchBounds();
928 // Make sure override configuration is up-to-date before using to create window controller.
929 updateOverrideConfiguration();
930
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800931 mWindowContainerController = new AppWindowContainerController(taskController, appToken,
932 this, Integer.MAX_VALUE /* add on top */, info.screenOrientation, fullscreen,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800933 (info.flags & FLAG_SHOW_FOR_ALL_USERS) != 0, info.configChanges,
934 task.voiceSession != null, mLaunchTaskBehind, isAlwaysFocusable(),
935 appInfo.targetSdkVersion, mRotationAnimationHint,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700936 ActivityManagerService.getInputDispatchingTimeoutLocked(this) * 1000000L,
937 getOverrideConfiguration(), mBounds);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800938
939 task.addActivityToTop(this);
940
941 onOverrideConfigurationSent();
942 }
943
944 void removeWindowContainer() {
Wale Ogunwalecc367f42017-02-01 08:12:14 -0800945 // Resume key dispatching if it is currently paused before we remove the container.
946 resumeKeyDispatchingLocked();
947
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800948 mWindowContainerController.removeContainer(getDisplayId());
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800949 mWindowContainerController = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800950 }
951
Winson Chung30480042017-01-26 10:55:34 -0800952 /**
953 * Reparents this activity into {@param newTask} at the provided {@param position}. The caller
954 * should ensure that the {@param newTask} is not already the parent of this activity.
955 */
956 void reparent(TaskRecord newTask, int position, String reason) {
957 final TaskRecord prevTask = task;
958 if (prevTask == newTask) {
959 throw new IllegalArgumentException(reason + ": task=" + newTask
960 + " is already the parent of r=" + this);
961 }
962
Winson Chung74666102017-02-22 17:49:24 -0800963 // TODO: Ensure that we do not directly reparent activities across stacks, as that may leave
964 // the stacks in strange states. For now, we should use Task.reparent() to ensure that
965 // the stack is left in an OK state.
966 if (prevTask != null && newTask != null && prevTask.getStack() != newTask.getStack()) {
967 throw new IllegalArgumentException(reason + ": task=" + newTask
968 + " is in a different stack (" + newTask.getStackId() + ") than the parent of"
969 + " r=" + this + " (" + prevTask.getStackId() + ")");
970 }
971
Winson Chung30480042017-01-26 10:55:34 -0800972 // Must reparent first in window manager
973 mWindowContainerController.reparent(newTask.getWindowContainerController(), position);
974
Bryce Leeaf691c02017-03-20 14:20:22 -0700975 // Remove the activity from the old task and add it to the new task.
976 prevTask.removeActivity(this, true /*reparenting*/);
Bryce Lee0f9bde82017-02-22 16:39:06 -0800977
Winson Chung30480042017-01-26 10:55:34 -0800978 newTask.addActivityAtIndex(position, this);
979 }
980
Wale Ogunwale1affbbc2016-05-01 09:03:52 -0700981 private boolean isHomeIntent(Intent intent) {
Ruben Brunkf53497c2017-03-27 20:26:17 -0700982 return ACTION_MAIN.equals(intent.getAction())
983 && intent.hasCategory(CATEGORY_HOME)
Wale Ogunwale1affbbc2016-05-01 09:03:52 -0700984 && intent.getCategories().size() == 1
985 && intent.getData() == null
986 && intent.getType() == null;
987 }
988
Chong Zhangad24f962016-08-25 12:12:33 -0700989 static boolean isMainIntent(Intent intent) {
Ruben Brunkf53497c2017-03-27 20:26:17 -0700990 return ACTION_MAIN.equals(intent.getAction())
991 && intent.hasCategory(CATEGORY_LAUNCHER)
Chong Zhangad24f962016-08-25 12:12:33 -0700992 && intent.getCategories().size() == 1
993 && intent.getData() == null
994 && intent.getType() == null;
995 }
996
Wale Ogunwale1affbbc2016-05-01 09:03:52 -0700997 private boolean canLaunchHomeActivity(int uid, ActivityRecord sourceRecord) {
998 if (uid == Process.myUid() || uid == 0) {
999 // System process can launch home activity.
1000 return true;
1001 }
1002 // Resolver activity can launch home activity.
1003 return sourceRecord != null && sourceRecord.isResolverActivity();
1004 }
1005
Winson Chung83471632016-12-13 11:02:12 -08001006 /**
1007 * @return whether the given package name can launch an assist activity.
1008 */
1009 private boolean canLaunchAssistActivity(String packageName) {
1010 if (service.mAssistUtils == null) {
1011 return false;
1012 }
1013
1014 final ComponentName assistComponent = service.mAssistUtils.getActiveServiceComponentName();
1015 if (assistComponent != null) {
1016 return assistComponent.getPackageName().equals(packageName);
1017 }
1018 return false;
1019 }
1020
1021 private void setActivityType(boolean componentSpecified, int launchedFromUid, Intent intent,
1022 ActivityOptions options, ActivityRecord sourceRecord) {
Wale Ogunwale1affbbc2016-05-01 09:03:52 -07001023 if ((!componentSpecified || canLaunchHomeActivity(launchedFromUid, sourceRecord))
1024 && isHomeIntent(intent) && !isResolverActivity()) {
1025 // This sure looks like a home activity!
1026 mActivityType = HOME_ACTIVITY_TYPE;
Wale Ogunwaledf241e92016-10-13 15:14:21 -07001027
1028 if (info.resizeMode == RESIZE_MODE_FORCE_RESIZEABLE
1029 || info.resizeMode == RESIZE_MODE_RESIZEABLE_VIA_SDK_VERSION) {
1030 // We only allow home activities to be resizeable if they explicitly requested it.
1031 info.resizeMode = RESIZE_MODE_UNRESIZEABLE;
1032 }
Wale Ogunwale1affbbc2016-05-01 09:03:52 -07001033 } else if (realActivity.getClassName().contains(RECENTS_PACKAGE_NAME)) {
1034 mActivityType = RECENTS_ACTIVITY_TYPE;
Winson Chung83471632016-12-13 11:02:12 -08001035 } else if (options != null && options.getLaunchStackId() == ASSISTANT_STACK_ID
1036 && canLaunchAssistActivity(launchedFromPackage)) {
1037 mActivityType = ASSISTANT_ACTIVITY_TYPE;
Wale Ogunwale1affbbc2016-05-01 09:03:52 -07001038 } else {
1039 mActivityType = APPLICATION_ACTIVITY_TYPE;
1040 }
1041 }
1042
Craig Mautnera228ae92014-07-09 05:44:55 -07001043 void setTaskToAffiliateWith(TaskRecord taskToAffiliateWith) {
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -08001044 if (launchMode != LAUNCH_SINGLE_INSTANCE && launchMode != LAUNCH_SINGLE_TASK) {
Craig Mautnera228ae92014-07-09 05:44:55 -07001045 task.setTaskToAffiliateWith(taskToAffiliateWith);
1046 }
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001047 }
1048
Andrii Kulian02b7a832016-10-06 23:11:56 -07001049 /**
1050 * @return Stack value from current task, null if there is no task.
1051 */
Winson Chung55893332017-02-17 17:13:10 -08001052 <T extends ActivityStack> T getStack() {
1053 return task != null ? (T) task.getStack() : null;
Andrii Kulian02b7a832016-10-06 23:11:56 -07001054 }
1055
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001056 private int getStackId() {
1057 return getStack() != null ? getStack().mStackId : INVALID_STACK_ID;
1058 }
1059
Craig Mautner5eda9b32013-07-02 11:58:16 -07001060 boolean changeWindowTranslucency(boolean toOpaque) {
1061 if (fullscreen == toOpaque) {
1062 return false;
1063 }
Craig Mautner4addfc52013-06-25 08:05:45 -07001064
Craig Mautner5eda9b32013-07-02 11:58:16 -07001065 // Keep track of the number of fullscreen activities in this task.
1066 task.numFullscreen += toOpaque ? +1 : -1;
1067
1068 fullscreen = toOpaque;
1069 return true;
Craig Mautner4addfc52013-06-25 08:05:45 -07001070 }
1071
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001072 void takeFromHistory() {
1073 if (inHistory) {
1074 inHistory = false;
1075 if (task != null && !finishing) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001076 task = null;
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001077 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -07001078 clearOptionsLocked();
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001079 }
1080 }
1081
1082 boolean isInHistory() {
1083 return inHistory;
1084 }
1085
Wale Ogunwale7d701172015-03-11 15:36:30 -07001086 boolean isInStackLocked() {
Andrii Kulian02b7a832016-10-06 23:11:56 -07001087 final ActivityStack stack = getStack();
1088 return stack != null && stack.isInStackLocked(this) != null;
Wale Ogunwale7d701172015-03-11 15:36:30 -07001089 }
1090
Craig Mautner86d67a42013-05-14 10:34:38 -07001091 boolean isHomeActivity() {
1092 return mActivityType == HOME_ACTIVITY_TYPE;
1093 }
1094
1095 boolean isRecentsActivity() {
1096 return mActivityType == RECENTS_ACTIVITY_TYPE;
1097 }
1098
Winson Chung83471632016-12-13 11:02:12 -08001099 boolean isAssistantActivity() {
1100 return mActivityType == ASSISTANT_ACTIVITY_TYPE;
1101 }
1102
Craig Mautner86d67a42013-05-14 10:34:38 -07001103 boolean isApplicationActivity() {
1104 return mActivityType == APPLICATION_ACTIVITY_TYPE;
1105 }
1106
Craig Mautner21d24a22014-04-23 11:45:37 -07001107 boolean isPersistable() {
Ruben Brunkf53497c2017-03-27 20:26:17 -07001108 return (info.persistableMode == PERSIST_ROOT_ONLY ||
1109 info.persistableMode == PERSIST_ACROSS_REBOOTS) &&
Craig Mautner43e52ed2014-06-16 17:18:52 -07001110 (intent == null ||
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001111 (intent.getFlags() & FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS) == 0);
Craig Mautner21d24a22014-04-23 11:45:37 -07001112 }
1113
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08001114 boolean isFocusable() {
Andrii Kulian02b7a832016-10-06 23:11:56 -07001115 return StackId.canReceiveKeys(task.getStackId()) || isAlwaysFocusable();
Wale Ogunwale6cae7652015-12-26 07:36:26 -08001116 }
1117
1118 boolean isResizeable() {
Winson Chungd3395382016-12-13 11:49:09 -08001119 return ActivityInfo.isResizeableMode(info.resizeMode) || info.supportsPictureInPicture();
Wale Ogunwale6cae7652015-12-26 07:36:26 -08001120 }
1121
Winson Chungd3395382016-12-13 11:49:09 -08001122 /**
1123 * @return whether this activity is non-resizeable or forced to be resizeable
1124 */
1125 boolean isNonResizableOrForcedResizable() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -07001126 return info.resizeMode != RESIZE_MODE_RESIZEABLE
Wale Ogunwale72a73e32016-10-13 12:16:39 -07001127 && info.resizeMode != RESIZE_MODE_RESIZEABLE_VIA_SDK_VERSION;
Jorim Jaggicd13d332016-04-27 15:40:20 -07001128 }
1129
Winson Chunge6308042016-10-31 09:24:01 -07001130 /**
Winson Chungd3395382016-12-13 11:49:09 -08001131 * @return whether this activity supports PiP multi-window and can be put in the pinned stack.
Winson Chunge6308042016-10-31 09:24:01 -07001132 */
Wale Ogunwale6cae7652015-12-26 07:36:26 -08001133 boolean supportsPictureInPicture() {
Winson Chungd3395382016-12-13 11:49:09 -08001134 return service.mSupportsPictureInPicture && !isHomeActivity()
1135 && info.supportsPictureInPicture();
1136 }
1137
1138 /**
1139 * @return whether this activity supports split-screen multi-window and can be put in the docked
1140 * stack.
1141 */
1142 boolean supportsSplitScreen() {
1143 // An activity can not be docked even if it is considered resizeable because it only
1144 // supports picture-in-picture mode but has a non-resizeable resizeMode
1145 return service.mSupportsSplitScreenMultiWindow && supportsResizeableMultiWindow();
1146 }
1147
1148 /**
1149 * @return whether this activity supports freeform multi-window and can be put in the freeform
1150 * stack.
1151 */
1152 boolean supportsFreeform() {
1153 return service.mSupportsFreeformWindowManagement && supportsResizeableMultiWindow();
1154 }
1155
1156 /**
1157 * @return whether this activity supports non-PiP multi-window.
1158 */
1159 private boolean supportsResizeableMultiWindow() {
1160 return service.mSupportsMultiWindow && !isHomeActivity()
1161 && (ActivityInfo.isResizeableMode(info.resizeMode)
1162 || service.mForceResizableActivities);
Wale Ogunwaled26176f2016-01-25 20:04:04 -08001163 }
1164
Winson Chunge6308042016-10-31 09:24:01 -07001165 /**
Winson Chungc2baac02017-01-11 13:34:47 -08001166 * @return whether this activity is currently allowed to enter PIP, throwing an exception if
Winson Chung4dabf232017-01-25 13:25:22 -08001167 * the activity is not currently visible and {@param noThrow} is not set.
Winson Chunge6308042016-10-31 09:24:01 -07001168 */
Winson Chung4dabf232017-01-25 13:25:22 -08001169 boolean checkEnterPictureInPictureState(String caller, boolean noThrow) {
Winson Chungf4ac0632017-03-17 12:34:12 -07001170 // Check app-ops and see if PiP is supported for this package
1171 if (!checkEnterPictureInPictureAppOpsState()) {
1172 return false;
1173 }
1174
Winson Chungf1bfee12017-03-24 17:11:33 -07001175 // Check to see if we are in VR mode, and disallow PiP if so
1176 if (service.shouldDisableNonVrUiLocked()) {
1177 return false;
1178 }
1179
Winson Chungbb348802017-01-30 12:01:45 -08001180 boolean isCurrentAppLocked = mStackSupervisor.getLockTaskModeState() != LOCK_TASK_MODE_NONE;
Winson Chungc2baac02017-01-11 13:34:47 -08001181 boolean isKeyguardLocked = service.isKeyguardLocked();
1182 boolean hasPinnedStack = mStackSupervisor.getStack(PINNED_STACK_ID) != null;
Winson Chungbb348802017-01-30 12:01:45 -08001183 // Don't return early if !isNotLocked, since we want to throw an exception if the activity
1184 // is in an incorrect state
Winson Chunge581ebf2017-02-21 08:25:03 -08001185 boolean isNotLockedOrOnKeyguard = !isKeyguardLocked && !isCurrentAppLocked;
Winson Chungc2baac02017-01-11 13:34:47 -08001186 switch (state) {
1187 case RESUMED:
Winson Chunge581ebf2017-02-21 08:25:03 -08001188 // When visible, allow entering PiP if the app is not locked. If it is over the
1189 // keyguard, then we will prompt to unlock in the caller before entering PiP.
1190 return !isCurrentAppLocked;
Winson Chungc2baac02017-01-11 13:34:47 -08001191 case PAUSING:
1192 case PAUSED:
Winson Chungbb348802017-01-30 12:01:45 -08001193 // When pausing, then only allow enter PiP as in the resume state, and in addition,
1194 // require that there is not an existing PiP activity and that the current system
1195 // state supports entering PiP
Winson Chunge581ebf2017-02-21 08:25:03 -08001196 return isNotLockedOrOnKeyguard && !hasPinnedStack
Winson Chungf4ac0632017-03-17 12:34:12 -07001197 && supportsPictureInPictureWhilePausing;
Winson Chungc2baac02017-01-11 13:34:47 -08001198 case STOPPING:
1199 // When stopping in a valid state, then only allow enter PiP as in the pause state.
1200 // Otherwise, fall through to throw an exception if the caller is trying to enter
1201 // PiP in an invalid stopping state.
1202 if (supportsPictureInPictureWhilePausing) {
Winson Chungf4ac0632017-03-17 12:34:12 -07001203 return isNotLockedOrOnKeyguard && !hasPinnedStack;
Winson Chungc2baac02017-01-11 13:34:47 -08001204 }
1205 default:
Winson Chung4dabf232017-01-25 13:25:22 -08001206 if (noThrow) {
1207 return false;
1208 } else {
1209 throw new IllegalStateException(caller
1210 + ": Current activity is not visible (state=" + state.name() + ") "
1211 + "r=" + this);
1212 }
Winson Chungb5c41b72016-12-07 15:00:47 -08001213 }
Winson Chunge6308042016-10-31 09:24:01 -07001214 }
1215
Winson Chung59fda9e2017-01-20 16:14:51 -08001216 /**
Winson Chungf4ac0632017-03-17 12:34:12 -07001217 * @return Whether AppOps allows this package to enter picture-in-picture.
Winson Chung59fda9e2017-01-20 16:14:51 -08001218 */
Winson Chungf4ac0632017-03-17 12:34:12 -07001219 private boolean checkEnterPictureInPictureAppOpsState() {
Winson Chung59fda9e2017-01-20 16:14:51 -08001220 try {
Winson Chungf4ac0632017-03-17 12:34:12 -07001221 return service.getAppOpsService().checkOperation(OP_PICTURE_IN_PICTURE,
Winson Chung59fda9e2017-01-20 16:14:51 -08001222 appInfo.uid, packageName) == MODE_ALLOWED;
1223 } catch (RemoteException e) {
1224 // Local call
1225 }
1226 return false;
1227 }
1228
Wale Ogunwale6cae7652015-12-26 07:36:26 -08001229 boolean isAlwaysFocusable() {
1230 return (info.flags & FLAG_ALWAYS_FOCUSABLE) != 0;
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08001231 }
1232
Jorim Jaggife762342016-10-13 14:33:27 +02001233 /**
1234 * @return true if the activity contains windows that have
1235 * {@link LayoutParams#FLAG_SHOW_WHEN_LOCKED} set
1236 */
1237 boolean hasShowWhenLockedWindows() {
1238 return service.mWindowManager.containsShowWhenLockedWindow(appToken);
1239 }
1240
1241 /**
1242 * @return true if the activity contains windows that have
1243 * {@link LayoutParams#FLAG_DISMISS_KEYGUARD} set
1244 */
1245 boolean hasDismissKeyguardWindows() {
1246 return service.mWindowManager.containsDismissKeyguardWindow(appToken);
1247 }
1248
Wale Ogunwale7d701172015-03-11 15:36:30 -07001249 void makeFinishingLocked() {
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -08001250 if (!finishing) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07001251 final ActivityStack stack = getStack();
1252 if (stack != null && this == stack.getVisibleBehindActivity()) {
Jose Lima34ff4922014-08-18 15:19:41 -07001253 // A finishing activity should not remain as visible in the background
1254 mStackSupervisor.requestVisibleBehindLocked(this, false);
1255 }
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -08001256 finishing = true;
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -07001257 if (stopped) {
1258 clearOptionsLocked();
1259 }
Yorke Leebd54c2a2016-10-25 13:49:23 -07001260
1261 if (service != null) {
1262 service.mTaskChangeNotificationController.notifyTaskStackChanged();
1263 }
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -08001264 }
1265 }
1266
Dianne Hackborn7e269642010-08-25 19:50:20 -07001267 UriPermissionOwner getUriPermissionsLocked() {
1268 if (uriPermissions == null) {
1269 uriPermissions = new UriPermissionOwner(service, this);
1270 }
1271 return uriPermissions;
1272 }
1273
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001274 void addResultLocked(ActivityRecord from, String resultWho,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001275 int requestCode, int resultCode,
1276 Intent resultData) {
1277 ActivityResult r = new ActivityResult(from, resultWho,
John Spurlock8a985d22014-02-25 09:40:05 -05001278 requestCode, resultCode, resultData);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001279 if (results == null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001280 results = new ArrayList<ResultInfo>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001281 }
1282 results.add(r);
1283 }
1284
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001285 void removeResultsLocked(ActivityRecord from, String resultWho,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001286 int requestCode) {
1287 if (results != null) {
1288 for (int i=results.size()-1; i>=0; i--) {
1289 ActivityResult r = (ActivityResult)results.get(i);
1290 if (r.mFrom != from) continue;
1291 if (r.mResultWho == null) {
1292 if (resultWho != null) continue;
1293 } else {
1294 if (!r.mResultWho.equals(resultWho)) continue;
1295 }
1296 if (r.mRequestCode != requestCode) continue;
1297
1298 results.remove(i);
1299 }
1300 }
1301 }
1302
Andrii Kulian21713ac2016-10-12 22:05:05 -07001303 private void addNewIntentLocked(ReferrerIntent intent) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001304 if (newIntents == null) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08001305 newIntents = new ArrayList<>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001306 }
1307 newIntents.add(intent);
1308 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001309
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001310 /**
1311 * Deliver a new Intent to an existing activity, so that its onNewIntent()
1312 * method will be called at the proper time.
1313 */
Dianne Hackborn85d558c2014-11-04 10:31:54 -08001314 final void deliverNewIntentLocked(int callingUid, Intent intent, String referrer) {
Dianne Hackborn514074f2013-02-11 10:52:46 -08001315 // The activity now gets access to the data associated with this Intent.
1316 service.grantUriPermissionFromIntentLocked(callingUid, packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01001317 intent, getUriPermissionsLocked(), userId);
Dianne Hackborn85d558c2014-11-04 10:31:54 -08001318 final ReferrerIntent rintent = new ReferrerIntent(intent, referrer);
Craig Mautner86d67a42013-05-14 10:34:38 -07001319 boolean unsent = true;
Andrii Kulian02b7a832016-10-06 23:11:56 -07001320 final ActivityStack stack = getStack();
Wale Ogunwale826c7062016-09-13 08:25:54 -07001321 final boolean isTopActivityInStack =
1322 stack != null && stack.topRunningActivityLocked() == this;
1323 final boolean isTopActivityWhileSleeping =
1324 service.isSleepingLocked() && isTopActivityInStack;
Wale Ogunwale826c7062016-09-13 08:25:54 -07001325
1326 // We want to immediately deliver the intent to the activity if:
Wale Ogunwale03f7e9e2016-09-22 09:04:09 -07001327 // - It is currently resumed or paused. i.e. it is currently visible to the user and we want
1328 // the user to see the visual effects caused by the intent delivery now.
Wale Ogunwale826c7062016-09-13 08:25:54 -07001329 // - The device is sleeping and it is the top activity behind the lock screen (b/6700897).
Ruben Brunkf53497c2017-03-27 20:26:17 -07001330 if ((state == RESUMED || state == PAUSED
Wale Ogunwale03f7e9e2016-09-22 09:04:09 -07001331 || isTopActivityWhileSleeping) && app != null && app.thread != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001332 try {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08001333 ArrayList<ReferrerIntent> ar = new ArrayList<>(1);
1334 ar.add(rintent);
Wale Ogunwale826c7062016-09-13 08:25:54 -07001335 app.thread.scheduleNewIntent(
Ruben Brunkf53497c2017-03-27 20:26:17 -07001336 ar, appToken, state == PAUSED /* andPause */);
Craig Mautner86d67a42013-05-14 10:34:38 -07001337 unsent = false;
Dianne Hackborn39792d22010-08-19 18:01:52 -07001338 } catch (RemoteException e) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08001339 Slog.w(TAG, "Exception thrown sending new intent to " + this, e);
Dianne Hackborn39792d22010-08-19 18:01:52 -07001340 } catch (NullPointerException e) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08001341 Slog.w(TAG, "Exception thrown sending new intent to " + this, e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001342 }
1343 }
Craig Mautner86d67a42013-05-14 10:34:38 -07001344 if (unsent) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08001345 addNewIntentLocked(rintent);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001346 }
1347 }
1348
Dianne Hackborn9622ca42012-10-23 18:56:33 -07001349 void updateOptionsLocked(ActivityOptions options) {
1350 if (options != null) {
1351 if (pendingOptions != null) {
1352 pendingOptions.abort();
1353 }
1354 pendingOptions = options;
1355 }
1356 }
1357
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001358 void applyOptionsLocked() {
George Mount2c92c972014-03-20 09:38:23 -07001359 if (pendingOptions != null
Ruben Brunkf53497c2017-03-27 20:26:17 -07001360 && pendingOptions.getAnimationType() != ANIM_SCENE_TRANSITION) {
Michael Jurka21385cd2012-05-03 10:57:31 -07001361 final int animationType = pendingOptions.getAnimationType();
1362 switch (animationType) {
Ruben Brunkf53497c2017-03-27 20:26:17 -07001363 case ANIM_CUSTOM:
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001364 service.mWindowManager.overridePendingAppTransition(
1365 pendingOptions.getPackageName(),
1366 pendingOptions.getCustomEnterResId(),
Dianne Hackborn84375872012-06-01 19:03:50 -07001367 pendingOptions.getCustomExitResId(),
1368 pendingOptions.getOnAnimationStartListener());
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001369 break;
Ruben Brunkf53497c2017-03-27 20:26:17 -07001370 case ANIM_CLIP_REVEAL:
Chet Haase10e23ab2015-02-11 15:08:38 -08001371 service.mWindowManager.overridePendingAppTransitionClipReveal(
1372 pendingOptions.getStartX(), pendingOptions.getStartY(),
1373 pendingOptions.getWidth(), pendingOptions.getHeight());
1374 if (intent.getSourceBounds() == null) {
1375 intent.setSourceBounds(new Rect(pendingOptions.getStartX(),
1376 pendingOptions.getStartY(),
1377 pendingOptions.getStartX()+pendingOptions.getWidth(),
1378 pendingOptions.getStartY()+pendingOptions.getHeight()));
1379 }
1380 break;
Ruben Brunkf53497c2017-03-27 20:26:17 -07001381 case ANIM_SCALE_UP:
Dianne Hackborneabfb3a2012-04-16 16:28:22 -07001382 service.mWindowManager.overridePendingAppTransitionScaleUp(
1383 pendingOptions.getStartX(), pendingOptions.getStartY(),
Winson Chung2e7f3bd2014-09-05 13:17:22 +02001384 pendingOptions.getWidth(), pendingOptions.getHeight());
Dianne Hackbornd367ca82012-05-07 15:49:39 -07001385 if (intent.getSourceBounds() == null) {
1386 intent.setSourceBounds(new Rect(pendingOptions.getStartX(),
1387 pendingOptions.getStartY(),
Winson Chung2e7f3bd2014-09-05 13:17:22 +02001388 pendingOptions.getStartX()+pendingOptions.getWidth(),
1389 pendingOptions.getStartY()+pendingOptions.getHeight()));
Dianne Hackbornd367ca82012-05-07 15:49:39 -07001390 }
Dianne Hackborneabfb3a2012-04-16 16:28:22 -07001391 break;
Ruben Brunkf53497c2017-03-27 20:26:17 -07001392 case ANIM_THUMBNAIL_SCALE_UP:
1393 case ANIM_THUMBNAIL_SCALE_DOWN:
1394 boolean scaleUp = (animationType == ANIM_THUMBNAIL_SCALE_UP);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001395 service.mWindowManager.overridePendingAppTransitionThumb(
1396 pendingOptions.getThumbnail(),
1397 pendingOptions.getStartX(), pendingOptions.getStartY(),
Michael Jurka21385cd2012-05-03 10:57:31 -07001398 pendingOptions.getOnAnimationStartListener(),
Michael Jurka832cb222012-04-13 09:32:47 -07001399 scaleUp);
Dianne Hackbornd367ca82012-05-07 15:49:39 -07001400 if (intent.getSourceBounds() == null) {
1401 intent.setSourceBounds(new Rect(pendingOptions.getStartX(),
1402 pendingOptions.getStartY(),
1403 pendingOptions.getStartX()
1404 + pendingOptions.getThumbnail().getWidth(),
1405 pendingOptions.getStartY()
1406 + pendingOptions.getThumbnail().getHeight()));
1407 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001408 break;
Ruben Brunkf53497c2017-03-27 20:26:17 -07001409 case ANIM_THUMBNAIL_ASPECT_SCALE_UP:
1410 case ANIM_THUMBNAIL_ASPECT_SCALE_DOWN:
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001411 final AppTransitionAnimationSpec[] specs = pendingOptions.getAnimSpecs();
Ruben Brunkf53497c2017-03-27 20:26:17 -07001412 if (animationType == ANIM_THUMBNAIL_ASPECT_SCALE_DOWN
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001413 && specs != null) {
1414 service.mWindowManager.overridePendingAppTransitionMultiThumb(
Filip Gruszczynski1a5203d2015-10-29 17:43:49 -07001415 specs, pendingOptions.getOnAnimationStartListener(),
1416 pendingOptions.getAnimationFinishedListener(), false);
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001417 } else {
1418 service.mWindowManager.overridePendingAppTransitionAspectScaledThumb(
1419 pendingOptions.getThumbnail(),
1420 pendingOptions.getStartX(), pendingOptions.getStartY(),
1421 pendingOptions.getWidth(), pendingOptions.getHeight(),
1422 pendingOptions.getOnAnimationStartListener(),
Ruben Brunkf53497c2017-03-27 20:26:17 -07001423 (animationType == ANIM_THUMBNAIL_ASPECT_SCALE_UP));
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001424 if (intent.getSourceBounds() == null) {
1425 intent.setSourceBounds(new Rect(pendingOptions.getStartX(),
1426 pendingOptions.getStartY(),
1427 pendingOptions.getStartX() + pendingOptions.getWidth(),
1428 pendingOptions.getStartY() + pendingOptions.getHeight()));
1429 }
Winson Chunga4ccb862014-08-22 15:26:27 -07001430 }
1431 break;
Craig Mautner233ceee2014-05-09 17:05:11 -07001432 default:
1433 Slog.e(TAG, "applyOptionsLocked: Unknown animationType=" + animationType);
1434 break;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001435 }
1436 pendingOptions = null;
1437 }
1438 }
1439
Adam Powellcfbe9be2013-11-06 14:58:58 -08001440 ActivityOptions getOptionsForTargetActivityLocked() {
1441 return pendingOptions != null ? pendingOptions.forTargetActivity() : null;
1442 }
1443
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001444 void clearOptionsLocked() {
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001445 if (pendingOptions != null) {
1446 pendingOptions.abort();
1447 pendingOptions = null;
1448 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001449 }
1450
Dianne Hackborn9622ca42012-10-23 18:56:33 -07001451 ActivityOptions takeOptionsLocked() {
1452 ActivityOptions opts = pendingOptions;
1453 pendingOptions = null;
1454 return opts;
1455 }
1456
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001457 void removeUriPermissionsLocked() {
Dianne Hackborn7e269642010-08-25 19:50:20 -07001458 if (uriPermissions != null) {
1459 uriPermissions.removeUriPermissionsLocked();
1460 uriPermissions = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001461 }
1462 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001463
1464 void pauseKeyDispatchingLocked() {
1465 if (!keysPaused) {
1466 keysPaused = true;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001467 mWindowContainerController.pauseKeyDispatching();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001468 }
1469 }
1470
1471 void resumeKeyDispatchingLocked() {
1472 if (keysPaused) {
1473 keysPaused = false;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001474 mWindowContainerController.resumeKeyDispatching();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001475 }
1476 }
1477
Winson Chung740c3ac2014-11-12 16:14:38 -08001478 void updateThumbnailLocked(Bitmap newThumbnail, CharSequence description) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001479 if (newThumbnail != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001480 if (DEBUG_THUMBNAILS) Slog.i(TAG_THUMBNAILS,
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001481 "Setting thumbnail of " + this + " to " + newThumbnail);
Winsonc809cbb2015-11-02 12:06:15 -08001482 boolean thumbnailUpdated = task.setLastThumbnailLocked(newThumbnail);
Winson Chung096f36b2014-08-20 15:39:01 -07001483 if (thumbnailUpdated && isPersistable()) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07001484 service.notifyTaskPersisterLocked(task, false);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001485 }
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001486 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001487 task.lastDescription = description;
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001488 }
1489
Andrii Kulian21713ac2016-10-12 22:05:05 -07001490 final Bitmap screenshotActivityLocked() {
1491 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "screenshotActivityLocked: " + this);
Jorim Jaggi02886a82016-12-06 09:10:06 -08001492
1493 if (ENABLE_TASK_SNAPSHOTS) {
1494 // No need to screenshot if snapshots are enabled.
1495 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS,
1496 "\tSnapshots are enabled, abort taking screenshot");
1497 return null;
1498 }
1499
Andrii Kulian21713ac2016-10-12 22:05:05 -07001500 if (noDisplay) {
1501 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tNo display");
1502 return null;
1503 }
1504
1505 final ActivityStack stack = getStack();
Matthew Ngae1ff4f2016-11-10 15:49:14 -08001506 if (stack.isHomeOrRecentsStack()) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07001507 // This is an optimization -- since we never show Home or Recents within Recents itself,
1508 // we can just go ahead and skip taking the screenshot if this is the home stack.
Matthew Ngae1ff4f2016-11-10 15:49:14 -08001509 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, stack.getStackId() == HOME_STACK_ID ?
1510 "\tHome stack" : "\tRecents stack");
Andrii Kulian21713ac2016-10-12 22:05:05 -07001511 return null;
1512 }
1513
1514 int w = service.mThumbnailWidth;
1515 int h = service.mThumbnailHeight;
1516
1517 if (w <= 0) {
1518 Slog.e(TAG, "\tInvalid thumbnail dimensions: " + w + "x" + h);
1519 return null;
1520 }
1521
1522 if (stack.mStackId == DOCKED_STACK_ID && mStackSupervisor.mIsDockMinimized) {
1523 // When the docked stack is minimized its app windows are cropped significantly so any
1524 // screenshot taken will not display the apps contain. So, we avoid taking a screenshot
1525 // in that case.
1526 if (DEBUG_SCREENSHOTS) Slog.e(TAG, "\tIn minimized docked stack");
1527 return null;
1528 }
1529
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001530 float scale = 0;
Andrii Kulian21713ac2016-10-12 22:05:05 -07001531 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tTaking screenshot");
1532
1533 // When this flag is set, we currently take the fullscreen screenshot of the activity but
1534 // scaled to half the size. This gives us a "good-enough" fullscreen thumbnail to use within
1535 // SystemUI while keeping memory usage low.
1536 if (TAKE_FULLSCREEN_SCREENSHOTS) {
1537 w = h = -1;
1538 scale = service.mFullscreenThumbnailScale;
1539 }
1540
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001541 return mWindowContainerController.screenshotApplications(getDisplayId(), w, h, scale);
Andrii Kulian21713ac2016-10-12 22:05:05 -07001542 }
1543
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001544 void setVisibility(boolean visible) {
1545 mWindowContainerController.setVisibility(visible);
1546 }
1547
1548 // TODO: Look into merging with #setVisibility()
Andrii Kulian21713ac2016-10-12 22:05:05 -07001549 void setVisible(boolean newVisible) {
1550 visible = newVisible;
1551 if (!visible && mUpdateTaskThumbnailWhenHidden) {
1552 updateThumbnailLocked(screenshotActivityLocked(), null /* description */);
1553 mUpdateTaskThumbnailWhenHidden = false;
1554 }
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001555 mWindowContainerController.setVisibility(visible);
Andrii Kulian21713ac2016-10-12 22:05:05 -07001556 final ArrayList<ActivityContainer> containers = mChildContainers;
1557 for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
1558 final ActivityContainer container = containers.get(containerNdx);
1559 container.setVisible(visible);
1560 }
1561 mStackSupervisor.mAppVisibilitiesChangedSinceLastPause = true;
1562 }
1563
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001564 void notifyAppResumed(boolean wasStopped, boolean allowSavedSurface) {
1565 mWindowContainerController.notifyAppResumed(wasStopped, allowSavedSurface);
1566 }
1567
1568 void notifyUnknownVisibilityLaunched() {
1569 mWindowContainerController.notifyUnknownVisibilityLaunched();
1570 }
1571
Jorim Jaggi241ae102016-11-02 21:57:33 -07001572 /**
1573 * @return true if the input activity should be made visible, ignoring any effect Keyguard
1574 * might have on the visibility
1575 *
1576 * @see {@link ActivityStack#checkKeyguardVisibility}
1577 */
1578 boolean shouldBeVisibleIgnoringKeyguard(boolean behindTranslucentActivity,
1579 boolean stackVisibleBehind, ActivityRecord visibleBehind,
1580 boolean behindFullscreenActivity) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07001581 if (!okToShowLocked()) {
1582 return false;
1583 }
1584
1585 // mLaunchingBehind: Activities launching behind are at the back of the task stack
1586 // but must be drawn initially for the animation as though they were visible.
1587 final boolean activityVisibleBehind =
1588 (behindTranslucentActivity || stackVisibleBehind) && visibleBehind == this;
1589
1590 boolean isVisible =
1591 !behindFullscreenActivity || mLaunchTaskBehind || activityVisibleBehind;
1592
1593 if (service.mSupportsLeanbackOnly && isVisible && isRecentsActivity()) {
1594 // On devices that support leanback only (Android TV), Recents activity can only be
1595 // visible if the home stack is the focused stack or we are in split-screen mode.
1596 isVisible = mStackSupervisor.getStack(DOCKED_STACK_ID) != null
1597 || mStackSupervisor.isFocusedStack(getStack());
1598 }
1599
1600 return isVisible;
1601 }
1602
1603 void makeVisibleIfNeeded(ActivityRecord starting) {
1604 // This activity is not currently visible, but is running. Tell it to become visible.
Ruben Brunkf53497c2017-03-27 20:26:17 -07001605 if (state == RESUMED || this == starting) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07001606 if (DEBUG_VISIBILITY) Slog.d(TAG_VISIBILITY,
1607 "Not making visible, r=" + this + " state=" + state + " starting=" + starting);
1608 return;
1609 }
1610
1611 // If this activity is paused, tell it to now show its window.
1612 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1613 "Making visible and scheduling visibility: " + this);
1614 final ActivityStack stack = getStack();
1615 try {
1616 if (stack.mTranslucentActivityWaiting != null) {
1617 updateOptionsLocked(returningOptions);
1618 stack.mUndrawnActivitiesBelowTopTranslucent.add(this);
1619 }
1620 setVisible(true);
1621 sleeping = false;
1622 app.pendingUiClean = true;
1623 app.thread.scheduleWindowVisibility(appToken, true /* showWindow */);
1624 // The activity may be waiting for stop, but that is no longer appropriate for it.
1625 mStackSupervisor.mStoppingActivities.remove(this);
1626 mStackSupervisor.mGoingToSleepActivities.remove(this);
1627 } catch (Exception e) {
1628 // Just skip on any failure; we'll make it visible when it next restarts.
1629 Slog.w(TAG, "Exception thrown making visibile: " + intent.getComponent(), e);
1630 }
1631 handleAlreadyVisible();
1632 }
1633
1634 boolean handleAlreadyVisible() {
1635 stopFreezingScreenLocked(false);
1636 try {
1637 if (returningOptions != null) {
Sudheer Shankacc6418f2016-10-13 12:03:44 -07001638 app.thread.scheduleOnNewActivityOptions(appToken, returningOptions.toBundle());
Andrii Kulian21713ac2016-10-12 22:05:05 -07001639 }
1640 } catch(RemoteException e) {
1641 }
Ruben Brunkf53497c2017-03-27 20:26:17 -07001642 return state == RESUMED;
Andrii Kulian21713ac2016-10-12 22:05:05 -07001643 }
1644
1645 static void activityResumedLocked(IBinder token) {
1646 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
1647 if (DEBUG_SAVED_STATE) Slog.i(TAG_STATES, "Resumed activity; dropping state of: " + r);
1648 if (r != null) {
1649 r.icicle = null;
1650 r.haveState = false;
1651 }
1652 }
1653
1654 /**
1655 * Once we know that we have asked an application to put an activity in the resumed state
1656 * (either by launching it or explicitly telling it), this function updates the rest of our
1657 * state to match that fact.
1658 */
1659 void completeResumeLocked() {
1660 final boolean wasVisible = visible;
1661 visible = true;
1662 if (!wasVisible) {
1663 // Visibility has changed, so take a note of it so we call the TaskStackChangedListener
1664 mStackSupervisor.mAppVisibilitiesChangedSinceLastPause = true;
1665 }
1666 idle = false;
1667 results = null;
1668 newIntents = null;
1669 stopped = false;
1670
1671 if (isHomeActivity()) {
1672 ProcessRecord app = task.mActivities.get(0).app;
1673 if (app != null && app != service.mHomeProcess) {
1674 service.mHomeProcess = app;
1675 }
1676 }
1677
1678 if (nowVisible) {
1679 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
1680 mStackSupervisor.reportActivityVisibleLocked(this);
Andrii Kulian21713ac2016-10-12 22:05:05 -07001681 }
1682
1683 // Schedule an idle timeout in case the app doesn't do it for us.
1684 mStackSupervisor.scheduleIdleTimeoutLocked(this);
1685
1686 mStackSupervisor.reportResumedActivityLocked(this);
1687
1688 resumeKeyDispatchingLocked();
1689 final ActivityStack stack = getStack();
1690 stack.mNoAnimActivities.clear();
1691
1692 // Mark the point when the activity is resuming
1693 // TODO: To be more accurate, the mark should be before the onCreate,
1694 // not after the onResume. But for subsequent starts, onResume is fine.
1695 if (app != null) {
1696 cpuTimeAtResume = service.mProcessCpuTracker.getCpuTimeForPid(app.pid);
1697 } else {
1698 cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1699 }
1700
1701 returningOptions = null;
1702
1703 if (stack.getVisibleBehindActivity() == this) {
1704 // When resuming an activity, require it to call requestVisibleBehind() again.
1705 stack.setVisibleBehindActivity(null /* ActivityRecord */);
1706 }
1707 mStackSupervisor.checkReadyForSleepLocked();
1708 }
1709
1710 final void activityStoppedLocked(Bundle newIcicle, PersistableBundle newPersistentState,
1711 CharSequence description) {
1712 final ActivityStack stack = getStack();
Ruben Brunkf53497c2017-03-27 20:26:17 -07001713 if (state != STOPPING) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07001714 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + this);
Ruben Brunkf53497c2017-03-27 20:26:17 -07001715 stack.mHandler.removeMessages(STOP_TIMEOUT_MSG, this);
Andrii Kulian21713ac2016-10-12 22:05:05 -07001716 return;
1717 }
1718 if (newPersistentState != null) {
1719 persistentState = newPersistentState;
1720 service.notifyTaskPersisterLocked(task, false);
1721 }
1722 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE, "Saving icicle of " + this + ": " + icicle);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001723
Andrii Kulian21713ac2016-10-12 22:05:05 -07001724 if (newIcicle != null) {
1725 // If icicle is null, this is happening due to a timeout, so we haven't really saved
1726 // the state.
1727 icicle = newIcicle;
1728 haveState = true;
1729 launchCount = 0;
1730 updateThumbnailLocked(null /* newThumbnail */, description);
1731 }
1732 if (!stopped) {
1733 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to STOPPED: " + this + " (stop complete)");
Ruben Brunkf53497c2017-03-27 20:26:17 -07001734 stack.mHandler.removeMessages(STOP_TIMEOUT_MSG, this);
Andrii Kulian21713ac2016-10-12 22:05:05 -07001735 stopped = true;
Ruben Brunkf53497c2017-03-27 20:26:17 -07001736 state = STOPPED;
Andrii Kulian21713ac2016-10-12 22:05:05 -07001737
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001738 mWindowContainerController.notifyAppStopped();
Andrii Kulian21713ac2016-10-12 22:05:05 -07001739
1740 if (stack.getVisibleBehindActivity() == this) {
1741 mStackSupervisor.requestVisibleBehindLocked(this, false /* visible */);
1742 }
1743 if (finishing) {
1744 clearOptionsLocked();
1745 } else {
1746 if (deferRelaunchUntilPaused) {
1747 stack.destroyActivityLocked(this, true /* removeFromApp */, "stop-config");
1748 mStackSupervisor.resumeFocusedStackTopActivityLocked();
1749 } else {
1750 mStackSupervisor.updatePreviousProcessLocked(this);
1751 }
1752 }
1753 }
1754 }
1755
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001756 void startLaunchTickingLocked() {
Ruben Brunkf53497c2017-03-27 20:26:17 -07001757 if (IS_USER_BUILD) {
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001758 return;
1759 }
1760 if (launchTickTime == 0) {
1761 launchTickTime = SystemClock.uptimeMillis();
1762 continueLaunchTickingLocked();
1763 }
1764 }
1765
1766 boolean continueLaunchTickingLocked() {
Wale Ogunwale7d701172015-03-11 15:36:30 -07001767 if (launchTickTime == 0) {
1768 return false;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001769 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07001770
Andrii Kulian02b7a832016-10-06 23:11:56 -07001771 final ActivityStack stack = getStack();
Wale Ogunwale7d701172015-03-11 15:36:30 -07001772 if (stack == null) {
1773 return false;
1774 }
1775
Ruben Brunkf53497c2017-03-27 20:26:17 -07001776 Message msg = stack.mHandler.obtainMessage(LAUNCH_TICK_MSG, this);
1777 stack.mHandler.removeMessages(LAUNCH_TICK_MSG);
1778 stack.mHandler.sendMessageDelayed(msg, LAUNCH_TICK);
Wale Ogunwale7d701172015-03-11 15:36:30 -07001779 return true;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001780 }
1781
1782 void finishLaunchTickingLocked() {
1783 launchTickTime = 0;
Andrii Kulian02b7a832016-10-06 23:11:56 -07001784 final ActivityStack stack = getStack();
Wale Ogunwale7d701172015-03-11 15:36:30 -07001785 if (stack != null) {
Ruben Brunkf53497c2017-03-27 20:26:17 -07001786 stack.mHandler.removeMessages(LAUNCH_TICK_MSG);
Wale Ogunwale7d701172015-03-11 15:36:30 -07001787 }
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001788 }
1789
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001790 // IApplicationToken
1791
1792 public boolean mayFreezeScreenLocked(ProcessRecord app) {
1793 // Only freeze the screen if this activity is currently attached to
1794 // an application, and that application is not blocked or unresponding.
1795 // In any other case, we can't count on getting the screen unfrozen,
1796 // so it is best to leave as-is.
Dianne Hackborn5f4d6432010-12-21 20:40:11 -08001797 return app != null && !app.crashing && !app.notResponding;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001798 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001799
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001800 public void startFreezingScreenLocked(ProcessRecord app, int configChanges) {
1801 if (mayFreezeScreenLocked(app)) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001802 mWindowContainerController.startFreezingScreen(configChanges);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001803 }
1804 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001805
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001806 public void stopFreezingScreenLocked(boolean force) {
1807 if (force || frozenBeforeDestroy) {
1808 frozenBeforeDestroy = false;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001809 mWindowContainerController.stopFreezingScreen(force);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001810 }
1811 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001812
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001813 public void reportFullyDrawnLocked() {
1814 final long curTime = SystemClock.uptimeMillis();
1815 if (displayStartTime != 0) {
1816 reportLaunchTimeLocked(curTime);
1817 }
Andrii Kulian02b7a832016-10-06 23:11:56 -07001818 final ActivityStack stack = getStack();
Wale Ogunwale7d701172015-03-11 15:36:30 -07001819 if (fullyDrawnStartTime != 0 && stack != null) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001820 final long thisTime = curTime - fullyDrawnStartTime;
1821 final long totalTime = stack.mFullyDrawnStartTime != 0
1822 ? (curTime - stack.mFullyDrawnStartTime) : thisTime;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07001823 if (SHOW_ACTIVITY_START_TIME) {
Ruben Brunkf53497c2017-03-27 20:26:17 -07001824 Trace.asyncTraceEnd(TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
1825 EventLog.writeEvent(AM_ACTIVITY_FULLY_DRAWN_TIME,
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001826 userId, System.identityHashCode(this), shortComponentName,
1827 thisTime, totalTime);
1828 StringBuilder sb = service.mStringBuilder;
1829 sb.setLength(0);
1830 sb.append("Fully drawn ");
1831 sb.append(shortComponentName);
1832 sb.append(": ");
1833 TimeUtils.formatDuration(thisTime, sb);
1834 if (thisTime != totalTime) {
1835 sb.append(" (total ");
1836 TimeUtils.formatDuration(totalTime, sb);
1837 sb.append(")");
1838 }
Wale Ogunwalee23149f2015-03-06 15:39:44 -08001839 Log.i(TAG, sb.toString());
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001840 }
1841 if (totalTime > 0) {
Adam Lesinski0debc9a2014-07-16 19:09:13 -07001842 //service.mUsageStatsService.noteFullyDrawnTime(realActivity, (int) totalTime);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001843 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001844 stack.mFullyDrawnStartTime = 0;
1845 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07001846 fullyDrawnStartTime = 0;
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001847 }
1848
1849 private void reportLaunchTimeLocked(final long curTime) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07001850 final ActivityStack stack = getStack();
Wale Ogunwale7d701172015-03-11 15:36:30 -07001851 if (stack == null) {
1852 return;
1853 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001854 final long thisTime = curTime - displayStartTime;
1855 final long totalTime = stack.mLaunchStartTime != 0
1856 ? (curTime - stack.mLaunchStartTime) : thisTime;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07001857 if (SHOW_ACTIVITY_START_TIME) {
Ruben Brunkf53497c2017-03-27 20:26:17 -07001858 Trace.asyncTraceEnd(TRACE_TAG_ACTIVITY_MANAGER, "launching: " + packageName, 0);
1859 EventLog.writeEvent(AM_ACTIVITY_LAUNCH_TIME,
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001860 userId, System.identityHashCode(this), shortComponentName,
1861 thisTime, totalTime);
1862 StringBuilder sb = service.mStringBuilder;
1863 sb.setLength(0);
1864 sb.append("Displayed ");
1865 sb.append(shortComponentName);
1866 sb.append(": ");
1867 TimeUtils.formatDuration(thisTime, sb);
1868 if (thisTime != totalTime) {
1869 sb.append(" (total ");
1870 TimeUtils.formatDuration(totalTime, sb);
1871 sb.append(")");
1872 }
Wale Ogunwalee23149f2015-03-06 15:39:44 -08001873 Log.i(TAG, sb.toString());
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001874 }
1875 mStackSupervisor.reportActivityLaunchedLocked(false, this, thisTime, totalTime);
1876 if (totalTime > 0) {
Adam Lesinski0debc9a2014-07-16 19:09:13 -07001877 //service.mUsageStatsService.noteLaunchTime(realActivity, (int)totalTime);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001878 }
1879 displayStartTime = 0;
1880 stack.mLaunchStartTime = 0;
1881 }
1882
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001883 @Override
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001884 public void onStartingWindowDrawn() {
1885 synchronized (service) {
1886 mStackSupervisor.mActivityMetricsLogger.notifyStartingWindowDrawn(getStackId());
1887 }
1888 }
1889
1890 @Override
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001891 public void onWindowsDrawn() {
1892 synchronized (service) {
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001893 mStackSupervisor.mActivityMetricsLogger.notifyWindowsDrawn(getStackId());
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001894 if (displayStartTime != 0) {
1895 reportLaunchTimeLocked(SystemClock.uptimeMillis());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001896 }
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001897 mStackSupervisor.sendWaitingVisibleReportLocked(this);
1898 startTime = 0;
1899 finishLaunchTickingLocked();
1900 if (task != null) {
1901 task.hasBeenVisible = true;
1902 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001903 }
1904 }
1905
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001906 @Override
1907 public void onWindowsVisible() {
1908 synchronized (service) {
1909 mStackSupervisor.reportActivityVisibleLocked(this);
1910 if (DEBUG_SWITCH) Log.v(TAG_SWITCH, "windowsVisibleLocked(): " + this);
1911 if (!nowVisible) {
1912 nowVisible = true;
1913 lastVisibleTime = SystemClock.uptimeMillis();
1914 if (!idle) {
1915 // Instead of doing the full stop routine here, let's just hide any activities
1916 // we now can, and let them stop when the normal idle happens.
Winson Chung4dabf232017-01-25 13:25:22 -08001917 mStackSupervisor.processStoppingActivitiesLocked(null /* idleActivity */,
1918 false /* remove */, true /* processPausingActivities */);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001919 } else {
1920 // If this activity was already idle, then we now need to make sure we perform
1921 // the full stop of any activities that are waiting to do so. This is because
1922 // we won't do that while they are still waiting for this one to become visible.
Bryce Lee4a194382017-04-04 14:32:48 -07001923 final int size = mStackSupervisor.mActivitiesWaitingForVisibleActivity.size();
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001924 if (size > 0) {
1925 for (int i = 0; i < size; i++) {
Bryce Lee4a194382017-04-04 14:32:48 -07001926 final ActivityRecord r =
1927 mStackSupervisor.mActivitiesWaitingForVisibleActivity.get(i);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001928 if (DEBUG_SWITCH) Log.v(TAG_SWITCH, "Was waiting for visible: " + r);
1929 }
Bryce Lee4a194382017-04-04 14:32:48 -07001930 mStackSupervisor.mActivitiesWaitingForVisibleActivity.clear();
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001931 mStackSupervisor.scheduleIdleLocked();
1932 }
1933 }
1934 service.scheduleAppGcsLocked();
1935 }
1936 }
1937 }
1938
1939 @Override
1940 public void onWindowsGone() {
1941 synchronized (service) {
1942 if (DEBUG_SWITCH) Log.v(TAG_SWITCH, "windowsGone(): " + this);
1943 nowVisible = false;
1944 }
1945 }
1946
1947 @Override
Wale Ogunwale7402ddf2017-03-29 12:58:24 -07001948 public boolean keyDispatchingTimedOut(String reason, int windowPid) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001949 ActivityRecord anrActivity;
1950 ProcessRecord anrApp;
Wale Ogunwale7402ddf2017-03-29 12:58:24 -07001951 boolean windowFromSameProcessAsActivity;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001952 synchronized (service) {
1953 anrActivity = getWaitingHistoryRecordLocked();
1954 anrApp = app;
Brian Carlstrom7b0f2e82017-03-31 00:24:18 -07001955 windowFromSameProcessAsActivity =
1956 app == null || app.pid == windowPid || windowPid == -1;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001957 }
Wale Ogunwale7402ddf2017-03-29 12:58:24 -07001958 if (windowFromSameProcessAsActivity) {
1959 return service.inputDispatchingTimedOut(anrApp, anrActivity, this, false, reason);
1960 } else {
1961 // In this case another process added windows using this activity token. So, we call the
1962 // generic service input dispatch timed out method so that the right process is blamed.
1963 return service.inputDispatchingTimedOut(windowPid, false /* aboveSystem */, reason) < 0;
1964 }
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001965 }
1966
1967 private ActivityRecord getWaitingHistoryRecordLocked() {
riddle_hsudb46d6b2015-04-01 18:58:07 +08001968 // First find the real culprit... if this activity is waiting for
1969 // another activity to start or has stopped, then the key dispatching
1970 // timeout should not be caused by this.
Bryce Lee4a194382017-04-04 14:32:48 -07001971 if (mStackSupervisor.mActivitiesWaitingForVisibleActivity.contains(this) || stopped) {
Craig Mautner8f2adcb2014-04-07 22:21:33 +00001972 final ActivityStack stack = mStackSupervisor.getFocusedStack();
riddle_hsudb46d6b2015-04-01 18:58:07 +08001973 // Try to use the one which is closest to top.
1974 ActivityRecord r = stack.mResumedActivity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001975 if (r == null) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001976 r = stack.mPausingActivity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001977 }
riddle_hsudb46d6b2015-04-01 18:58:07 +08001978 if (r != null) {
1979 return r;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001980 }
1981 }
riddle_hsudb46d6b2015-04-01 18:58:07 +08001982 return this;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001983 }
1984
Chong Zhang87761972016-08-22 13:53:24 -07001985 /** Checks whether the activity should be shown for current user. */
1986 public boolean okToShowLocked() {
1987 return (info.flags & FLAG_SHOW_FOR_ALL_USERS) != 0
1988 || (mStackSupervisor.isCurrentProfileLocked(userId)
1989 && !service.mUserController.isUserStoppingOrShuttingDownLocked(userId));
1990 }
1991
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001992 /**
1993 * This method will return true if the activity is either visible, is becoming visible, is
1994 * currently pausing, or is resumed.
1995 */
1996 public boolean isInterestingToUserLocked() {
Ruben Brunkf53497c2017-03-27 20:26:17 -07001997 return visible || nowVisible || state == PAUSING ||
1998 state == RESUMED;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001999 }
2000
Wale Ogunwale3e997362016-09-06 10:37:56 -07002001 void setSleeping(boolean _sleeping) {
2002 setSleeping(_sleeping, false);
2003 }
2004
2005 void setSleeping(boolean _sleeping, boolean force) {
2006 if (!force && sleeping == _sleeping) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002007 return;
2008 }
2009 if (app != null && app.thread != null) {
2010 try {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002011 app.thread.scheduleSleeping(appToken, _sleeping);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002012 if (_sleeping && !mStackSupervisor.mGoingToSleepActivities.contains(this)) {
2013 mStackSupervisor.mGoingToSleepActivities.add(this);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002014 }
2015 sleeping = _sleeping;
2016 } catch (RemoteException e) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002017 Slog.w(TAG, "Exception thrown when sleeping: " + intent.getComponent(), e);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002018 }
2019 }
2020 }
Craig Mautnerf81b90872013-02-26 13:02:43 -08002021
Craig Mautnerd2328952013-03-05 12:46:26 -08002022 static int getTaskForActivityLocked(IBinder token, boolean onlyRoot) {
Wale Ogunwale7d701172015-03-11 15:36:30 -07002023 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautnerd2328952013-03-05 12:46:26 -08002024 if (r == null) {
Wale Ogunwale18795a22014-12-03 11:38:33 -08002025 return INVALID_TASK_ID;
Craig Mautnerd2328952013-03-05 12:46:26 -08002026 }
2027 final TaskRecord task = r.task;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002028 final int activityNdx = task.mActivities.indexOf(r);
2029 if (activityNdx < 0 || (onlyRoot && activityNdx > task.findEffectiveRootIndex())) {
Wale Ogunwale18795a22014-12-03 11:38:33 -08002030 return INVALID_TASK_ID;
Craig Mautnerd2328952013-03-05 12:46:26 -08002031 }
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002032 return task.taskId;
Craig Mautnerd2328952013-03-05 12:46:26 -08002033 }
2034
2035 static ActivityRecord isInStackLocked(IBinder token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -07002036 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Andrii Kulian02b7a832016-10-06 23:11:56 -07002037 return (r != null) ? r.getStack().isInStackLocked(r) : null;
Craig Mautnerd2328952013-03-05 12:46:26 -08002038 }
2039
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07002040 static ActivityStack getStackLocked(IBinder token) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002041 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
2042 if (r != null) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07002043 return r.getStack();
Craig Mautnerd2328952013-03-05 12:46:26 -08002044 }
2045 return null;
2046 }
2047
Andrii Kulian5406e7a2016-10-21 11:55:23 -07002048 /**
2049 * @return display id to which this record is attached, -1 if not attached.
2050 */
2051 int getDisplayId() {
2052 final ActivityStack stack = getStack();
2053 if (stack == null) {
2054 return -1;
2055 }
2056 return stack.mDisplayId;
2057 }
2058
Dianne Hackborn89ad4562014-08-24 16:45:38 -07002059 final boolean isDestroyable() {
Ruben Brunkf53497c2017-03-27 20:26:17 -07002060 if (finishing || app == null || state == DESTROYING
2061 || state == DESTROYED) {
Dianne Hackborn89ad4562014-08-24 16:45:38 -07002062 // This would be redundant.
2063 return false;
2064 }
Andrii Kulian02b7a832016-10-06 23:11:56 -07002065 final ActivityStack stack = getStack();
2066 if (stack == null || this == stack.mResumedActivity || this == stack.mPausingActivity
2067 || !haveState || !stopped) {
Dianne Hackborn89ad4562014-08-24 16:45:38 -07002068 // We're not ready for this kind of thing.
2069 return false;
2070 }
2071 if (visible) {
2072 // The user would notice this!
2073 return false;
2074 }
2075 return true;
2076 }
2077
Winson Chung3bad5cc02014-08-19 17:44:32 -07002078 private static String createImageFilename(long createTime, int taskId) {
2079 return String.valueOf(taskId) + ACTIVITY_ICON_SUFFIX + createTime +
Ruben Brunkf53497c2017-03-27 20:26:17 -07002080 IMAGE_EXTENSION;
Craig Mautnerc0ffce52014-07-01 12:38:52 -07002081 }
2082
Craig Mautner648f69b2014-09-18 14:16:26 -07002083 void setTaskDescription(TaskDescription _taskDescription) {
2084 Bitmap icon;
2085 if (_taskDescription.getIconFilename() == null &&
2086 (icon = _taskDescription.getIcon()) != null) {
2087 final String iconFilename = createImageFilename(createTime, task.taskId);
Winson Chungc8408b82017-01-25 17:58:56 -08002088 final File iconFile = new File(TaskPersister.getUserImagesDir(task.userId),
2089 iconFilename);
Suprabh Shukla23593142015-11-03 17:31:15 -08002090 final String iconFilePath = iconFile.getAbsolutePath();
Suprabh Shukla09a88f52015-12-02 14:36:31 -08002091 service.mRecentTasks.saveImage(icon, iconFilePath);
Suprabh Shukla23593142015-11-03 17:31:15 -08002092 _taskDescription.setIconFilename(iconFilePath);
Craig Mautner648f69b2014-09-18 14:16:26 -07002093 }
2094 taskDescription = _taskDescription;
2095 }
2096
Amith Yamasani0af6fa72016-01-17 15:36:19 -08002097 void setVoiceSessionLocked(IVoiceInteractionSession session) {
2098 voiceSession = session;
2099 pendingVoiceInteractionStart = false;
2100 }
2101
2102 void clearVoiceSessionLocked() {
2103 voiceSession = null;
2104 pendingVoiceInteractionStart = false;
2105 }
2106
Jorim Jaggi02886a82016-12-06 09:10:06 -08002107 void showStartingWindow(ActivityRecord prev, boolean newTask, boolean taskSwitch) {
Jorim Jaggi70176432017-01-18 12:52:13 +01002108 if (mWindowContainerController == null) {
2109 return;
2110 }
Wale Ogunwale3b232392016-05-13 15:37:13 -07002111 final CompatibilityInfo compatInfo =
2112 service.compatibilityInfoForPackageLocked(info.applicationInfo);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002113 final boolean shown = mWindowContainerController.addStartingWindow(packageName, theme,
2114 compatInfo, nonLocalizedLabel, labelRes, icon, logo, windowFlags,
Jorim Jaggi02886a82016-12-06 09:10:06 -08002115 prev != null ? prev.appToken : null, newTask, taskSwitch, isProcessRunning());
Wale Ogunwale3b232392016-05-13 15:37:13 -07002116 if (shown) {
2117 mStartingWindowState = STARTING_WINDOW_SHOWN;
2118 }
2119 }
2120
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002121 void removeOrphanedStartingWindow(boolean behindFullscreenActivity) {
Ruben Brunkf53497c2017-03-27 20:26:17 -07002122 if (state == INITIALIZING
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002123 && mStartingWindowState == STARTING_WINDOW_SHOWN
2124 && behindFullscreenActivity) {
2125 if (DEBUG_VISIBILITY) Slog.w(TAG_VISIBILITY, "Found orphaned starting window " + this);
2126 mStartingWindowState = STARTING_WINDOW_REMOVED;
2127 mWindowContainerController.removeStartingWindow();
2128 }
2129 }
2130
2131 int getRequestedOrientation() {
2132 return mWindowContainerController.getOrientation();
2133 }
2134
Andrii Kulian5406e7a2016-10-21 11:55:23 -07002135 void setRequestedOrientation(int requestedOrientation) {
Andrii Kulian5406e7a2016-10-21 11:55:23 -07002136 final int displayId = getDisplayId();
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002137 final Configuration displayConfig =
2138 mStackSupervisor.getDisplayOverrideConfiguration(displayId);
2139
2140 final Configuration config = mWindowContainerController.setOrientation(requestedOrientation,
2141 displayId, displayConfig, mayFreezeScreenLocked(app));
Andrii Kulian5406e7a2016-10-21 11:55:23 -07002142 if (config != null) {
2143 frozenBeforeDestroy = true;
2144 if (!service.updateDisplayOverrideConfigurationLocked(config, this,
2145 false /* deferResume */, displayId)) {
2146 mStackSupervisor.resumeFocusedStackTopActivityLocked();
2147 }
2148 }
Yorke Leebd54c2a2016-10-25 13:49:23 -07002149 service.mTaskChangeNotificationController.notifyActivityRequestedOrientationChanged(
2150 task.taskId, requestedOrientation);
Andrii Kulian5406e7a2016-10-21 11:55:23 -07002151 }
2152
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01002153 void setDisablePreviewScreenshots(boolean disable) {
2154 mWindowContainerController.setDisablePreviewScreenshots(disable);
2155 }
2156
Bryce Leea163b762017-01-24 11:05:01 -08002157 /**
2158 * Set the last reported global configuration to the client. Should be called whenever a new
2159 * global configuration is sent to the client for this activity.
2160 */
2161 void setLastReportedGlobalConfiguration(@NonNull Configuration config) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07002162 mLastReportedConfiguration.setTo(config);
2163 }
2164
Bryce Leea163b762017-01-24 11:05:01 -08002165 /**
2166 * Set the last reported merged override configuration to the client. Should be called whenever
2167 * a new merged configuration is sent to the client for this activity.
2168 */
2169 void setLastReportedMergedOverrideConfiguration(@NonNull Configuration config) {
2170 mLastReportedOverrideConfiguration.setTo(config);
2171 }
2172
Andrii Kulian21713ac2016-10-12 22:05:05 -07002173 /** Call when override config was sent to the Window Manager to update internal records. */
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002174 // TODO(b/36505427): Why do we set last reported based on sending the config to WM? Seems like
2175 // we should only set this when we actually report to the activity which is what the method
2176 // setLastReportedMergedOverrideConfiguration() does. Investigate if this is really needed.
Andrii Kulian21713ac2016-10-12 22:05:05 -07002177 void onOverrideConfigurationSent() {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002178 mLastReportedOverrideConfiguration.setTo(getMergedOverrideConfiguration());
2179 }
2180
2181 @Override
2182 void onOverrideConfigurationChanged(Configuration overrideConfiguration) {
2183 super.onOverrideConfigurationChanged(overrideConfiguration);
2184 if (mWindowContainerController != null) {
2185 mWindowContainerController.onOverrideConfigurationChanged(
2186 overrideConfiguration, mBounds);
2187 // TODO(b/36505427): Can we consolidate the call points of onOverrideConfigurationSent()
2188 // to just use this method instead?
2189 onOverrideConfigurationSent();
2190 }
2191 }
2192
2193 // TODO(b/36505427): Consider moving this method and similar ones to ConfigurationContainer.
2194 private boolean updateOverrideConfiguration() {
2195 computeBounds(mTmpBounds);
2196 if (mTmpBounds.equals(mBounds)) {
2197 return false;
2198 }
2199 mBounds.set(mTmpBounds);
2200 // Bounds changed...update configuration to match.
2201 mTmpConfig1.unset();
2202 task.computeOverrideConfiguration(mTmpConfig1, mBounds, null /* insetBounds */,
2203 false /* overrideWidth */, false /* overrideHeight */);
2204 onOverrideConfigurationChanged(mTmpConfig1);
2205 return true;
2206 }
2207
Bryce Lee7566d762017-03-30 09:34:15 -07002208 /**
2209 * Computes the bounds to fit the Activity within the bounds of the {@link Configuration}.
2210 */
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002211 // TODO(b/36505427): Consider moving this method and similar ones to ConfigurationContainer.
2212 private void computeBounds(Rect outBounds) {
2213 outBounds.setEmpty();
2214 final float maxAspectRatio = info.maxAspectRatio;
2215 final ActivityStack stack = getStack();
Bryce Lee7566d762017-03-30 09:34:15 -07002216 if (task == null || stack == null || !task.mFullscreen || maxAspectRatio == 0) {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002217 // We don't set override configuration if that activity task isn't fullscreen. I.e. the
2218 // activity is in multi-window mode. Or, there isn't a max aspect ratio specified for
Bryce Lee7566d762017-03-30 09:34:15 -07002219 // the activity. This is indicated by an empty {@link outBounds}.
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002220 return;
2221 }
2222
Bryce Lee7566d762017-03-30 09:34:15 -07002223 // We must base this on the parent configuration, because we set our override
2224 // configuration's appBounds based on the result of this method. If we used our own
2225 // configuration, it would be influenced by past invocations.
2226 final Configuration configuration = getParent().getConfiguration();
2227 final int containingAppWidth = configuration.appBounds.width();
2228 final int containingAppHeight = configuration.appBounds.height();
2229 int maxActivityWidth = containingAppWidth;
2230 int maxActivityHeight = containingAppHeight;
2231
2232 if (containingAppWidth < containingAppHeight) {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002233 // Width is the shorter side, so we use that to figure-out what the max. height should
2234 // be given the aspect ratio.
2235 maxActivityHeight = (int) ((maxActivityWidth * maxAspectRatio) + 0.5f);
2236 } else {
2237 // Height is the shorter side, so we use that to figure-out what the max. width should
2238 // be given the aspect ratio.
2239 maxActivityWidth = (int) ((maxActivityHeight * maxAspectRatio) + 0.5f);
2240 }
2241
Bryce Lee7566d762017-03-30 09:34:15 -07002242 if (containingAppWidth <= maxActivityWidth && containingAppHeight <= maxActivityHeight) {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002243 // The display matches or is less than the activity aspect ratio, so nothing else to do.
Bryce Lee7566d762017-03-30 09:34:15 -07002244 // Return the existing bounds. If this method is running for the first time,
2245 // {@link mBounds} will be empty (representing no override). If the method has run
2246 // before, then effect of {@link mBounds} will already have been applied to the
2247 // value returned from {@link getConfiguration}. Refer to
2248 // {@link TaskRecord#computeOverrideConfiguration}.
2249 outBounds.set(mBounds);
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002250 return;
2251 }
2252
2253 // Compute configuration based on max supported width and height.
2254 outBounds.set(0, 0, maxActivityWidth, maxActivityHeight);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002255 }
2256
2257 /**
2258 * Make sure the given activity matches the current configuration. Returns false if the activity
2259 * had to be destroyed. Returns true if the configuration is the same, or the activity will
2260 * remain running as-is for whatever reason. Ensures the HistoryRecord is updated with the
2261 * correct configuration and all other bookkeeping is handled.
2262 */
2263 boolean ensureActivityConfigurationLocked(int globalChanges, boolean preserveWindow) {
2264 final ActivityStack stack = getStack();
2265 if (stack.mConfigWillChange) {
2266 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2267 "Skipping config check (will change): " + this);
2268 return true;
2269 }
2270
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002271 // We don't worry about activities that are finishing.
2272 if (finishing) {
2273 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2274 "Configuration doesn't matter in finishing " + this);
2275 stopFreezingScreenLocked(false);
2276 return true;
2277 }
2278
Wale Ogunwale9b7a8272017-04-10 08:05:41 -07002279 // Skip updating configuration for activity that are stopping or stopped.
2280 if (state == STOPPING || state == STOPPED) {
2281 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2282 "Skipping config check stopped or stopping: " + this);
2283 return true;
2284 }
2285
2286 // Skip updating configuration for activity is a stack that shouldn't be visible.
2287 if (stack.shouldBeVisible(null /* starting */) == STACK_INVISIBLE) {
2288 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2289 "Skipping config check invisible stack: " + this);
2290 return true;
2291 }
2292
Andrii Kulian21713ac2016-10-12 22:05:05 -07002293 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2294 "Ensuring correct configuration: " + this);
2295
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002296 final int newDisplayId = getDisplayId();
2297 final boolean displayChanged = mLastReportedDisplayId != newDisplayId;
2298 if (displayChanged) {
2299 mLastReportedDisplayId = newDisplayId;
2300 }
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002301 // TODO(b/36505427): Is there a better place to do this?
2302 updateOverrideConfiguration();
2303
Winson Chungbdc646f2017-02-13 12:12:22 -08002304 // Short circuit: if the two full configurations are equal (the common case), then there is
2305 // nothing to do. We test the full configuration instead of the global and merged override
2306 // configurations because there are cases (like moving a task to the pinned stack) where
2307 // the combine configurations are equal, but would otherwise differ in the override config
2308 mTmpConfig1.setTo(mLastReportedConfiguration);
2309 mTmpConfig1.updateFrom(mLastReportedOverrideConfiguration);
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002310 if (getConfiguration().equals(mTmpConfig1) && !forceNewConfig && !displayChanged) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07002311 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002312 "Configuration & display unchanged in " + this);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002313 return true;
2314 }
2315
2316 // Okay we now are going to make this activity have the new config.
2317 // But then we need to figure out how it needs to deal with that.
Andrii Kulianb43be0a2017-03-02 17:29:40 -08002318
2319 // Find changes between last reported merged configuration and the current one. This is used
2320 // to decide whether to relaunch an activity or just report a configuration change.
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002321 final int changes = getConfigurationChanges(mTmpConfig1);
Andrii Kulianb43be0a2017-03-02 17:29:40 -08002322
Ruben Brunkf64af332017-03-22 22:03:25 -07002323 // Preserve configuration used to generate this set of configuration changes.
2324 mTmpConfig3.setTo(mTmpConfig1);
2325
Andrii Kulianb43be0a2017-03-02 17:29:40 -08002326 // Update last reported values.
Winson Chungbdc646f2017-02-13 12:12:22 -08002327 final Configuration newGlobalConfig = service.getGlobalConfiguration();
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002328 final Configuration newMergedOverrideConfig = getMergedOverrideConfiguration();
Winson Chungbdc646f2017-02-13 12:12:22 -08002329 mTmpConfig1.setTo(mLastReportedConfiguration);
2330 mTmpConfig2.setTo(mLastReportedOverrideConfiguration);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002331 mLastReportedConfiguration.setTo(newGlobalConfig);
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002332 mLastReportedOverrideConfiguration.setTo(newMergedOverrideConfig);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002333
Andrii Kulian21713ac2016-10-12 22:05:05 -07002334 if (changes == 0 && !forceNewConfig) {
2335 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2336 "Configuration no differences in " + this);
2337 // There are no significant differences, so we won't relaunch but should still deliver
2338 // the new configuration to the client process.
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002339 if (displayChanged) {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002340 scheduleActivityMovedToDisplay(newDisplayId, newMergedOverrideConfig);
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002341 } else {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002342 scheduleConfigurationChanged(newMergedOverrideConfig);
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002343 }
Andrii Kulian21713ac2016-10-12 22:05:05 -07002344 return true;
2345 }
2346
2347 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Andrii Kulianb43be0a2017-03-02 17:29:40 -08002348 "Configuration changes for " + this + ", allChanges="
Andrii Kulian21713ac2016-10-12 22:05:05 -07002349 + Configuration.configurationDiffToString(changes));
2350
2351 // If the activity isn't currently running, just leave the new configuration and it will
2352 // pick that up next time it starts.
2353 if (app == null || app.thread == null) {
2354 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2355 "Configuration doesn't matter not running " + this);
2356 stopFreezingScreenLocked(false);
2357 forceNewConfig = false;
2358 return true;
2359 }
2360
2361 // Figure out how to handle the changes between the configurations.
2362 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2363 "Checking to restart " + info.name + ": changed=0x"
2364 + Integer.toHexString(changes) + ", handles=0x"
2365 + Integer.toHexString(info.getRealConfigChanged())
2366 + ", newGlobalConfig=" + newGlobalConfig
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002367 + ", newMergedOverrideConfig=" + newMergedOverrideConfig);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002368
Ruben Brunkf64af332017-03-22 22:03:25 -07002369 if (shouldRelaunchLocked(changes, mTmpConfig3) || forceNewConfig) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07002370 // Aha, the activity isn't handling the change, so DIE DIE DIE.
2371 configChangeFlags |= changes;
2372 startFreezingScreenLocked(app, globalChanges);
2373 forceNewConfig = false;
2374 preserveWindow &= isResizeOnlyChange(changes);
2375 if (app == null || app.thread == null) {
2376 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2377 "Config is destroying non-running " + this);
2378 stack.destroyActivityLocked(this, true, "config");
Ruben Brunkf53497c2017-03-27 20:26:17 -07002379 } else if (state == PAUSING) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07002380 // A little annoying: we are waiting for this activity to finish pausing. Let's not
2381 // do anything now, but just flag that it needs to be restarted when done pausing.
2382 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2383 "Config is skipping already pausing " + this);
2384 deferRelaunchUntilPaused = true;
2385 preserveWindowOnDeferredRelaunch = preserveWindow;
2386 return true;
Ruben Brunkf53497c2017-03-27 20:26:17 -07002387 } else if (state == RESUMED) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07002388 // Try to optimize this case: the configuration is changing and we need to restart
2389 // the top, resumed activity. Instead of doing the normal handshaking, just say
2390 // "restart!".
2391 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2392 "Config is relaunching resumed " + this);
2393
2394 if (DEBUG_STATES && !visible) {
2395 Slog.v(TAG_STATES, "Config is relaunching resumed invisible activity " + this
2396 + " called by " + Debug.getCallers(4));
2397 }
2398
2399 relaunchActivityLocked(true /* andResume */, preserveWindow);
2400 } else {
2401 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2402 "Config is relaunching non-resumed " + this);
2403 relaunchActivityLocked(false /* andResume */, preserveWindow);
2404 }
2405
2406 // All done... tell the caller we weren't able to keep this activity around.
2407 return false;
2408 }
2409
2410 // Default case: the activity can handle this new configuration, so hand it over.
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002411 // NOTE: We only forward the override configuration as the system level configuration
Andrii Kulian21713ac2016-10-12 22:05:05 -07002412 // changes is always sent to all processes when they happen so it can just use whatever
2413 // system level configuration it last got.
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002414 if (displayChanged) {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002415 scheduleActivityMovedToDisplay(newDisplayId, newMergedOverrideConfig);
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002416 } else {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002417 scheduleConfigurationChanged(newMergedOverrideConfig);
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002418 }
Andrii Kulian21713ac2016-10-12 22:05:05 -07002419 stopFreezingScreenLocked(false);
2420
2421 return true;
2422 }
2423
Zak Cohen90e7116742017-01-29 12:59:23 -08002424 /**
2425 * When assessing a configuration change, decide if the changes flags and the new configurations
2426 * should cause the Activity to relaunch.
Ruben Brunkf64af332017-03-22 22:03:25 -07002427 *
2428 * @param changes the changes due to the given configuration.
2429 * @param changesConfig the configuration that was used to calculate the given changes via a
2430 * call to getConfigurationChanges.
Zak Cohen90e7116742017-01-29 12:59:23 -08002431 */
Ruben Brunkf64af332017-03-22 22:03:25 -07002432 private boolean shouldRelaunchLocked(int changes, Configuration changesConfig) {
Zak Cohen90e7116742017-01-29 12:59:23 -08002433 int configChanged = info.getRealConfigChanged();
Ruben Brunkf64af332017-03-22 22:03:25 -07002434 boolean onlyVrUiModeChanged = onlyVrUiModeChanged(changes, changesConfig);
Zak Cohen90e7116742017-01-29 12:59:23 -08002435
2436 // Override for apps targeting pre-O sdks
2437 // If a device is in VR mode, and we're transitioning into VR ui mode, add ignore ui mode
2438 // to the config change.
2439 // For O and later, apps will be required to add configChanges="uimode" to their manifest.
2440 if (appInfo.targetSdkVersion < O
2441 && requestedVrComponent != null
Ruben Brunkf64af332017-03-22 22:03:25 -07002442 && onlyVrUiModeChanged) {
Zak Cohen90e7116742017-01-29 12:59:23 -08002443 configChanged |= CONFIG_UI_MODE;
2444 }
2445
2446 return (changes&(~configChanged)) != 0;
2447 }
2448
Ruben Brunkf64af332017-03-22 22:03:25 -07002449 /**
2450 * Returns true if the configuration change is solely due to the UI mode switching into or out
2451 * of UI_MODE_TYPE_VR_HEADSET.
2452 */
2453 private boolean onlyVrUiModeChanged(int changes, Configuration lastReportedConfig) {
2454 final Configuration currentConfig = getConfiguration();
Ruben Brunkf53497c2017-03-27 20:26:17 -07002455 return changes == CONFIG_UI_MODE && (isInVrUiMode(currentConfig)
Ruben Brunkf64af332017-03-22 22:03:25 -07002456 != isInVrUiMode(lastReportedConfig));
2457 }
2458
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002459 private int getConfigurationChanges(Configuration lastReportedConfig) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07002460 // Determine what has changed. May be nothing, if this is a config that has come back from
2461 // the app after going idle. In that case we just want to leave the official config object
2462 // now in the activity and do nothing else.
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002463 final Configuration currentConfig = getConfiguration();
2464 int changes = lastReportedConfig.diff(currentConfig);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002465 // We don't want to use size changes if they don't cross boundaries that are important to
2466 // the app.
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002467 if ((changes & CONFIG_SCREEN_SIZE) != 0) {
Andrii Kulianb43be0a2017-03-02 17:29:40 -08002468 final boolean crosses = crossesHorizontalSizeThreshold(lastReportedConfig.screenWidthDp,
2469 currentConfig.screenWidthDp)
2470 || crossesVerticalSizeThreshold(lastReportedConfig.screenHeightDp,
2471 currentConfig.screenHeightDp);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002472 if (!crosses) {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002473 changes &= ~CONFIG_SCREEN_SIZE;
Andrii Kulian21713ac2016-10-12 22:05:05 -07002474 }
2475 }
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002476 if ((changes & CONFIG_SMALLEST_SCREEN_SIZE) != 0) {
Andrii Kulianb43be0a2017-03-02 17:29:40 -08002477 final int oldSmallest = lastReportedConfig.smallestScreenWidthDp;
2478 final int newSmallest = currentConfig.smallestScreenWidthDp;
2479 if (!crossesSmallestSizeThreshold(oldSmallest, newSmallest)) {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002480 changes &= ~CONFIG_SMALLEST_SCREEN_SIZE;
Andrii Kulian21713ac2016-10-12 22:05:05 -07002481 }
2482 }
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002483 return changes;
Andrii Kulian21713ac2016-10-12 22:05:05 -07002484 }
2485
2486 private static boolean isResizeOnlyChange(int change) {
2487 return (change & ~(CONFIG_SCREEN_SIZE | CONFIG_SMALLEST_SCREEN_SIZE | CONFIG_ORIENTATION
2488 | CONFIG_SCREEN_LAYOUT)) == 0;
2489 }
2490
2491 void relaunchActivityLocked(boolean andResume, boolean preserveWindow) {
2492 if (service.mSuppressResizeConfigChanges && preserveWindow) {
2493 configChangeFlags = 0;
2494 return;
2495 }
2496
2497 List<ResultInfo> pendingResults = null;
2498 List<ReferrerIntent> pendingNewIntents = null;
2499 if (andResume) {
2500 pendingResults = results;
2501 pendingNewIntents = newIntents;
2502 }
2503 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2504 "Relaunching: " + this + " with results=" + pendingResults
2505 + " newIntents=" + pendingNewIntents + " andResume=" + andResume
2506 + " preserveWindow=" + preserveWindow);
Ruben Brunkf53497c2017-03-27 20:26:17 -07002507 EventLog.writeEvent(andResume ? AM_RELAUNCH_RESUME_ACTIVITY
2508 : AM_RELAUNCH_ACTIVITY, userId, System.identityHashCode(this),
Andrii Kulian21713ac2016-10-12 22:05:05 -07002509 task.taskId, shortComponentName);
2510
2511 startFreezingScreenLocked(app, 0);
2512
2513 mStackSupervisor.removeChildActivityContainers(this);
2514
2515 try {
2516 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH,
2517 "Moving to " + (andResume ? "RESUMED" : "PAUSED") + " Relaunching " + this
2518 + " callers=" + Debug.getCallers(6));
2519 forceNewConfig = false;
2520 mStackSupervisor.activityRelaunchingLocked(this);
2521 app.thread.scheduleRelaunchActivity(appToken, pendingResults, pendingNewIntents,
2522 configChangeFlags, !andResume,
2523 new Configuration(service.getGlobalConfiguration()),
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002524 new Configuration(getMergedOverrideConfiguration()), preserveWindow);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002525 // Note: don't need to call pauseIfSleepingLocked() here, because the caller will only
2526 // pass in 'andResume' if this activity is currently resumed, which implies we aren't
2527 // sleeping.
2528 } catch (RemoteException e) {
2529 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH, "Relaunch failed", e);
2530 }
2531
2532 if (andResume) {
2533 if (DEBUG_STATES) {
2534 Slog.d(TAG_STATES, "Resumed after relaunch " + this);
2535 }
2536 results = null;
2537 newIntents = null;
2538 service.showUnsupportedZoomDialogIfNeededLocked(this);
2539 service.showAskCompatModeDialogLocked(this);
2540 } else {
Ruben Brunkf53497c2017-03-27 20:26:17 -07002541 service.mHandler.removeMessages(PAUSE_TIMEOUT_MSG, this);
2542 state = PAUSED;
Andrii Kulian21713ac2016-10-12 22:05:05 -07002543 // if the app is relaunched when it's stopped, and we're not resuming,
2544 // put it back into stopped state.
2545 if (stopped) {
Winson Chung4dabf232017-01-25 13:25:22 -08002546 getStack().addToStopping(this, true /* scheduleIdle */, false /* idleDelayed */);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002547 }
2548 }
2549
2550 configChangeFlags = 0;
2551 deferRelaunchUntilPaused = false;
2552 preserveWindowOnDeferredRelaunch = false;
2553 }
2554
Jorim Jaggi02886a82016-12-06 09:10:06 -08002555 boolean isProcessRunning() {
2556 ProcessRecord proc = app;
2557 if (proc == null) {
2558 proc = service.mProcessNames.get(processName, info.applicationInfo.uid);
2559 }
2560 return proc != null && proc.thread != null;
2561 }
2562
Craig Mautner21d24a22014-04-23 11:45:37 -07002563 void saveToXml(XmlSerializer out) throws IOException, XmlPullParserException {
2564 out.attribute(null, ATTR_ID, String.valueOf(createTime));
2565 out.attribute(null, ATTR_LAUNCHEDFROMUID, String.valueOf(launchedFromUid));
2566 if (launchedFromPackage != null) {
2567 out.attribute(null, ATTR_LAUNCHEDFROMPACKAGE, launchedFromPackage);
2568 }
2569 if (resolvedType != null) {
2570 out.attribute(null, ATTR_RESOLVEDTYPE, resolvedType);
2571 }
2572 out.attribute(null, ATTR_COMPONENTSPECIFIED, String.valueOf(componentSpecified));
2573 out.attribute(null, ATTR_USERID, String.valueOf(userId));
Winson Chung2cb86c72014-06-25 12:03:30 -07002574
Craig Mautner21d24a22014-04-23 11:45:37 -07002575 if (taskDescription != null) {
Craig Mautner648f69b2014-09-18 14:16:26 -07002576 taskDescription.saveToXml(out);
Craig Mautner21d24a22014-04-23 11:45:37 -07002577 }
2578
2579 out.startTag(null, TAG_INTENT);
2580 intent.saveToXml(out);
2581 out.endTag(null, TAG_INTENT);
2582
2583 if (isPersistable() && persistentState != null) {
2584 out.startTag(null, TAG_PERSISTABLEBUNDLE);
2585 persistentState.saveToXml(out);
2586 out.endTag(null, TAG_PERSISTABLEBUNDLE);
2587 }
2588 }
2589
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07002590 static ActivityRecord restoreFromXml(XmlPullParser in,
2591 ActivityStackSupervisor stackSupervisor) throws IOException, XmlPullParserException {
Craig Mautner21d24a22014-04-23 11:45:37 -07002592 Intent intent = null;
2593 PersistableBundle persistentState = null;
2594 int launchedFromUid = 0;
2595 String launchedFromPackage = null;
2596 String resolvedType = null;
2597 boolean componentSpecified = false;
2598 int userId = 0;
Craig Mautner21d24a22014-04-23 11:45:37 -07002599 long createTime = -1;
2600 final int outerDepth = in.getDepth();
Winson Chung2cb86c72014-06-25 12:03:30 -07002601 TaskDescription taskDescription = new TaskDescription();
Craig Mautner21d24a22014-04-23 11:45:37 -07002602
2603 for (int attrNdx = in.getAttributeCount() - 1; attrNdx >= 0; --attrNdx) {
2604 final String attrName = in.getAttributeName(attrNdx);
2605 final String attrValue = in.getAttributeValue(attrNdx);
Ruben Brunkf53497c2017-03-27 20:26:17 -07002606 if (DEBUG) Slog.d(TaskPersister.TAG,
Wale Ogunwale18795a22014-12-03 11:38:33 -08002607 "ActivityRecord: attribute name=" + attrName + " value=" + attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07002608 if (ATTR_ID.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01002609 createTime = Long.parseLong(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07002610 } else if (ATTR_LAUNCHEDFROMUID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01002611 launchedFromUid = Integer.parseInt(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07002612 } else if (ATTR_LAUNCHEDFROMPACKAGE.equals(attrName)) {
2613 launchedFromPackage = attrValue;
2614 } else if (ATTR_RESOLVEDTYPE.equals(attrName)) {
2615 resolvedType = attrValue;
2616 } else if (ATTR_COMPONENTSPECIFIED.equals(attrName)) {
Tobias Thiererb0800dc2016-04-21 17:51:41 +01002617 componentSpecified = Boolean.parseBoolean(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07002618 } else if (ATTR_USERID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01002619 userId = Integer.parseInt(attrValue);
Ruben Brunkf53497c2017-03-27 20:26:17 -07002620 } else if (attrName.startsWith(ATTR_TASKDESCRIPTION_PREFIX)) {
Craig Mautner648f69b2014-09-18 14:16:26 -07002621 taskDescription.restoreFromXml(attrName, attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07002622 } else {
2623 Log.d(TAG, "Unknown ActivityRecord attribute=" + attrName);
2624 }
2625 }
2626
2627 int event;
Ruben Brunkf53497c2017-03-27 20:26:17 -07002628 while (((event = in.next()) != END_DOCUMENT) &&
2629 (event != END_TAG || in.getDepth() >= outerDepth)) {
2630 if (event == START_TAG) {
Craig Mautner21d24a22014-04-23 11:45:37 -07002631 final String name = in.getName();
Ruben Brunkf53497c2017-03-27 20:26:17 -07002632 if (DEBUG)
Wale Ogunwale18795a22014-12-03 11:38:33 -08002633 Slog.d(TaskPersister.TAG, "ActivityRecord: START_TAG name=" + name);
Craig Mautner21d24a22014-04-23 11:45:37 -07002634 if (TAG_INTENT.equals(name)) {
2635 intent = Intent.restoreFromXml(in);
Ruben Brunkf53497c2017-03-27 20:26:17 -07002636 if (DEBUG)
Wale Ogunwale18795a22014-12-03 11:38:33 -08002637 Slog.d(TaskPersister.TAG, "ActivityRecord: intent=" + intent);
Craig Mautner21d24a22014-04-23 11:45:37 -07002638 } else if (TAG_PERSISTABLEBUNDLE.equals(name)) {
2639 persistentState = PersistableBundle.restoreFromXml(in);
Ruben Brunkf53497c2017-03-27 20:26:17 -07002640 if (DEBUG) Slog.d(TaskPersister.TAG,
Craig Mautner21d24a22014-04-23 11:45:37 -07002641 "ActivityRecord: persistentState=" + persistentState);
2642 } else {
2643 Slog.w(TAG, "restoreActivity: unexpected name=" + name);
2644 XmlUtils.skipCurrentTag(in);
2645 }
2646 }
2647 }
2648
2649 if (intent == null) {
Craig Mautnere0129b32014-05-25 16:41:09 -07002650 throw new XmlPullParserException("restoreActivity error intent=" + intent);
Craig Mautner21d24a22014-04-23 11:45:37 -07002651 }
2652
2653 final ActivityManagerService service = stackSupervisor.mService;
2654 final ActivityInfo aInfo = stackSupervisor.resolveActivity(intent, resolvedType, 0, null,
Jeff Hao1b012d32014-08-20 10:35:34 -07002655 userId);
Craig Mautnere0129b32014-05-25 16:41:09 -07002656 if (aInfo == null) {
Craig Mautner77b04262014-06-27 15:22:12 -07002657 throw new XmlPullParserException("restoreActivity resolver error. Intent=" + intent +
2658 " resolvedType=" + resolvedType);
Craig Mautnere0129b32014-05-25 16:41:09 -07002659 }
Andrii Kulianfb1bf692017-01-17 11:17:34 -08002660 final ActivityRecord r = new ActivityRecord(service, null /* caller */,
2661 0 /* launchedFromPid */, launchedFromUid, launchedFromPackage, intent, resolvedType,
2662 aInfo, service.getConfiguration(), null /* resultTo */, null /* resultWho */,
2663 0 /* reqCode */, componentSpecified, false /* rootVoiceInteraction */,
2664 stackSupervisor, null /* container */, null /* options */, null /* sourceRecord */);
Craig Mautner21d24a22014-04-23 11:45:37 -07002665
2666 r.persistentState = persistentState;
Winson Chung2cb86c72014-06-25 12:03:30 -07002667 r.taskDescription = taskDescription;
Craig Mautner21d24a22014-04-23 11:45:37 -07002668 r.createTime = createTime;
2669
2670 return r;
2671 }
2672
2673 private static String activityTypeToString(int type) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07002674 switch (type) {
2675 case APPLICATION_ACTIVITY_TYPE: return "APPLICATION_ACTIVITY_TYPE";
2676 case HOME_ACTIVITY_TYPE: return "HOME_ACTIVITY_TYPE";
2677 case RECENTS_ACTIVITY_TYPE: return "RECENTS_ACTIVITY_TYPE";
Winson Chung83471632016-12-13 11:02:12 -08002678 case ASSISTANT_ACTIVITY_TYPE: return "ASSISTANT_ACTIVITY_TYPE";
Craig Mautnerae7ecab2013-09-18 11:48:14 -07002679 default: return Integer.toString(type);
2680 }
2681 }
2682
Zak Cohen90e7116742017-01-29 12:59:23 -08002683 private static boolean isInVrUiMode(Configuration config) {
Ruben Brunkf53497c2017-03-27 20:26:17 -07002684 return (config.uiMode & UI_MODE_TYPE_MASK) == UI_MODE_TYPE_VR_HEADSET;
Zak Cohen90e7116742017-01-29 12:59:23 -08002685 }
2686
David Stevens82ea6cb2017-03-03 16:18:50 -08002687 int getUid() {
2688 return info.applicationInfo.uid;
2689 }
2690
Craig Mautnerf81b90872013-02-26 13:02:43 -08002691 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002692 public String toString() {
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07002693 if (stringName != null) {
Wale Ogunwale18795a22014-12-03 11:38:33 -08002694 return stringName + " t" + (task == null ? INVALID_TASK_ID : task.taskId) +
Craig Mautnerf3333272013-04-22 10:55:53 -07002695 (finishing ? " f}" : "}");
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07002696 }
2697 StringBuilder sb = new StringBuilder(128);
Dianne Hackborn30d71892010-12-11 10:37:55 -08002698 sb.append("ActivityRecord{");
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07002699 sb.append(Integer.toHexString(System.identityHashCode(this)));
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002700 sb.append(" u");
2701 sb.append(userId);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07002702 sb.append(' ');
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002703 sb.append(intent.getComponent().flattenToShortString());
Craig Mautnerf81b90872013-02-26 13:02:43 -08002704 stringName = sb.toString();
2705 return toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002706 }
2707}