blob: 8ca66455c969c323cc10a6b80afc5a0c027707e3 [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;
Bryce Leeb7c9b802017-05-02 14:20:24 -070043import static android.content.Intent.FLAG_ACTIVITY_NO_HISTORY;
Andrii Kulian21713ac2016-10-12 22:05:05 -070044import static android.content.pm.ActivityInfo.CONFIG_ORIENTATION;
45import static android.content.pm.ActivityInfo.CONFIG_SCREEN_LAYOUT;
46import static android.content.pm.ActivityInfo.CONFIG_SCREEN_SIZE;
47import static android.content.pm.ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE;
Zak Cohen90e7116742017-01-29 12:59:23 -080048import static android.content.pm.ActivityInfo.CONFIG_UI_MODE;
Wale Ogunwale822e5122017-07-26 06:02:24 -070049import static android.content.pm.ActivityInfo.CONFIG_WINDOW_CONFIGURATION;
Jorim Jaggi02886a82016-12-06 09:10:06 -080050import static android.content.pm.ActivityInfo.FLAG_ALWAYS_FOCUSABLE;
chaviw59b98852017-06-13 12:05:44 -070051import static android.content.pm.ActivityInfo.FLAG_SHOW_WHEN_LOCKED;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080052import static android.content.pm.ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS;
53import static android.content.pm.ActivityInfo.FLAG_IMMERSIVE;
54import static android.content.pm.ActivityInfo.FLAG_MULTIPROCESS;
Chong Zhang87761972016-08-22 13:53:24 -070055import static android.content.pm.ActivityInfo.FLAG_SHOW_FOR_ALL_USERS;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080056import static android.content.pm.ActivityInfo.FLAG_STATE_NOT_NEEDED;
chaviw59b98852017-06-13 12:05:44 -070057import static android.content.pm.ActivityInfo.FLAG_TURN_SCREEN_ON;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080058import static android.content.pm.ActivityInfo.LAUNCH_MULTIPLE;
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -080059import static android.content.pm.ActivityInfo.LAUNCH_SINGLE_INSTANCE;
60import static android.content.pm.ActivityInfo.LAUNCH_SINGLE_TASK;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080061import static android.content.pm.ActivityInfo.LAUNCH_SINGLE_TOP;
Ruben Brunkf53497c2017-03-27 20:26:17 -070062import static android.content.pm.ActivityInfo.PERSIST_ACROSS_REBOOTS;
63import static android.content.pm.ActivityInfo.PERSIST_ROOT_ONLY;
Wale Ogunwaledf241e92016-10-13 15:14:21 -070064import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZEABLE;
Jorim Jaggicd13d332016-04-27 15:40:20 -070065import static android.content.pm.ActivityInfo.RESIZE_MODE_RESIZEABLE;
Wale Ogunwale72a73e32016-10-13 12:16:39 -070066import static android.content.pm.ActivityInfo.RESIZE_MODE_RESIZEABLE_VIA_SDK_VERSION;
Wale Ogunwaledf241e92016-10-13 15:14:21 -070067import static android.content.pm.ActivityInfo.RESIZE_MODE_UNRESIZEABLE;
Bryce Leeb7c9b802017-05-02 14:20:24 -070068import static android.content.pm.ActivityInfo.FLAG_NO_HISTORY;
Wale Ogunwaled4b1d1e2017-04-10 06:35:59 -070069import static android.content.pm.ActivityInfo.isFixedOrientationLandscape;
70import static android.content.pm.ActivityInfo.isFixedOrientationPortrait;
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -070071import static android.content.res.Configuration.EMPTY;
Wale Ogunwalee610d3d2017-04-25 10:23:48 -070072import static android.content.res.Configuration.ORIENTATION_LANDSCAPE;
73import static android.content.res.Configuration.ORIENTATION_PORTRAIT;
Ruben Brunkf53497c2017-03-27 20:26:17 -070074import static android.content.res.Configuration.UI_MODE_TYPE_MASK;
Zak Cohen90e7116742017-01-29 12:59:23 -080075import static android.content.res.Configuration.UI_MODE_TYPE_VR_HEADSET;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080076import static android.os.Build.VERSION_CODES.HONEYCOMB;
Zak Cohen90e7116742017-01-29 12:59:23 -080077import static android.os.Build.VERSION_CODES.O;
Bryce Lee0e7b7c92017-08-10 14:59:00 -070078import static android.os.Build.VERSION_CODES.O_MR1;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080079import static android.os.Process.SYSTEM_UID;
Ruben Brunkf53497c2017-03-27 20:26:17 -070080import static android.os.Trace.TRACE_TAG_ACTIVITY_MANAGER;
Andrii Kulian3a1619d2017-07-07 14:38:09 -070081import static android.view.WindowManagerPolicy.NAV_BAR_LEFT;
Andrii Kulian036e3ad2017-04-19 10:55:10 -070082
Filip Gruszczynski3d026712015-12-16 13:46:38 -080083import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_CONFIGURATION;
Andrii Kulian21713ac2016-10-12 22:05:05 -070084import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SAVED_STATE;
85import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SCREENSHOTS;
86import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_STATES;
Filip Gruszczynski3d026712015-12-16 13:46:38 -080087import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SWITCH;
88import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_THUMBNAILS;
Andrii Kulian21713ac2016-10-12 22:05:05 -070089import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_VISIBILITY;
90import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_CONFIGURATION;
91import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SAVED_STATE;
92import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SCREENSHOTS;
Filip Gruszczynski3d026712015-12-16 13:46:38 -080093import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_STATES;
94import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SWITCH;
95import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_THUMBNAILS;
Andrii Kulian21713ac2016-10-12 22:05:05 -070096import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_VISIBILITY;
Filip Gruszczynski3d026712015-12-16 13:46:38 -080097import static com.android.server.am.ActivityManagerDebugConfig.TAG_AM;
98import static com.android.server.am.ActivityManagerDebugConfig.TAG_WITH_CLASS_NAME;
Andrii Kulian21713ac2016-10-12 22:05:05 -070099import static com.android.server.am.ActivityManagerService.TAKE_FULLSCREEN_SCREENSHOTS;
Ruben Brunkf53497c2017-03-27 20:26:17 -0700100import static com.android.server.am.ActivityStack.ActivityState.DESTROYED;
101import static com.android.server.am.ActivityStack.ActivityState.DESTROYING;
102import static com.android.server.am.ActivityStack.ActivityState.INITIALIZING;
103import static com.android.server.am.ActivityStack.ActivityState.PAUSED;
104import static com.android.server.am.ActivityStack.ActivityState.PAUSING;
105import static com.android.server.am.ActivityStack.ActivityState.RESUMED;
106import static com.android.server.am.ActivityStack.ActivityState.STOPPED;
107import static com.android.server.am.ActivityStack.ActivityState.STOPPING;
108import static com.android.server.am.ActivityStack.LAUNCH_TICK;
109import static com.android.server.am.ActivityStack.LAUNCH_TICK_MSG;
110import static com.android.server.am.ActivityStack.PAUSE_TIMEOUT_MSG;
Wale Ogunwale9b7a8272017-04-10 08:05:41 -0700111import static com.android.server.am.ActivityStack.STACK_INVISIBLE;
Ruben Brunkf53497c2017-03-27 20:26:17 -0700112import static com.android.server.am.ActivityStack.STOP_TIMEOUT_MSG;
113import static com.android.server.am.EventLogTags.AM_ACTIVITY_FULLY_DRAWN_TIME;
114import static com.android.server.am.EventLogTags.AM_ACTIVITY_LAUNCH_TIME;
115import static com.android.server.am.EventLogTags.AM_RELAUNCH_ACTIVITY;
116import static com.android.server.am.EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY;
117import static com.android.server.am.TaskPersister.DEBUG;
118import static com.android.server.am.TaskPersister.IMAGE_EXTENSION;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800119import static com.android.server.am.TaskRecord.INVALID_TASK_ID;
Ruben Brunkf53497c2017-03-27 20:26:17 -0700120import static org.xmlpull.v1.XmlPullParser.END_DOCUMENT;
121import static org.xmlpull.v1.XmlPullParser.END_TAG;
122import static org.xmlpull.v1.XmlPullParser.START_TAG;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800123
Andrii Kulian21713ac2016-10-12 22:05:05 -0700124import android.annotation.NonNull;
Craig Mautner21d24a22014-04-23 11:45:37 -0700125import android.app.ActivityManager.TaskDescription;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700126import android.app.ActivityOptions;
Filip Gruszczynski3d026712015-12-16 13:46:38 -0800127import android.app.PendingIntent;
Winson Chung709904f2017-04-25 11:00:48 -0700128import android.app.PictureInPictureParams;
Craig Mautner05d6272ba2013-02-11 09:39:27 -0800129import android.app.ResultInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130import android.content.ComponentName;
131import android.content.Intent;
132import android.content.pm.ActivityInfo;
133import android.content.pm.ApplicationInfo;
Dianne Hackborn8ea5e1d2011-05-27 16:45:31 -0700134import android.content.res.CompatibilityInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135import android.content.res.Configuration;
136import android.graphics.Bitmap;
Winson Chungaa7fa012017-05-24 15:50:06 -0700137import android.graphics.GraphicBuffer;
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700138import android.graphics.Rect;
Bryce Lee39791592017-04-26 09:29:12 -0700139import android.os.Build;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800140import android.os.Bundle;
Andrii Kulian21713ac2016-10-12 22:05:05 -0700141import android.os.Debug;
Dianne Hackbornbe707852011-11-11 14:32:10 -0800142import android.os.IBinder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143import android.os.Message;
Filip Gruszczynski3d026712015-12-16 13:46:38 -0800144import android.os.PersistableBundle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145import android.os.Process;
Dianne Hackborn39792d22010-08-19 18:01:52 -0700146import android.os.RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147import android.os.SystemClock;
Filip Gruszczynski3d026712015-12-16 13:46:38 -0800148import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700149import android.os.UserHandle;
Bryce Lee8558ec72017-08-17 15:37:26 -0700150import android.os.storage.StorageManager;
Amith Yamasani0af6fa72016-01-17 15:36:19 -0800151import android.service.voice.IVoiceInteractionSession;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800152import android.util.EventLog;
153import android.util.Log;
Wale Ogunwalee610d3d2017-04-25 10:23:48 -0700154import android.util.MergedConfiguration;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700155import android.util.Slog;
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700156import android.util.TimeUtils;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700157import android.view.AppTransitionAnimationSpec;
Jorim Jaggi34795e32017-05-12 17:27:46 +0200158import android.view.IAppTransitionAnimationSpecsFuture;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159import android.view.IApplicationToken;
Jorim Jaggife762342016-10-13 14:33:27 +0200160import android.view.WindowManager.LayoutParams;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700161
Andrii Kulian3a1619d2017-07-07 14:38:09 -0700162import com.android.internal.annotations.VisibleForTesting;
Filip Gruszczynski3d026712015-12-16 13:46:38 -0800163import com.android.internal.app.ResolverActivity;
164import com.android.internal.content.ReferrerIntent;
165import com.android.internal.util.XmlUtils;
166import com.android.server.AttributeCache;
Ruben Brunkf53497c2017-03-27 20:26:17 -0700167import com.android.server.AttributeCache.Entry;
Filip Gruszczynski3d026712015-12-16 13:46:38 -0800168import com.android.server.am.ActivityStack.ActivityState;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800169import com.android.server.wm.AppWindowContainerController;
170import com.android.server.wm.AppWindowContainerListener;
Wale Ogunwale98d62312017-07-12 09:24:56 -0700171import com.android.server.wm.ConfigurationContainer;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800172import com.android.server.wm.TaskWindowContainerController;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800173
Jorim Jaggi02886a82016-12-06 09:10:06 -0800174import org.xmlpull.v1.XmlPullParser;
175import org.xmlpull.v1.XmlPullParserException;
176import org.xmlpull.v1.XmlSerializer;
177
Suprabh Shukla23593142015-11-03 17:31:15 -0800178import java.io.File;
Craig Mautner21d24a22014-04-23 11:45:37 -0700179import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800180import java.io.PrintWriter;
181import java.lang.ref.WeakReference;
182import java.util.ArrayList;
Todd Kennedy39bfee52016-02-24 10:28:21 -0800183import java.util.Arrays;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800184import java.util.HashSet;
Andrii Kulian21713ac2016-10-12 22:05:05 -0700185import java.util.List;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700186import java.util.Objects;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800187
188/**
189 * An entry in the history stack, representing an activity.
190 */
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700191final class ActivityRecord extends ConfigurationContainer implements AppWindowContainerListener {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800192 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityRecord" : TAG_AM;
Andrii Kulian21713ac2016-10-12 22:05:05 -0700193 private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
194 private static final String TAG_SAVED_STATE = TAG + POSTFIX_SAVED_STATE;
195 private static final String TAG_SCREENSHOTS = TAG + POSTFIX_SCREENSHOTS;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700196 private static final String TAG_STATES = TAG + POSTFIX_STATES;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700197 private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
198 private static final String TAG_THUMBNAILS = TAG + POSTFIX_THUMBNAILS;
Andrii Kulian21713ac2016-10-12 22:05:05 -0700199 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800200
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700201 private static final boolean SHOW_ACTIVITY_START_TIME = true;
Andrii Kulian21713ac2016-10-12 22:05:05 -0700202 private static final String RECENTS_PACKAGE_NAME = "com.android.systemui.recents";
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700203
Craig Mautner21d24a22014-04-23 11:45:37 -0700204 private static final String ATTR_ID = "id";
205 private static final String TAG_INTENT = "intent";
206 private static final String ATTR_USERID = "user_id";
207 private static final String TAG_PERSISTABLEBUNDLE = "persistable_bundle";
208 private static final String ATTR_LAUNCHEDFROMUID = "launched_from_uid";
Stefan Kuhnee88d1e52015-05-18 10:33:45 -0700209 private static final String ATTR_LAUNCHEDFROMPACKAGE = "launched_from_package";
Craig Mautner21d24a22014-04-23 11:45:37 -0700210 private static final String ATTR_RESOLVEDTYPE = "resolved_type";
211 private static final String ATTR_COMPONENTSPECIFIED = "component_specified";
Dianne Hackborn337abb32014-09-24 12:44:29 -0700212 static final String ACTIVITY_ICON_SUFFIX = "_activity_icon_";
Craig Mautner21d24a22014-04-23 11:45:37 -0700213
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800214 final ActivityManagerService service; // owner
Dianne Hackbornbe707852011-11-11 14:32:10 -0800215 final IApplicationToken.Stub appToken; // window manager token
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800216 AppWindowContainerController mWindowContainerController;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800217 final ActivityInfo info; // all about me
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700218 final ApplicationInfo appInfo; // information about activity's app
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800219 final int launchedFromPid; // always the pid who started the activity.
Stefan Kuhnee88d1e52015-05-18 10:33:45 -0700220 final int launchedFromUid; // always the uid who started the activity.
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800221 final String launchedFromPackage; // always the package who started the activity.
Amith Yamasani742a6712011-05-04 14:49:28 -0700222 final int userId; // Which user is this running for?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800223 final Intent intent; // the original intent that generated us
224 final ComponentName realActivity; // the intent component, or target of an alias.
225 final String shortComponentName; // the short component name of the intent
226 final String resolvedType; // as per original caller;
227 final String packageName; // the package implementing intent's component
228 final String processName; // process where this component wants to run
229 final String taskAffinity; // as per ActivityInfo.taskAffinity
230 final boolean stateNotNeeded; // As per ActivityInfo.flags
Craig Mautner4addfc52013-06-25 08:05:45 -0700231 boolean fullscreen; // covers the full screen?
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800232 final boolean noDisplay; // activity is not displayed?
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800233 private final boolean componentSpecified; // did caller specify an explicit component?
Dianne Hackbornfb81d092015-08-03 17:14:46 -0700234 final boolean rootVoiceInteraction; // was this the root activity of a voice interaction?
Craig Mautner86d67a42013-05-14 10:34:38 -0700235
236 static final int APPLICATION_ACTIVITY_TYPE = 0;
237 static final int HOME_ACTIVITY_TYPE = 1;
238 static final int RECENTS_ACTIVITY_TYPE = 2;
Winson Chung83471632016-12-13 11:02:12 -0800239 static final int ASSISTANT_ACTIVITY_TYPE = 3;
Craig Mautner2c1faed2013-07-23 12:56:02 -0700240 int mActivityType;
Craig Mautner86d67a42013-05-14 10:34:38 -0700241
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800242 private CharSequence nonLocalizedLabel; // the label information from the package mgr.
243 private int labelRes; // the label information from the package mgr.
244 private int icon; // resource identifier of activity's icon.
245 private int logo; // resource identifier of activity's logo.
246 private int theme; // resource identifier of activity's theme.
247 private int realTheme; // actual theme resource we will use, never 0.
248 private int windowFlags; // custom window flags for preview window.
Bryce Leeaf691c02017-03-20 14:20:22 -0700249 private TaskRecord task; // the task this is in.
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800250 private long createTime = System.currentTimeMillis();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700251 long displayStartTime; // when we started launching this activity
252 long fullyDrawnStartTime; // when we started launching this activity
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800253 private long startTime; // last time this activity was started
Dianne Hackborn50685602011-12-01 12:23:37 -0800254 long lastVisibleTime; // last time this activity became visible
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700255 long cpuTimeAtResume; // the cpu time of host process at the time of resuming activity
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700256 long pauseTime; // last time we started pausing the activity
257 long launchTickTime; // base time for launch tick messages
Wale Ogunwalee610d3d2017-04-25 10:23:48 -0700258 // Last configuration reported to the activity in the client process.
259 private MergedConfiguration mLastReportedConfiguration;
Andrii Kulianb047b8b2017-02-08 18:38:26 -0800260 private int mLastReportedDisplayId;
Winson Chung609e1e92017-05-08 10:52:12 -0700261 private boolean mLastReportedMultiWindowMode;
262 private boolean mLastReportedPictureInPictureMode;
Dianne Hackborn8ea5e1d2011-05-27 16:45:31 -0700263 CompatibilityInfo compat;// last used compatibility mode
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700264 ActivityRecord resultTo; // who started this entry, so will get our reply
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800265 final String resultWho; // additional identifier for use by resultTo.
266 final int requestCode; // code given by requester (resultTo)
Craig Mautner05d6272ba2013-02-11 09:39:27 -0800267 ArrayList<ResultInfo> results; // pending ActivityResult objs we have received
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800268 HashSet<WeakReference<PendingIntentRecord>> pendingResults; // all pending intents for this act
Dianne Hackborn85d558c2014-11-04 10:31:54 -0800269 ArrayList<ReferrerIntent> newIntents; // any pending new intents for single-top mode
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700270 ActivityOptions pendingOptions; // most recently given options
George Mount6ba042b2014-07-28 11:12:28 -0700271 ActivityOptions returningOptions; // options that are coming back via convertToTranslucent
Dianne Hackbornb5a380d2015-05-20 18:18:46 -0700272 AppTimeTracker appTimeTracker; // set if we are tracking the time in this app/task/activity
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800273 HashSet<ConnectionRecord> connections; // All ConnectionRecord we hold
Dianne Hackborn7e269642010-08-25 19:50:20 -0700274 UriPermissionOwner uriPermissions; // current special URI access perms.
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700275 ProcessRecord app; // if non-null, hosting application
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700276 ActivityState state; // current state we are in
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800277 Bundle icicle; // last saved activity state
Craig Mautnera0026042014-04-23 11:45:37 -0700278 PersistableBundle persistentState; // last persistently saved activity state
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800279 boolean frontOfTask; // is this the root activity of its task?
280 boolean launchFailed; // set if a launched failed, to abort on 2nd try
281 boolean haveState; // have we gotten the last activity state?
282 boolean stopped; // is activity pause finished?
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700283 boolean delayedResume; // not yet resumed because of stopped app switches?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800284 boolean finishing; // activity in pending finish list?
Wale Ogunwalef81c1d12016-01-12 12:20:18 -0800285 boolean deferRelaunchUntilPaused; // relaunch of activity is being deferred until pause is
286 // completed
287 boolean preserveWindowOnDeferredRelaunch; // activity windows are preserved on deferred relaunch
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800288 int configChangeFlags; // which config values have changed
Wale Ogunwaleec950642017-04-25 07:44:21 -0700289 private boolean keysPaused; // has key dispatching been paused for it?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800290 int launchMode; // the launch mode activity attribute.
291 boolean visible; // does this activity's window need to be shown?
Jorim Jaggi241ae102016-11-02 21:57:33 -0700292 boolean visibleIgnoringKeyguard; // is this activity visible, ignoring the fact that Keyguard
293 // might hide this activity?
Wale Ogunwaleec950642017-04-25 07:44:21 -0700294 private boolean mDeferHidingClient; // If true we told WM to defer reporting to the client
295 // process that it is hidden.
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800296 boolean sleeping; // have we told the activity to sleep?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800297 boolean nowVisible; // is this activity's window visible?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800298 boolean idle; // has the activity gone idle?
299 boolean hasBeenLaunched;// has this activity ever been launched?
300 boolean frozenBeforeDestroy;// has been frozen but not yet destroyed.
Daniel Sandler69a48172010-06-23 16:29:36 -0400301 boolean immersive; // immersive mode (don't interrupt if possible)
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400302 boolean forceNewConfig; // force re-create with new config next time
Winson Chungc2baac02017-01-11 13:34:47 -0800303 boolean supportsPictureInPictureWhilePausing; // This flag is set by the system to indicate
304 // that the activity can enter picture in picture while pausing (ie. only when another
305 // task is brought to front or started)
Winson Chung709904f2017-04-25 11:00:48 -0700306 PictureInPictureParams pictureInPictureArgs = new PictureInPictureParams.Builder().build();
307 // The PiP params used when deferring the entering of picture-in-picture.
Dianne Hackborn07981492013-01-28 11:36:23 -0800308 int launchCount; // count of launches since last state
Wale Ogunwalef81c1d12016-01-12 12:20:18 -0800309 long lastLaunchTime; // time of last launch of this activity
Ruben Brunke24b9a62016-02-16 21:38:24 -0800310 ComponentName requestedVrComponent; // the requested component for handling VR mode.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800311
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700312 String stringName; // for caching of toString().
Craig Mautnerde4ef022013-04-07 19:01:33 -0700313
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700314 private boolean inHistory; // are we in the history stack?
Craig Mautnerde4ef022013-04-07 19:01:33 -0700315 final ActivityStackSupervisor mStackSupervisor;
Wale Ogunwalef40c11b2016-02-26 08:16:02 -0800316
317 static final int STARTING_WINDOW_NOT_SHOWN = 0;
318 static final int STARTING_WINDOW_SHOWN = 1;
319 static final int STARTING_WINDOW_REMOVED = 2;
320 int mStartingWindowState = STARTING_WINDOW_NOT_SHOWN;
Wale Ogunwale3b232392016-05-13 15:37:13 -0700321 boolean mTaskOverlay = false; // Task is always on-top of other activities in the task.
Wale Ogunwalef40c11b2016-02-26 08:16:02 -0800322
Jorim Jaggic2f262b2015-12-07 16:59:10 -0800323 boolean mUpdateTaskThumbnailWhenHidden;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700324
Craig Mautner21d24a22014-04-23 11:45:37 -0700325 TaskDescription taskDescription; // the recents information for this activity
Craig Mautnerbb742462014-07-07 15:28:55 -0700326 boolean mLaunchTaskBehind; // this activity is actively being launched with
327 // ActivityOptions.setLaunchTaskBehind, will be cleared once launch is completed.
Craig Mautner2fbd7542014-03-21 09:34:07 -0700328
Filip Gruszczynski23493322015-07-29 17:02:59 -0700329 // These configurations are collected from application's resources based on size-sensitive
330 // qualifiers. For example, layout-w800dp will be added to mHorizontalSizeConfigurations as 800
331 // and drawable-sw400dp will be added to both as 400.
332 private int[] mVerticalSizeConfigurations;
333 private int[] mHorizontalSizeConfigurations;
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -0700334 private int[] mSmallestSizeConfigurations;
Filip Gruszczynski23493322015-07-29 17:02:59 -0700335
Amith Yamasani0af6fa72016-01-17 15:36:19 -0800336 boolean pendingVoiceInteractionStart; // Waiting for activity-invoked voice session
337 IVoiceInteractionSession voiceSession; // Voice interaction session for this activity
338
Robert Carrd2265122016-08-05 10:25:21 -0700339 // A hint to override the window specified rotation animation, or -1
340 // to use the window specified value. We use this so that
341 // we can select the right animation in the cases of starting
342 // windows, where the app hasn't had time to set a value
343 // on the window.
344 int mRotationAnimationHint = -1;
Robert Carrfd10cd12016-06-29 16:41:50 -0700345
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700346 // The bounds of this activity. Mainly used for aspect-ratio compatibility.
347 // TODO(b/36505427): Every level on ConfigurationContainer now has bounds information, which
348 // directly affects the configuration. We should probably move this into that class and have it
349 // handle calculating override configuration from the bounds.
350 private final Rect mBounds = new Rect();
351
chaviw59b98852017-06-13 12:05:44 -0700352 private boolean mShowWhenLocked;
353 private boolean mTurnScreenOn;
354
Andrii Kulian21713ac2016-10-12 22:05:05 -0700355 /**
356 * Temp configs used in {@link #ensureActivityConfigurationLocked(int, boolean)}
357 */
Wale Ogunwalee610d3d2017-04-25 10:23:48 -0700358 private final Configuration mTmpConfig = new Configuration();
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700359 private final Rect mTmpBounds = new Rect();
Andrii Kulian21713ac2016-10-12 22:05:05 -0700360
Wale Ogunwalef40c11b2016-02-26 08:16:02 -0800361 private static String startingWindowStateToString(int state) {
362 switch (state) {
363 case STARTING_WINDOW_NOT_SHOWN:
364 return "STARTING_WINDOW_NOT_SHOWN";
365 case STARTING_WINDOW_SHOWN:
366 return "STARTING_WINDOW_SHOWN";
367 case STARTING_WINDOW_REMOVED:
368 return "STARTING_WINDOW_REMOVED";
369 default:
370 return "unknown state=" + state;
371 }
372 }
373
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800374 void dump(PrintWriter pw, String prefix) {
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700375 final long now = SystemClock.uptimeMillis();
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700376 pw.print(prefix); pw.print("packageName="); pw.print(packageName);
377 pw.print(" processName="); pw.println(processName);
378 pw.print(prefix); pw.print("launchedFromUid="); pw.print(launchedFromUid);
Craig Mautnere11f2b72013-04-01 12:37:17 -0700379 pw.print(" launchedFromPackage="); pw.print(launchedFromPackage);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800380 pw.print(" userId="); pw.println(userId);
381 pw.print(prefix); pw.print("app="); pw.println(app);
382 pw.print(prefix); pw.println(intent.toInsecureStringWithClip());
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700383 pw.print(prefix); pw.print("frontOfTask="); pw.print(frontOfTask);
384 pw.print(" task="); pw.println(task);
385 pw.print(prefix); pw.print("taskAffinity="); pw.println(taskAffinity);
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700386 pw.print(prefix); pw.print("realActivity=");
387 pw.println(realActivity.flattenToShortString());
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700388 if (appInfo != null) {
389 pw.print(prefix); pw.print("baseDir="); pw.println(appInfo.sourceDir);
390 if (!Objects.equals(appInfo.sourceDir, appInfo.publicSourceDir)) {
391 pw.print(prefix); pw.print("resDir="); pw.println(appInfo.publicSourceDir);
392 }
393 pw.print(prefix); pw.print("dataDir="); pw.println(appInfo.dataDir);
Todd Kennedy39bfee52016-02-24 10:28:21 -0800394 if (appInfo.splitSourceDirs != null) {
395 pw.print(prefix); pw.print("splitDir=");
396 pw.println(Arrays.toString(appInfo.splitSourceDirs));
397 }
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800398 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700399 pw.print(prefix); pw.print("stateNotNeeded="); pw.print(stateNotNeeded);
400 pw.print(" componentSpecified="); pw.print(componentSpecified);
Craig Mautner86d67a42013-05-14 10:34:38 -0700401 pw.print(" mActivityType="); pw.println(mActivityType);
Dianne Hackbornfb81d092015-08-03 17:14:46 -0700402 if (rootVoiceInteraction) {
403 pw.print(prefix); pw.print("rootVoiceInteraction="); pw.println(rootVoiceInteraction);
404 }
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800405 pw.print(prefix); pw.print("compat="); pw.print(compat);
406 pw.print(" labelRes=0x"); pw.print(Integer.toHexString(labelRes));
407 pw.print(" icon=0x"); pw.print(Integer.toHexString(icon));
408 pw.print(" theme=0x"); pw.println(Integer.toHexString(theme));
Wale Ogunwalee610d3d2017-04-25 10:23:48 -0700409 pw.println(prefix + "mLastReportedConfigurations:");
410 mLastReportedConfiguration.dump(pw, prefix + " ");
411
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700412 pw.print(prefix); pw.print("CurrentConfiguration="); pw.println(getConfiguration());
413 if (!getOverrideConfiguration().equals(EMPTY)) {
414 pw.println(prefix + "OverrideConfiguration=" + getOverrideConfiguration());
415 }
416 if (!mBounds.isEmpty()) {
417 pw.println(prefix + "mBounds=" + mBounds);
418 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700419 if (resultTo != null || resultWho != null) {
420 pw.print(prefix); pw.print("resultTo="); pw.print(resultTo);
421 pw.print(" resultWho="); pw.print(resultWho);
422 pw.print(" resultCode="); pw.println(requestCode);
423 }
Craig Mautner29c58ca2014-10-14 16:17:06 -0700424 if (taskDescription != null) {
425 final String iconFilename = taskDescription.getIconFilename();
426 if (iconFilename != null || taskDescription.getLabel() != null ||
427 taskDescription.getPrimaryColor() != 0) {
428 pw.print(prefix); pw.print("taskDescription:");
429 pw.print(" iconFilename="); pw.print(taskDescription.getIconFilename());
430 pw.print(" label=\""); pw.print(taskDescription.getLabel());
431 pw.print("\"");
Jorim Jaggi30d64f32017-04-07 16:33:17 +0200432 pw.print(" primaryColor=");
Craig Mautner29c58ca2014-10-14 16:17:06 -0700433 pw.println(Integer.toHexString(taskDescription.getPrimaryColor()));
Wale Ogunwale822e5122017-07-26 06:02:24 -0700434 pw.print(prefix + " backgroundColor=");
Jorim Jaggi30d64f32017-04-07 16:33:17 +0200435 pw.println(Integer.toHexString(taskDescription.getBackgroundColor()));
Wale Ogunwale822e5122017-07-26 06:02:24 -0700436 pw.print(prefix + " statusBarColor=");
Jorim Jaggi30d64f32017-04-07 16:33:17 +0200437 pw.println(Integer.toHexString(taskDescription.getStatusBarColor()));
Wale Ogunwale822e5122017-07-26 06:02:24 -0700438 pw.print(prefix + " navigationBarColor=");
Jorim Jaggi30d64f32017-04-07 16:33:17 +0200439 pw.println(Integer.toHexString(taskDescription.getNavigationBarColor()));
Craig Mautner29c58ca2014-10-14 16:17:06 -0700440 }
441 if (iconFilename == null && taskDescription.getIcon() != null) {
442 pw.print(prefix); pw.println("taskDescription contains Bitmap");
443 }
Craig Mautner648f69b2014-09-18 14:16:26 -0700444 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700445 if (results != null) {
446 pw.print(prefix); pw.print("results="); pw.println(results);
447 }
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700448 if (pendingResults != null && pendingResults.size() > 0) {
449 pw.print(prefix); pw.println("Pending Results:");
450 for (WeakReference<PendingIntentRecord> wpir : pendingResults) {
451 PendingIntentRecord pir = wpir != null ? wpir.get() : null;
452 pw.print(prefix); pw.print(" - ");
453 if (pir == null) {
454 pw.println("null");
455 } else {
456 pw.println(pir);
457 pir.dump(pw, prefix + " ");
458 }
459 }
460 }
461 if (newIntents != null && newIntents.size() > 0) {
462 pw.print(prefix); pw.println("Pending New Intents:");
463 for (int i=0; i<newIntents.size(); i++) {
Craig Mautnerd2328952013-03-05 12:46:26 -0800464 Intent intent = newIntents.get(i);
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700465 pw.print(prefix); pw.print(" - ");
466 if (intent == null) {
467 pw.println("null");
468 } else {
469 pw.println(intent.toShortString(false, true, false, true));
470 }
471 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700472 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700473 if (pendingOptions != null) {
474 pw.print(prefix); pw.print("pendingOptions="); pw.println(pendingOptions);
475 }
Dianne Hackbornb5a380d2015-05-20 18:18:46 -0700476 if (appTimeTracker != null) {
477 appTimeTracker.dumpWithHeader(pw, prefix, false);
478 }
Dianne Hackborn7e269642010-08-25 19:50:20 -0700479 if (uriPermissions != null) {
Jeff Sharkey846318a2014-04-04 12:12:41 -0700480 uriPermissions.dump(pw, prefix);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700481 }
482 pw.print(prefix); pw.print("launchFailed="); pw.print(launchFailed);
Dianne Hackborn07981492013-01-28 11:36:23 -0800483 pw.print(" launchCount="); pw.print(launchCount);
484 pw.print(" lastLaunchTime=");
485 if (lastLaunchTime == 0) pw.print("0");
486 else TimeUtils.formatDuration(lastLaunchTime, now, pw);
487 pw.println();
Dianne Hackborncfc837f2013-06-27 18:32:07 -0700488 pw.print(prefix); pw.print("haveState="); pw.print(haveState);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700489 pw.print(" icicle="); pw.println(icicle);
490 pw.print(prefix); pw.print("state="); pw.print(state);
491 pw.print(" stopped="); pw.print(stopped);
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700492 pw.print(" delayedResume="); pw.print(delayedResume);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700493 pw.print(" finishing="); pw.println(finishing);
494 pw.print(prefix); pw.print("keysPaused="); pw.print(keysPaused);
495 pw.print(" inHistory="); pw.print(inHistory);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700496 pw.print(" visible="); pw.print(visible);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800497 pw.print(" sleeping="); pw.print(sleeping);
Wale Ogunwalef40c11b2016-02-26 08:16:02 -0800498 pw.print(" idle="); pw.print(idle);
499 pw.print(" mStartingWindowState=");
500 pw.println(startingWindowStateToString(mStartingWindowState));
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800501 pw.print(prefix); pw.print("fullscreen="); pw.print(fullscreen);
502 pw.print(" noDisplay="); pw.print(noDisplay);
503 pw.print(" immersive="); pw.print(immersive);
504 pw.print(" launchMode="); pw.println(launchMode);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800505 pw.print(prefix); pw.print("frozenBeforeDestroy="); pw.print(frozenBeforeDestroy);
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400506 pw.print(" forceNewConfig="); pw.println(forceNewConfig);
Craig Mautnerae7ecab2013-09-18 11:48:14 -0700507 pw.print(prefix); pw.print("mActivityType=");
508 pw.println(activityTypeToString(mActivityType));
Ruben Brunke24b9a62016-02-16 21:38:24 -0800509 if (requestedVrComponent != null) {
510 pw.print(prefix);
511 pw.print("requestedVrComponent=");
512 pw.println(requestedVrComponent);
513 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700514 if (displayStartTime != 0 || startTime != 0) {
515 pw.print(prefix); pw.print("displayStartTime=");
516 if (displayStartTime == 0) pw.print("0");
517 else TimeUtils.formatDuration(displayStartTime, now, pw);
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700518 pw.print(" startTime=");
519 if (startTime == 0) pw.print("0");
520 else TimeUtils.formatDuration(startTime, now, pw);
521 pw.println();
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700522 }
Bryce Lee4a194382017-04-04 14:32:48 -0700523 final boolean waitingVisible =
524 mStackSupervisor.mActivitiesWaitingForVisibleActivity.contains(this);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800525 if (lastVisibleTime != 0 || waitingVisible || nowVisible) {
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700526 pw.print(prefix); pw.print("waitingVisible="); pw.print(waitingVisible);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800527 pw.print(" nowVisible="); pw.print(nowVisible);
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700528 pw.print(" lastVisibleTime=");
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700529 if (lastVisibleTime == 0) pw.print("0");
530 else TimeUtils.formatDuration(lastVisibleTime, now, pw);
531 pw.println();
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700532 }
Wale Ogunwaleec950642017-04-25 07:44:21 -0700533 if (mDeferHidingClient) {
534 pw.println(prefix + "mDeferHidingClient=" + mDeferHidingClient);
535 }
Wale Ogunwalef81c1d12016-01-12 12:20:18 -0800536 if (deferRelaunchUntilPaused || configChangeFlags != 0) {
537 pw.print(prefix); pw.print("deferRelaunchUntilPaused="); pw.print(deferRelaunchUntilPaused);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700538 pw.print(" configChangeFlags=");
539 pw.println(Integer.toHexString(configChangeFlags));
540 }
541 if (connections != null) {
542 pw.print(prefix); pw.print("connections="); pw.println(connections);
543 }
Wale Ogunwaled26176f2016-01-25 20:04:04 -0800544 if (info != null) {
545 pw.println(prefix + "resizeMode=" + ActivityInfo.resizeModeToString(info.resizeMode));
Winson Chung609e1e92017-05-08 10:52:12 -0700546 pw.println(prefix + "mLastReportedMultiWindowMode=" + mLastReportedMultiWindowMode
547 + " mLastReportedPictureInPictureMode=" + mLastReportedPictureInPictureMode);
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700548 if (info.supportsPictureInPicture()) {
549 pw.println(prefix + "supportsPictureInPicture=" + info.supportsPictureInPicture());
550 pw.println(prefix + "supportsPictureInPictureWhilePausing: "
551 + supportsPictureInPictureWhilePausing);
552 }
553 if (info.maxAspectRatio != 0) {
554 pw.println(prefix + "maxAspectRatio=" + info.maxAspectRatio);
555 }
Wale Ogunwaled26176f2016-01-25 20:04:04 -0800556 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800557 }
558
Andrii Kulian21713ac2016-10-12 22:05:05 -0700559 private boolean crossesHorizontalSizeThreshold(int firstDp, int secondDp) {
Filip Gruszczynski23493322015-07-29 17:02:59 -0700560 return crossesSizeThreshold(mHorizontalSizeConfigurations, firstDp, secondDp);
561 }
562
Andrii Kulian21713ac2016-10-12 22:05:05 -0700563 private boolean crossesVerticalSizeThreshold(int firstDp, int secondDp) {
Filip Gruszczynski23493322015-07-29 17:02:59 -0700564 return crossesSizeThreshold(mVerticalSizeConfigurations, firstDp, secondDp);
565 }
566
Andrii Kulian21713ac2016-10-12 22:05:05 -0700567 private boolean crossesSmallestSizeThreshold(int firstDp, int secondDp) {
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -0700568 return crossesSizeThreshold(mSmallestSizeConfigurations, firstDp, secondDp);
569 }
570
Filip Gruszczynski23493322015-07-29 17:02:59 -0700571 /**
572 * The purpose of this method is to decide whether the activity needs to be relaunched upon
573 * changing its size. In most cases the activities don't need to be relaunched, if the resize
574 * is small, all the activity content has to do is relayout itself within new bounds. There are
575 * cases however, where the activity's content would be completely changed in the new size and
576 * the full relaunch is required.
577 *
578 * The activity will report to us vertical and horizontal thresholds after which a relaunch is
579 * required. These thresholds are collected from the application resource qualifiers. For
580 * example, if application has layout-w600dp resource directory, then it needs a relaunch when
581 * we resize from width of 650dp to 550dp, as it crosses the 600dp threshold. However, if
582 * it resizes width from 620dp to 700dp, it won't be relaunched as it stays on the same side
583 * of the threshold.
584 */
585 private static boolean crossesSizeThreshold(int[] thresholds, int firstDp,
586 int secondDp) {
587 if (thresholds == null) {
588 return false;
589 }
590 for (int i = thresholds.length - 1; i >= 0; i--) {
591 final int threshold = thresholds[i];
592 if ((firstDp < threshold && secondDp >= threshold)
593 || (firstDp >= threshold && secondDp < threshold)) {
594 return true;
595 }
596 }
597 return false;
598 }
599
Andrii Kulian21713ac2016-10-12 22:05:05 -0700600 void setSizeConfigurations(int[] horizontalSizeConfiguration,
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -0700601 int[] verticalSizeConfigurations, int[] smallestSizeConfigurations) {
Filip Gruszczynski23493322015-07-29 17:02:59 -0700602 mHorizontalSizeConfigurations = horizontalSizeConfiguration;
603 mVerticalSizeConfigurations = verticalSizeConfigurations;
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -0700604 mSmallestSizeConfigurations = smallestSizeConfigurations;
Filip Gruszczynski23493322015-07-29 17:02:59 -0700605 }
606
Andrii Kulianb047b8b2017-02-08 18:38:26 -0800607 private void scheduleActivityMovedToDisplay(int displayId, Configuration config) {
Wale Ogunwale22e25262016-02-01 10:32:02 -0800608 if (app == null || app.thread == null) {
Andrii Kulianb047b8b2017-02-08 18:38:26 -0800609 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.w(TAG,
610 "Can't report activity moved to display - client not running, activityRecord="
611 + this + ", displayId=" + displayId);
Wale Ogunwale22e25262016-02-01 10:32:02 -0800612 return;
613 }
614 try {
Andrii Kulianb047b8b2017-02-08 18:38:26 -0800615 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
616 "Reporting activity moved to display" + ", activityRecord=" + this
617 + ", displayId=" + displayId + ", config=" + config);
Chong Zhang6be533e2016-06-17 16:24:21 -0700618
Andrii Kulianb047b8b2017-02-08 18:38:26 -0800619 app.thread.scheduleActivityMovedToDisplay(appToken, displayId,
620 new Configuration(config));
621 } catch (RemoteException e) {
622 // If process died, whatever.
623 }
624 }
625
626 private void scheduleConfigurationChanged(Configuration config) {
627 if (app == null || app.thread == null) {
628 if (DEBUG_CONFIGURATION) Slog.w(TAG,
629 "Can't report activity configuration update - client not running"
630 + ", activityRecord=" + this);
631 return;
632 }
633 try {
634 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Sending new config to " + this + ", config: "
635 + config);
636
637 app.thread.scheduleActivityConfigurationChanged(appToken, new Configuration(config));
Wale Ogunwale22e25262016-02-01 10:32:02 -0800638 } catch (RemoteException e) {
639 // If process died, whatever.
640 }
641 }
642
Winson Chung5af42fc2017-03-24 17:11:33 -0700643 void updateMultiWindowMode() {
Andrii Kulian02b7a832016-10-06 23:11:56 -0700644 if (task == null || task.getStack() == null || app == null || app.thread == null) {
Wale Ogunwale22e25262016-02-01 10:32:02 -0800645 return;
646 }
Winson Chung5af42fc2017-03-24 17:11:33 -0700647
648 // An activity is considered to be in multi-window mode if its task isn't fullscreen.
649 final boolean inMultiWindowMode = !task.mFullscreen;
Winson Chung609e1e92017-05-08 10:52:12 -0700650 if (inMultiWindowMode != mLastReportedMultiWindowMode) {
651 mLastReportedMultiWindowMode = inMultiWindowMode;
Winson Chung5af42fc2017-03-24 17:11:33 -0700652 scheduleMultiWindowModeChanged(getConfiguration());
653 }
654 }
655
656 private void scheduleMultiWindowModeChanged(Configuration overrideConfig) {
Wale Ogunwale22e25262016-02-01 10:32:02 -0800657 try {
Winson Chung609e1e92017-05-08 10:52:12 -0700658 app.thread.scheduleMultiWindowModeChanged(appToken, mLastReportedMultiWindowMode,
Winson Chung5af42fc2017-03-24 17:11:33 -0700659 overrideConfig);
Wale Ogunwale22e25262016-02-01 10:32:02 -0800660 } catch (Exception e) {
661 // If process died, I don't care.
662 }
663 }
664
Winson Chung5af42fc2017-03-24 17:11:33 -0700665 void updatePictureInPictureMode(Rect targetStackBounds) {
Andrii Kulian02b7a832016-10-06 23:11:56 -0700666 if (task == null || task.getStack() == null || app == null || app.thread == null) {
Wale Ogunwale22e25262016-02-01 10:32:02 -0800667 return;
668 }
Winson Chung5af42fc2017-03-24 17:11:33 -0700669
670 final boolean inPictureInPictureMode = (task.getStackId() == PINNED_STACK_ID) &&
671 (targetStackBounds != null);
Winson Chung609e1e92017-05-08 10:52:12 -0700672 if (inPictureInPictureMode != mLastReportedPictureInPictureMode) {
Winson Chung5af42fc2017-03-24 17:11:33 -0700673 // Picture-in-picture mode changes also trigger a multi-window mode change as well, so
674 // update that here in order
Winson Chung609e1e92017-05-08 10:52:12 -0700675 mLastReportedPictureInPictureMode = inPictureInPictureMode;
676 mLastReportedMultiWindowMode = inPictureInPictureMode;
Winson Chung5af42fc2017-03-24 17:11:33 -0700677 final Configuration newConfig = task.computeNewOverrideConfigurationForBounds(
678 targetStackBounds, null);
679 schedulePictureInPictureModeChanged(newConfig);
680 scheduleMultiWindowModeChanged(newConfig);
681 }
682 }
683
684 private void schedulePictureInPictureModeChanged(Configuration overrideConfig) {
Wale Ogunwale22e25262016-02-01 10:32:02 -0800685 try {
Winson Chung609e1e92017-05-08 10:52:12 -0700686 app.thread.schedulePictureInPictureModeChanged(appToken,
687 mLastReportedPictureInPictureMode,
Winson Chung5af42fc2017-03-24 17:11:33 -0700688 overrideConfig);
Wale Ogunwale22e25262016-02-01 10:32:02 -0800689 } catch (Exception e) {
690 // If process died, no one cares.
Filip Gruszczynskica664812015-12-04 12:43:36 -0800691 }
692 }
693
Filip Gruszczynski3d026712015-12-16 13:46:38 -0800694 boolean isFreeform() {
Andrii Kulian02b7a832016-10-06 23:11:56 -0700695 return task != null && task.getStackId() == FREEFORM_WORKSPACE_STACK_ID;
Filip Gruszczynski3d026712015-12-16 13:46:38 -0800696 }
697
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700698 @Override
699 protected int getChildCount() {
700 // {@link ActivityRecord} is a leaf node and has no children.
701 return 0;
702 }
703
704 @Override
705 protected ConfigurationContainer getChildAt(int index) {
706 return null;
707 }
708
709 @Override
710 protected ConfigurationContainer getParent() {
Bryce Leeaf691c02017-03-20 14:20:22 -0700711 return getTask();
712 }
713
714 TaskRecord getTask() {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700715 return task;
716 }
717
Bryce Leeaf691c02017-03-20 14:20:22 -0700718 /**
719 * Sets reference to the {@link TaskRecord} the {@link ActivityRecord} will treat as its parent.
720 * Note that this does not actually add the {@link ActivityRecord} as a {@link TaskRecord}
721 * children. However, this method will clean up references to this {@link ActivityRecord} in
722 * {@link ActivityStack}.
723 * @param task The new parent {@link TaskRecord}.
724 */
725 void setTask(TaskRecord task) {
726 setTask(task, false /*reparenting*/);
727 }
728
729 /**
730 * This method should only be called by {@link TaskRecord#removeActivity(ActivityRecord)}.
731 */
732 void setTask(TaskRecord task, boolean reparenting) {
733 // Do nothing if the {@link TaskRecord} is the same as the current {@link getTask}.
734 if (task != null && task == getTask()) {
735 return;
736 }
737
738 final ActivityStack stack = getStack();
739
740 // If the new {@link TaskRecord} is from a different {@link ActivityStack}, remove this
741 // {@link ActivityRecord} from its current {@link ActivityStack}.
742 if (!reparenting && stack != null && (task == null || stack != task.getStack())) {
743 stack.onActivityRemovedFromStack(this);
744 }
745
746 this.task = task;
747
748 if (!reparenting) {
749 onParentChanged();
750 }
751 }
752
Dianne Hackbornbe707852011-11-11 14:32:10 -0800753 static class Token extends IApplicationToken.Stub {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700754 private final WeakReference<ActivityRecord> weakActivity;
Steven Timotiusaf03df62017-07-18 16:56:43 -0700755 private final String name;
Dianne Hackbornbe707852011-11-11 14:32:10 -0800756
Steven Timotiusaf03df62017-07-18 16:56:43 -0700757 Token(ActivityRecord activity, Intent intent) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800758 weakActivity = new WeakReference<>(activity);
Steven Timotiusaf03df62017-07-18 16:56:43 -0700759 name = intent.getComponent().flattenToShortString();
Wale Ogunwale7d701172015-03-11 15:36:30 -0700760 }
761
Andrii Kulian21713ac2016-10-12 22:05:05 -0700762 private static ActivityRecord tokenToActivityRecordLocked(Token token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700763 if (token == null) {
764 return null;
765 }
766 ActivityRecord r = token.weakActivity.get();
Andrii Kulian02b7a832016-10-06 23:11:56 -0700767 if (r == null || r.getStack() == null) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700768 return null;
769 }
770 return r;
Dianne Hackbornbe707852011-11-11 14:32:10 -0800771 }
772
Craig Mautnerde4ef022013-04-07 19:01:33 -0700773 @Override
Dianne Hackbornbe707852011-11-11 14:32:10 -0800774 public String toString() {
775 StringBuilder sb = new StringBuilder(128);
776 sb.append("Token{");
777 sb.append(Integer.toHexString(System.identityHashCode(this)));
778 sb.append(' ');
779 sb.append(weakActivity.get());
780 sb.append('}');
781 return sb.toString();
782 }
Steven Timotiusaf03df62017-07-18 16:56:43 -0700783
784 @Override
785 public String getName() {
786 return name;
787 }
Dianne Hackbornbe707852011-11-11 14:32:10 -0800788 }
789
Wale Ogunwale7d701172015-03-11 15:36:30 -0700790 static ActivityRecord forTokenLocked(IBinder token) {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800791 try {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700792 return Token.tokenToActivityRecordLocked((Token)token);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800793 } catch (ClassCastException e) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800794 Slog.w(TAG, "Bad activity token: " + token, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800795 return null;
796 }
797 }
798
Chong Zhang85ee6542015-10-02 13:36:38 -0700799 boolean isResolverActivity() {
800 return ResolverActivity.class.getName().equals(realActivity.getClassName());
Craig Mautnerac6f8432013-07-17 13:24:59 -0700801 }
802
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800803 ActivityRecord(ActivityManagerService _service, ProcessRecord _caller, int _launchedFromPid,
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800804 int _launchedFromUid, String _launchedFromPackage, Intent _intent, String _resolvedType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800805 ActivityInfo aInfo, Configuration _configuration,
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700806 ActivityRecord _resultTo, String _resultWho, int _reqCode,
Dianne Hackbornfb81d092015-08-03 17:14:46 -0700807 boolean _componentSpecified, boolean _rootVoiceInteraction,
Andrii Kulian94e82d9b02017-07-13 15:33:06 -0700808 ActivityStackSupervisor supervisor, ActivityOptions options,
809 ActivityRecord sourceRecord) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800810 service = _service;
Steven Timotiusaf03df62017-07-18 16:56:43 -0700811 appToken = new Token(this, _intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800812 info = aInfo;
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800813 launchedFromPid = _launchedFromPid;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800814 launchedFromUid = _launchedFromUid;
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800815 launchedFromPackage = _launchedFromPackage;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700816 userId = UserHandle.getUserId(aInfo.applicationInfo.uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800817 intent = _intent;
818 shortComponentName = _intent.getComponent().flattenToShortString();
819 resolvedType = _resolvedType;
The Android Open Source Project4df24232009-03-05 14:34:35 -0800820 componentSpecified = _componentSpecified;
Dianne Hackbornfb81d092015-08-03 17:14:46 -0700821 rootVoiceInteraction = _rootVoiceInteraction;
Wale Ogunwalee610d3d2017-04-25 10:23:48 -0700822 mLastReportedConfiguration = new MergedConfiguration(_configuration);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800823 resultTo = _resultTo;
824 resultWho = _resultWho;
825 requestCode = _reqCode;
Ruben Brunkf53497c2017-03-27 20:26:17 -0700826 state = INITIALIZING;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800827 frontOfTask = false;
828 launchFailed = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800829 stopped = false;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700830 delayedResume = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800831 finishing = false;
Wale Ogunwalef81c1d12016-01-12 12:20:18 -0800832 deferRelaunchUntilPaused = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800833 keysPaused = false;
834 inHistory = false;
Chong Zhanga48ef662015-08-18 19:21:47 -0700835 visible = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800836 nowVisible = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800837 idle = false;
838 hasBeenLaunched = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700839 mStackSupervisor = supervisor;
Robert Carr0f5d7532016-10-17 16:39:17 -0700840
841 mRotationAnimationHint = aInfo.rotationAnimation;
842
Craig Mautner233ceee2014-05-09 17:05:11 -0700843 if (options != null) {
Chong Zhang280d3322015-11-03 17:27:26 -0800844 pendingOptions = options;
Craig Mautnerbb742462014-07-07 15:28:55 -0700845 mLaunchTaskBehind = pendingOptions.getLaunchTaskBehind();
Robert Carr0f5d7532016-10-17 16:39:17 -0700846
847 final int rotationAnimation = pendingOptions.getRotationAnimationHint();
848 // Only override manifest supplied option if set.
849 if (rotationAnimation >= 0) {
850 mRotationAnimationHint = rotationAnimation;
851 }
Dianne Hackbornb5a380d2015-05-20 18:18:46 -0700852 PendingIntent usageReport = pendingOptions.getUsageTimeReport();
853 if (usageReport != null) {
854 appTimeTracker = new AppTimeTracker(usageReport);
855 }
Craig Mautner233ceee2014-05-09 17:05:11 -0700856 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800857
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800858 // This starts out true, since the initial state of an activity is that we have everything,
859 // and we shouldn't never consider it lacking in state to be removed if it dies.
Dianne Hackborn2d1b3782012-09-09 17:49:39 -0700860 haveState = true;
861
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800862 // If the class name in the intent doesn't match that of the target, this is
863 // probably an alias. We have to create a new ComponentName object to keep track
864 // of the real activity name, so that FLAG_ACTIVITY_CLEAR_TOP is handled properly.
865 if (aInfo.targetActivity == null
866 || (aInfo.targetActivity.equals(_intent.getComponent().getClassName())
867 && (aInfo.launchMode == LAUNCH_MULTIPLE
868 || aInfo.launchMode == LAUNCH_SINGLE_TOP))) {
869 realActivity = _intent.getComponent();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800870 } else {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800871 realActivity = new ComponentName(aInfo.packageName, aInfo.targetActivity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800872 }
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800873 taskAffinity = aInfo.taskAffinity;
874 stateNotNeeded = (aInfo.flags & FLAG_STATE_NOT_NEEDED) != 0;
875 appInfo = aInfo.applicationInfo;
876 nonLocalizedLabel = aInfo.nonLocalizedLabel;
877 labelRes = aInfo.labelRes;
878 if (nonLocalizedLabel == null && labelRes == 0) {
879 ApplicationInfo app = aInfo.applicationInfo;
880 nonLocalizedLabel = app.nonLocalizedLabel;
881 labelRes = app.labelRes;
882 }
883 icon = aInfo.getIconResource();
884 logo = aInfo.getLogoResource();
885 theme = aInfo.getThemeResource();
886 realTheme = theme;
887 if (realTheme == 0) {
888 realTheme = aInfo.applicationInfo.targetSdkVersion < HONEYCOMB
889 ? android.R.style.Theme : android.R.style.Theme_Holo;
890 }
891 if ((aInfo.flags & ActivityInfo.FLAG_HARDWARE_ACCELERATED) != 0) {
892 windowFlags |= LayoutParams.FLAG_HARDWARE_ACCELERATED;
893 }
894 if ((aInfo.flags & FLAG_MULTIPROCESS) != 0 && _caller != null
895 && (aInfo.applicationInfo.uid == SYSTEM_UID
896 || aInfo.applicationInfo.uid == _caller.info.uid)) {
897 processName = _caller.processName;
898 } else {
899 processName = aInfo.processName;
900 }
901
902 if ((aInfo.flags & FLAG_EXCLUDE_FROM_RECENTS) != 0) {
903 intent.addFlags(FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
904 }
905
906 packageName = aInfo.applicationInfo.packageName;
907 launchMode = aInfo.launchMode;
908
Ruben Brunkf53497c2017-03-27 20:26:17 -0700909 Entry ent = AttributeCache.instance().get(packageName,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800910 realTheme, com.android.internal.R.styleable.Window, userId);
Bryce Lee39791592017-04-26 09:29:12 -0700911 fullscreen = ent != null && !ActivityInfo.isTranslucentOrFloating(ent.array);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800912 noDisplay = ent != null && ent.array.getBoolean(
913 com.android.internal.R.styleable.Window_windowNoDisplay, false);
914
Winson Chung83471632016-12-13 11:02:12 -0800915 setActivityType(_componentSpecified, _launchedFromUid, _intent, options, sourceRecord);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800916
917 immersive = (aInfo.flags & FLAG_IMMERSIVE) != 0;
918
919 requestedVrComponent = (aInfo.requestedVrComponent == null) ?
920 null : ComponentName.unflattenFromString(aInfo.requestedVrComponent);
chaviw59b98852017-06-13 12:05:44 -0700921
922 mShowWhenLocked = (aInfo.flags & FLAG_SHOW_WHEN_LOCKED) != 0;
923 mTurnScreenOn = (aInfo.flags & FLAG_TURN_SCREEN_ON) != 0;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800924 }
925
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800926 AppWindowContainerController getWindowContainerController() {
927 return mWindowContainerController;
928 }
929
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800930 void createWindowContainer() {
931 if (mWindowContainerController != null) {
932 throw new IllegalArgumentException("Window container=" + mWindowContainerController
933 + " already created for r=" + this);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800934 }
935
936 inHistory = true;
937
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800938 final TaskWindowContainerController taskController = task.getWindowContainerController();
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800939
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700940 // TODO(b/36505427): Maybe this call should be moved inside updateOverrideConfiguration()
941 task.updateOverrideConfigurationFromLaunchBounds();
942 // Make sure override configuration is up-to-date before using to create window controller.
943 updateOverrideConfiguration();
944
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800945 mWindowContainerController = new AppWindowContainerController(taskController, appToken,
946 this, Integer.MAX_VALUE /* add on top */, info.screenOrientation, fullscreen,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800947 (info.flags & FLAG_SHOW_FOR_ALL_USERS) != 0, info.configChanges,
948 task.voiceSession != null, mLaunchTaskBehind, isAlwaysFocusable(),
949 appInfo.targetSdkVersion, mRotationAnimationHint,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700950 ActivityManagerService.getInputDispatchingTimeoutLocked(this) * 1000000L,
951 getOverrideConfiguration(), mBounds);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800952
953 task.addActivityToTop(this);
954
Winson Chung609e1e92017-05-08 10:52:12 -0700955 // When an activity is started directly into a split-screen fullscreen stack, we need to
956 // update the initial multi-window modes so that the callbacks are scheduled correctly when
957 // the user leaves that mode.
958 mLastReportedMultiWindowMode = !task.mFullscreen;
959 mLastReportedPictureInPictureMode = (task.getStackId() == PINNED_STACK_ID);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800960 }
961
962 void removeWindowContainer() {
Wale Ogunwalecc367f42017-02-01 08:12:14 -0800963 // Resume key dispatching if it is currently paused before we remove the container.
964 resumeKeyDispatchingLocked();
965
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800966 mWindowContainerController.removeContainer(getDisplayId());
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800967 mWindowContainerController = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800968 }
969
Winson Chung30480042017-01-26 10:55:34 -0800970 /**
971 * Reparents this activity into {@param newTask} at the provided {@param position}. The caller
972 * should ensure that the {@param newTask} is not already the parent of this activity.
973 */
974 void reparent(TaskRecord newTask, int position, String reason) {
975 final TaskRecord prevTask = task;
976 if (prevTask == newTask) {
977 throw new IllegalArgumentException(reason + ": task=" + newTask
978 + " is already the parent of r=" + this);
979 }
980
Winson Chung74666102017-02-22 17:49:24 -0800981 // TODO: Ensure that we do not directly reparent activities across stacks, as that may leave
982 // the stacks in strange states. For now, we should use Task.reparent() to ensure that
983 // the stack is left in an OK state.
984 if (prevTask != null && newTask != null && prevTask.getStack() != newTask.getStack()) {
985 throw new IllegalArgumentException(reason + ": task=" + newTask
986 + " is in a different stack (" + newTask.getStackId() + ") than the parent of"
987 + " r=" + this + " (" + prevTask.getStackId() + ")");
988 }
989
Winson Chung30480042017-01-26 10:55:34 -0800990 // Must reparent first in window manager
991 mWindowContainerController.reparent(newTask.getWindowContainerController(), position);
992
Bryce Leeaf691c02017-03-20 14:20:22 -0700993 // Remove the activity from the old task and add it to the new task.
994 prevTask.removeActivity(this, true /*reparenting*/);
Bryce Lee0f9bde82017-02-22 16:39:06 -0800995
Winson Chung30480042017-01-26 10:55:34 -0800996 newTask.addActivityAtIndex(position, this);
997 }
998
Wale Ogunwale1affbbc2016-05-01 09:03:52 -0700999 private boolean isHomeIntent(Intent intent) {
Ruben Brunkf53497c2017-03-27 20:26:17 -07001000 return ACTION_MAIN.equals(intent.getAction())
1001 && intent.hasCategory(CATEGORY_HOME)
Wale Ogunwale1affbbc2016-05-01 09:03:52 -07001002 && intent.getCategories().size() == 1
1003 && intent.getData() == null
1004 && intent.getType() == null;
1005 }
1006
Chong Zhangad24f962016-08-25 12:12:33 -07001007 static boolean isMainIntent(Intent intent) {
Ruben Brunkf53497c2017-03-27 20:26:17 -07001008 return ACTION_MAIN.equals(intent.getAction())
1009 && intent.hasCategory(CATEGORY_LAUNCHER)
Chong Zhangad24f962016-08-25 12:12:33 -07001010 && intent.getCategories().size() == 1
1011 && intent.getData() == null
1012 && intent.getType() == null;
1013 }
1014
Wale Ogunwale1affbbc2016-05-01 09:03:52 -07001015 private boolean canLaunchHomeActivity(int uid, ActivityRecord sourceRecord) {
1016 if (uid == Process.myUid() || uid == 0) {
1017 // System process can launch home activity.
1018 return true;
1019 }
1020 // Resolver activity can launch home activity.
1021 return sourceRecord != null && sourceRecord.isResolverActivity();
1022 }
1023
Winson Chung83471632016-12-13 11:02:12 -08001024 /**
1025 * @return whether the given package name can launch an assist activity.
1026 */
1027 private boolean canLaunchAssistActivity(String packageName) {
1028 if (service.mAssistUtils == null) {
1029 return false;
1030 }
1031
1032 final ComponentName assistComponent = service.mAssistUtils.getActiveServiceComponentName();
1033 if (assistComponent != null) {
1034 return assistComponent.getPackageName().equals(packageName);
1035 }
1036 return false;
1037 }
1038
1039 private void setActivityType(boolean componentSpecified, int launchedFromUid, Intent intent,
1040 ActivityOptions options, ActivityRecord sourceRecord) {
Wale Ogunwale1affbbc2016-05-01 09:03:52 -07001041 if ((!componentSpecified || canLaunchHomeActivity(launchedFromUid, sourceRecord))
1042 && isHomeIntent(intent) && !isResolverActivity()) {
1043 // This sure looks like a home activity!
1044 mActivityType = HOME_ACTIVITY_TYPE;
Wale Ogunwaledf241e92016-10-13 15:14:21 -07001045
1046 if (info.resizeMode == RESIZE_MODE_FORCE_RESIZEABLE
1047 || info.resizeMode == RESIZE_MODE_RESIZEABLE_VIA_SDK_VERSION) {
1048 // We only allow home activities to be resizeable if they explicitly requested it.
1049 info.resizeMode = RESIZE_MODE_UNRESIZEABLE;
1050 }
Wale Ogunwale1affbbc2016-05-01 09:03:52 -07001051 } else if (realActivity.getClassName().contains(RECENTS_PACKAGE_NAME)) {
1052 mActivityType = RECENTS_ACTIVITY_TYPE;
Winson Chung83471632016-12-13 11:02:12 -08001053 } else if (options != null && options.getLaunchStackId() == ASSISTANT_STACK_ID
1054 && canLaunchAssistActivity(launchedFromPackage)) {
1055 mActivityType = ASSISTANT_ACTIVITY_TYPE;
Wale Ogunwale1affbbc2016-05-01 09:03:52 -07001056 } else {
1057 mActivityType = APPLICATION_ACTIVITY_TYPE;
1058 }
1059 }
1060
Craig Mautnera228ae92014-07-09 05:44:55 -07001061 void setTaskToAffiliateWith(TaskRecord taskToAffiliateWith) {
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -08001062 if (launchMode != LAUNCH_SINGLE_INSTANCE && launchMode != LAUNCH_SINGLE_TASK) {
Craig Mautnera228ae92014-07-09 05:44:55 -07001063 task.setTaskToAffiliateWith(taskToAffiliateWith);
1064 }
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001065 }
1066
Andrii Kulian02b7a832016-10-06 23:11:56 -07001067 /**
1068 * @return Stack value from current task, null if there is no task.
1069 */
Winson Chung55893332017-02-17 17:13:10 -08001070 <T extends ActivityStack> T getStack() {
1071 return task != null ? (T) task.getStack() : null;
Andrii Kulian02b7a832016-10-06 23:11:56 -07001072 }
1073
Jorim Jaggicdfc04e2017-04-28 19:06:24 +02001074 int getStackId() {
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001075 return getStack() != null ? getStack().mStackId : INVALID_STACK_ID;
1076 }
1077
Craig Mautner5eda9b32013-07-02 11:58:16 -07001078 boolean changeWindowTranslucency(boolean toOpaque) {
1079 if (fullscreen == toOpaque) {
1080 return false;
1081 }
Craig Mautner4addfc52013-06-25 08:05:45 -07001082
Craig Mautner5eda9b32013-07-02 11:58:16 -07001083 // Keep track of the number of fullscreen activities in this task.
1084 task.numFullscreen += toOpaque ? +1 : -1;
1085
1086 fullscreen = toOpaque;
1087 return true;
Craig Mautner4addfc52013-06-25 08:05:45 -07001088 }
1089
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001090 void takeFromHistory() {
1091 if (inHistory) {
1092 inHistory = false;
1093 if (task != null && !finishing) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001094 task = null;
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001095 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -07001096 clearOptionsLocked();
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001097 }
1098 }
1099
1100 boolean isInHistory() {
1101 return inHistory;
1102 }
1103
Wale Ogunwale7d701172015-03-11 15:36:30 -07001104 boolean isInStackLocked() {
Andrii Kulian02b7a832016-10-06 23:11:56 -07001105 final ActivityStack stack = getStack();
1106 return stack != null && stack.isInStackLocked(this) != null;
Wale Ogunwale7d701172015-03-11 15:36:30 -07001107 }
1108
Craig Mautner86d67a42013-05-14 10:34:38 -07001109 boolean isHomeActivity() {
1110 return mActivityType == HOME_ACTIVITY_TYPE;
1111 }
1112
1113 boolean isRecentsActivity() {
1114 return mActivityType == RECENTS_ACTIVITY_TYPE;
1115 }
1116
Winson Chung83471632016-12-13 11:02:12 -08001117 boolean isAssistantActivity() {
1118 return mActivityType == ASSISTANT_ACTIVITY_TYPE;
1119 }
1120
Craig Mautner86d67a42013-05-14 10:34:38 -07001121 boolean isApplicationActivity() {
1122 return mActivityType == APPLICATION_ACTIVITY_TYPE;
1123 }
1124
Craig Mautner21d24a22014-04-23 11:45:37 -07001125 boolean isPersistable() {
Ruben Brunkf53497c2017-03-27 20:26:17 -07001126 return (info.persistableMode == PERSIST_ROOT_ONLY ||
1127 info.persistableMode == PERSIST_ACROSS_REBOOTS) &&
Craig Mautner43e52ed2014-06-16 17:18:52 -07001128 (intent == null ||
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001129 (intent.getFlags() & FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS) == 0);
Craig Mautner21d24a22014-04-23 11:45:37 -07001130 }
1131
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08001132 boolean isFocusable() {
Andrii Kulian02b7a832016-10-06 23:11:56 -07001133 return StackId.canReceiveKeys(task.getStackId()) || isAlwaysFocusable();
Wale Ogunwale6cae7652015-12-26 07:36:26 -08001134 }
1135
1136 boolean isResizeable() {
Winson Chungd3395382016-12-13 11:49:09 -08001137 return ActivityInfo.isResizeableMode(info.resizeMode) || info.supportsPictureInPicture();
Wale Ogunwale6cae7652015-12-26 07:36:26 -08001138 }
1139
Winson Chungd3395382016-12-13 11:49:09 -08001140 /**
1141 * @return whether this activity is non-resizeable or forced to be resizeable
1142 */
1143 boolean isNonResizableOrForcedResizable() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -07001144 return info.resizeMode != RESIZE_MODE_RESIZEABLE
Wale Ogunwale72a73e32016-10-13 12:16:39 -07001145 && info.resizeMode != RESIZE_MODE_RESIZEABLE_VIA_SDK_VERSION;
Jorim Jaggicd13d332016-04-27 15:40:20 -07001146 }
1147
Winson Chunge6308042016-10-31 09:24:01 -07001148 /**
Winson Chungd3395382016-12-13 11:49:09 -08001149 * @return whether this activity supports PiP multi-window and can be put in the pinned stack.
Winson Chunge6308042016-10-31 09:24:01 -07001150 */
Wale Ogunwale6cae7652015-12-26 07:36:26 -08001151 boolean supportsPictureInPicture() {
Winson Chungd3395382016-12-13 11:49:09 -08001152 return service.mSupportsPictureInPicture && !isHomeActivity()
1153 && info.supportsPictureInPicture();
1154 }
1155
1156 /**
1157 * @return whether this activity supports split-screen multi-window and can be put in the docked
1158 * stack.
1159 */
1160 boolean supportsSplitScreen() {
1161 // An activity can not be docked even if it is considered resizeable because it only
1162 // supports picture-in-picture mode but has a non-resizeable resizeMode
1163 return service.mSupportsSplitScreenMultiWindow && supportsResizeableMultiWindow();
1164 }
1165
1166 /**
1167 * @return whether this activity supports freeform multi-window and can be put in the freeform
1168 * stack.
1169 */
1170 boolean supportsFreeform() {
1171 return service.mSupportsFreeformWindowManagement && supportsResizeableMultiWindow();
1172 }
1173
1174 /**
1175 * @return whether this activity supports non-PiP multi-window.
1176 */
1177 private boolean supportsResizeableMultiWindow() {
1178 return service.mSupportsMultiWindow && !isHomeActivity()
1179 && (ActivityInfo.isResizeableMode(info.resizeMode)
1180 || service.mForceResizableActivities);
Wale Ogunwaled26176f2016-01-25 20:04:04 -08001181 }
1182
Winson Chunge6308042016-10-31 09:24:01 -07001183 /**
Andrii Kulian036e3ad2017-04-19 10:55:10 -07001184 * Check whether this activity can be launched on the specified display.
1185 * @param displayId Target display id.
1186 * @return {@code true} if either it is the default display or this activity is resizeable and
1187 * can be put a secondary screen.
1188 */
1189 boolean canBeLaunchedOnDisplay(int displayId) {
1190 return service.mStackSupervisor.canPlaceEntityOnDisplay(displayId,
Andrii Kulian02689a72017-07-06 14:28:59 -07001191 supportsResizeableMultiWindow(), launchedFromPid, launchedFromUid, info);
Andrii Kulian036e3ad2017-04-19 10:55:10 -07001192 }
1193
1194 /**
Robert Carrc33658e2017-04-11 18:24:20 -07001195 * @param beforeStopping Whether this check is for an auto-enter-pip operation, that is to say
1196 * the activity has requested to enter PiP when it would otherwise be stopped.
1197 *
Winson Chung298f95b2017-08-10 15:57:18 -07001198 * @return whether this activity is currently allowed to enter PIP.
Winson Chunge6308042016-10-31 09:24:01 -07001199 */
Winson Chung298f95b2017-08-10 15:57:18 -07001200 boolean checkEnterPictureInPictureState(String caller, boolean beforeStopping) {
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -07001201 if (!supportsPictureInPicture()) {
1202 return false;
1203 }
1204
Winson Chungf4ac0632017-03-17 12:34:12 -07001205 // Check app-ops and see if PiP is supported for this package
1206 if (!checkEnterPictureInPictureAppOpsState()) {
1207 return false;
1208 }
1209
Winson Chungf1bfee12017-03-24 17:11:33 -07001210 // Check to see if we are in VR mode, and disallow PiP if so
1211 if (service.shouldDisableNonVrUiLocked()) {
1212 return false;
1213 }
1214
Winson Chungc2baac02017-01-11 13:34:47 -08001215 boolean isKeyguardLocked = service.isKeyguardLocked();
Robert Carrc33658e2017-04-11 18:24:20 -07001216 boolean isCurrentAppLocked = mStackSupervisor.getLockTaskModeState() != LOCK_TASK_MODE_NONE;
Winson Chungc2baac02017-01-11 13:34:47 -08001217 boolean hasPinnedStack = mStackSupervisor.getStack(PINNED_STACK_ID) != null;
Winson Chungbb348802017-01-30 12:01:45 -08001218 // Don't return early if !isNotLocked, since we want to throw an exception if the activity
1219 // is in an incorrect state
Winson Chunge581ebf2017-02-21 08:25:03 -08001220 boolean isNotLockedOrOnKeyguard = !isKeyguardLocked && !isCurrentAppLocked;
Robert Carrc33658e2017-04-11 18:24:20 -07001221
1222 // We don't allow auto-PiP when something else is already pipped.
1223 if (beforeStopping && hasPinnedStack) {
1224 return false;
1225 }
1226
Winson Chungc2baac02017-01-11 13:34:47 -08001227 switch (state) {
1228 case RESUMED:
Winson Chunge581ebf2017-02-21 08:25:03 -08001229 // When visible, allow entering PiP if the app is not locked. If it is over the
1230 // keyguard, then we will prompt to unlock in the caller before entering PiP.
Robert Carrc33658e2017-04-11 18:24:20 -07001231 return !isCurrentAppLocked &&
1232 (supportsPictureInPictureWhilePausing || !beforeStopping);
Winson Chungc2baac02017-01-11 13:34:47 -08001233 case PAUSING:
1234 case PAUSED:
Winson Chungbb348802017-01-30 12:01:45 -08001235 // When pausing, then only allow enter PiP as in the resume state, and in addition,
1236 // require that there is not an existing PiP activity and that the current system
1237 // state supports entering PiP
Winson Chunge581ebf2017-02-21 08:25:03 -08001238 return isNotLockedOrOnKeyguard && !hasPinnedStack
Winson Chungf4ac0632017-03-17 12:34:12 -07001239 && supportsPictureInPictureWhilePausing;
Winson Chungc2baac02017-01-11 13:34:47 -08001240 case STOPPING:
1241 // When stopping in a valid state, then only allow enter PiP as in the pause state.
1242 // Otherwise, fall through to throw an exception if the caller is trying to enter
1243 // PiP in an invalid stopping state.
1244 if (supportsPictureInPictureWhilePausing) {
Winson Chungf4ac0632017-03-17 12:34:12 -07001245 return isNotLockedOrOnKeyguard && !hasPinnedStack;
Winson Chungc2baac02017-01-11 13:34:47 -08001246 }
1247 default:
Winson Chung298f95b2017-08-10 15:57:18 -07001248 return false;
Winson Chungb5c41b72016-12-07 15:00:47 -08001249 }
Winson Chunge6308042016-10-31 09:24:01 -07001250 }
1251
Winson Chung59fda9e2017-01-20 16:14:51 -08001252 /**
Winson Chungf4ac0632017-03-17 12:34:12 -07001253 * @return Whether AppOps allows this package to enter picture-in-picture.
Winson Chung59fda9e2017-01-20 16:14:51 -08001254 */
Winson Chungf4ac0632017-03-17 12:34:12 -07001255 private boolean checkEnterPictureInPictureAppOpsState() {
Winson Chung59fda9e2017-01-20 16:14:51 -08001256 try {
Winson Chungf4ac0632017-03-17 12:34:12 -07001257 return service.getAppOpsService().checkOperation(OP_PICTURE_IN_PICTURE,
Winson Chung59fda9e2017-01-20 16:14:51 -08001258 appInfo.uid, packageName) == MODE_ALLOWED;
1259 } catch (RemoteException e) {
1260 // Local call
1261 }
1262 return false;
1263 }
1264
Wale Ogunwale6cae7652015-12-26 07:36:26 -08001265 boolean isAlwaysFocusable() {
1266 return (info.flags & FLAG_ALWAYS_FOCUSABLE) != 0;
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08001267 }
1268
Jorim Jaggife762342016-10-13 14:33:27 +02001269
1270 /**
1271 * @return true if the activity contains windows that have
1272 * {@link LayoutParams#FLAG_DISMISS_KEYGUARD} set
1273 */
1274 boolean hasDismissKeyguardWindows() {
1275 return service.mWindowManager.containsDismissKeyguardWindow(appToken);
1276 }
1277
Wale Ogunwale7d701172015-03-11 15:36:30 -07001278 void makeFinishingLocked() {
Wale Ogunwalec981ad52017-06-13 11:40:06 -07001279 if (finishing) {
1280 return;
1281 }
1282 finishing = true;
1283 if (stopped) {
1284 clearOptionsLocked();
1285 }
Yorke Leebd54c2a2016-10-25 13:49:23 -07001286
Wale Ogunwalec981ad52017-06-13 11:40:06 -07001287 if (service != null) {
1288 service.mTaskChangeNotificationController.notifyTaskStackChanged();
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -08001289 }
1290 }
1291
Dianne Hackborn7e269642010-08-25 19:50:20 -07001292 UriPermissionOwner getUriPermissionsLocked() {
1293 if (uriPermissions == null) {
1294 uriPermissions = new UriPermissionOwner(service, this);
1295 }
1296 return uriPermissions;
1297 }
1298
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001299 void addResultLocked(ActivityRecord from, String resultWho,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001300 int requestCode, int resultCode,
1301 Intent resultData) {
1302 ActivityResult r = new ActivityResult(from, resultWho,
John Spurlock8a985d22014-02-25 09:40:05 -05001303 requestCode, resultCode, resultData);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001304 if (results == null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001305 results = new ArrayList<ResultInfo>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001306 }
1307 results.add(r);
1308 }
1309
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001310 void removeResultsLocked(ActivityRecord from, String resultWho,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001311 int requestCode) {
1312 if (results != null) {
1313 for (int i=results.size()-1; i>=0; i--) {
1314 ActivityResult r = (ActivityResult)results.get(i);
1315 if (r.mFrom != from) continue;
1316 if (r.mResultWho == null) {
1317 if (resultWho != null) continue;
1318 } else {
1319 if (!r.mResultWho.equals(resultWho)) continue;
1320 }
1321 if (r.mRequestCode != requestCode) continue;
1322
1323 results.remove(i);
1324 }
1325 }
1326 }
1327
Andrii Kulian21713ac2016-10-12 22:05:05 -07001328 private void addNewIntentLocked(ReferrerIntent intent) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001329 if (newIntents == null) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08001330 newIntents = new ArrayList<>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001331 }
1332 newIntents.add(intent);
1333 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001334
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001335 /**
1336 * Deliver a new Intent to an existing activity, so that its onNewIntent()
1337 * method will be called at the proper time.
1338 */
Dianne Hackborn85d558c2014-11-04 10:31:54 -08001339 final void deliverNewIntentLocked(int callingUid, Intent intent, String referrer) {
Dianne Hackborn514074f2013-02-11 10:52:46 -08001340 // The activity now gets access to the data associated with this Intent.
1341 service.grantUriPermissionFromIntentLocked(callingUid, packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01001342 intent, getUriPermissionsLocked(), userId);
Dianne Hackborn85d558c2014-11-04 10:31:54 -08001343 final ReferrerIntent rintent = new ReferrerIntent(intent, referrer);
Craig Mautner86d67a42013-05-14 10:34:38 -07001344 boolean unsent = true;
David Stevens9440dc82017-03-16 19:00:20 -07001345 final ActivityStack stack = getStack();
1346 final boolean isTopActivityWhileSleeping = isTopRunningActivity()
1347 && (stack != null ? stack.shouldSleepActivities() : service.isSleepingLocked());
Wale Ogunwale826c7062016-09-13 08:25:54 -07001348
1349 // We want to immediately deliver the intent to the activity if:
Wale Ogunwale03f7e9e2016-09-22 09:04:09 -07001350 // - It is currently resumed or paused. i.e. it is currently visible to the user and we want
1351 // the user to see the visual effects caused by the intent delivery now.
Wale Ogunwale826c7062016-09-13 08:25:54 -07001352 // - The device is sleeping and it is the top activity behind the lock screen (b/6700897).
Ruben Brunkf53497c2017-03-27 20:26:17 -07001353 if ((state == RESUMED || state == PAUSED
Wale Ogunwale03f7e9e2016-09-22 09:04:09 -07001354 || isTopActivityWhileSleeping) && app != null && app.thread != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001355 try {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08001356 ArrayList<ReferrerIntent> ar = new ArrayList<>(1);
1357 ar.add(rintent);
Wale Ogunwale826c7062016-09-13 08:25:54 -07001358 app.thread.scheduleNewIntent(
Ruben Brunkf53497c2017-03-27 20:26:17 -07001359 ar, appToken, state == PAUSED /* andPause */);
Craig Mautner86d67a42013-05-14 10:34:38 -07001360 unsent = false;
Dianne Hackborn39792d22010-08-19 18:01:52 -07001361 } catch (RemoteException e) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08001362 Slog.w(TAG, "Exception thrown sending new intent to " + this, e);
Dianne Hackborn39792d22010-08-19 18:01:52 -07001363 } catch (NullPointerException e) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08001364 Slog.w(TAG, "Exception thrown sending new intent to " + this, e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001365 }
1366 }
Craig Mautner86d67a42013-05-14 10:34:38 -07001367 if (unsent) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08001368 addNewIntentLocked(rintent);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001369 }
1370 }
1371
Dianne Hackborn9622ca42012-10-23 18:56:33 -07001372 void updateOptionsLocked(ActivityOptions options) {
1373 if (options != null) {
1374 if (pendingOptions != null) {
1375 pendingOptions.abort();
1376 }
1377 pendingOptions = options;
1378 }
1379 }
1380
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001381 void applyOptionsLocked() {
George Mount2c92c972014-03-20 09:38:23 -07001382 if (pendingOptions != null
Ruben Brunkf53497c2017-03-27 20:26:17 -07001383 && pendingOptions.getAnimationType() != ANIM_SCENE_TRANSITION) {
Michael Jurka21385cd2012-05-03 10:57:31 -07001384 final int animationType = pendingOptions.getAnimationType();
1385 switch (animationType) {
Ruben Brunkf53497c2017-03-27 20:26:17 -07001386 case ANIM_CUSTOM:
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001387 service.mWindowManager.overridePendingAppTransition(
1388 pendingOptions.getPackageName(),
1389 pendingOptions.getCustomEnterResId(),
Dianne Hackborn84375872012-06-01 19:03:50 -07001390 pendingOptions.getCustomExitResId(),
1391 pendingOptions.getOnAnimationStartListener());
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001392 break;
Ruben Brunkf53497c2017-03-27 20:26:17 -07001393 case ANIM_CLIP_REVEAL:
Chet Haase10e23ab2015-02-11 15:08:38 -08001394 service.mWindowManager.overridePendingAppTransitionClipReveal(
1395 pendingOptions.getStartX(), pendingOptions.getStartY(),
1396 pendingOptions.getWidth(), pendingOptions.getHeight());
1397 if (intent.getSourceBounds() == null) {
1398 intent.setSourceBounds(new Rect(pendingOptions.getStartX(),
1399 pendingOptions.getStartY(),
1400 pendingOptions.getStartX()+pendingOptions.getWidth(),
1401 pendingOptions.getStartY()+pendingOptions.getHeight()));
1402 }
1403 break;
Ruben Brunkf53497c2017-03-27 20:26:17 -07001404 case ANIM_SCALE_UP:
Dianne Hackborneabfb3a2012-04-16 16:28:22 -07001405 service.mWindowManager.overridePendingAppTransitionScaleUp(
1406 pendingOptions.getStartX(), pendingOptions.getStartY(),
Winson Chung2e7f3bd2014-09-05 13:17:22 +02001407 pendingOptions.getWidth(), pendingOptions.getHeight());
Dianne Hackbornd367ca82012-05-07 15:49:39 -07001408 if (intent.getSourceBounds() == null) {
1409 intent.setSourceBounds(new Rect(pendingOptions.getStartX(),
1410 pendingOptions.getStartY(),
Winson Chung2e7f3bd2014-09-05 13:17:22 +02001411 pendingOptions.getStartX()+pendingOptions.getWidth(),
1412 pendingOptions.getStartY()+pendingOptions.getHeight()));
Dianne Hackbornd367ca82012-05-07 15:49:39 -07001413 }
Dianne Hackborneabfb3a2012-04-16 16:28:22 -07001414 break;
Ruben Brunkf53497c2017-03-27 20:26:17 -07001415 case ANIM_THUMBNAIL_SCALE_UP:
1416 case ANIM_THUMBNAIL_SCALE_DOWN:
Winson Chungaa7fa012017-05-24 15:50:06 -07001417 final boolean scaleUp = (animationType == ANIM_THUMBNAIL_SCALE_UP);
1418 final GraphicBuffer buffer = pendingOptions.getThumbnail();
1419 service.mWindowManager.overridePendingAppTransitionThumb(buffer,
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001420 pendingOptions.getStartX(), pendingOptions.getStartY(),
Michael Jurka21385cd2012-05-03 10:57:31 -07001421 pendingOptions.getOnAnimationStartListener(),
Michael Jurka832cb222012-04-13 09:32:47 -07001422 scaleUp);
Winson Chungf229ae52017-06-02 14:34:52 -07001423 if (intent.getSourceBounds() == null && buffer != null) {
Dianne Hackbornd367ca82012-05-07 15:49:39 -07001424 intent.setSourceBounds(new Rect(pendingOptions.getStartX(),
1425 pendingOptions.getStartY(),
Winson Chungaa7fa012017-05-24 15:50:06 -07001426 pendingOptions.getStartX() + buffer.getWidth(),
1427 pendingOptions.getStartY() + buffer.getHeight()));
Dianne Hackbornd367ca82012-05-07 15:49:39 -07001428 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001429 break;
Ruben Brunkf53497c2017-03-27 20:26:17 -07001430 case ANIM_THUMBNAIL_ASPECT_SCALE_UP:
1431 case ANIM_THUMBNAIL_ASPECT_SCALE_DOWN:
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001432 final AppTransitionAnimationSpec[] specs = pendingOptions.getAnimSpecs();
Jorim Jaggi34795e32017-05-12 17:27:46 +02001433 final IAppTransitionAnimationSpecsFuture specsFuture =
1434 pendingOptions.getSpecsFuture();
1435 if (specsFuture != null) {
1436 service.mWindowManager.overridePendingAppTransitionMultiThumbFuture(
1437 specsFuture, pendingOptions.getOnAnimationStartListener(),
1438 animationType == ANIM_THUMBNAIL_ASPECT_SCALE_UP);
1439 } else if (animationType == ANIM_THUMBNAIL_ASPECT_SCALE_DOWN
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001440 && specs != null) {
1441 service.mWindowManager.overridePendingAppTransitionMultiThumb(
Filip Gruszczynski1a5203d2015-10-29 17:43:49 -07001442 specs, pendingOptions.getOnAnimationStartListener(),
1443 pendingOptions.getAnimationFinishedListener(), false);
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001444 } else {
1445 service.mWindowManager.overridePendingAppTransitionAspectScaledThumb(
1446 pendingOptions.getThumbnail(),
1447 pendingOptions.getStartX(), pendingOptions.getStartY(),
1448 pendingOptions.getWidth(), pendingOptions.getHeight(),
1449 pendingOptions.getOnAnimationStartListener(),
Ruben Brunkf53497c2017-03-27 20:26:17 -07001450 (animationType == ANIM_THUMBNAIL_ASPECT_SCALE_UP));
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001451 if (intent.getSourceBounds() == null) {
1452 intent.setSourceBounds(new Rect(pendingOptions.getStartX(),
1453 pendingOptions.getStartY(),
1454 pendingOptions.getStartX() + pendingOptions.getWidth(),
1455 pendingOptions.getStartY() + pendingOptions.getHeight()));
1456 }
Winson Chunga4ccb862014-08-22 15:26:27 -07001457 }
1458 break;
Craig Mautner233ceee2014-05-09 17:05:11 -07001459 default:
1460 Slog.e(TAG, "applyOptionsLocked: Unknown animationType=" + animationType);
1461 break;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001462 }
1463 pendingOptions = null;
1464 }
1465 }
1466
Adam Powellcfbe9be2013-11-06 14:58:58 -08001467 ActivityOptions getOptionsForTargetActivityLocked() {
1468 return pendingOptions != null ? pendingOptions.forTargetActivity() : null;
1469 }
1470
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001471 void clearOptionsLocked() {
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001472 if (pendingOptions != null) {
1473 pendingOptions.abort();
1474 pendingOptions = null;
1475 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001476 }
1477
Dianne Hackborn9622ca42012-10-23 18:56:33 -07001478 ActivityOptions takeOptionsLocked() {
1479 ActivityOptions opts = pendingOptions;
1480 pendingOptions = null;
1481 return opts;
1482 }
1483
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001484 void removeUriPermissionsLocked() {
Dianne Hackborn7e269642010-08-25 19:50:20 -07001485 if (uriPermissions != null) {
1486 uriPermissions.removeUriPermissionsLocked();
1487 uriPermissions = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001488 }
1489 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001490
1491 void pauseKeyDispatchingLocked() {
1492 if (!keysPaused) {
1493 keysPaused = true;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001494 mWindowContainerController.pauseKeyDispatching();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001495 }
1496 }
1497
1498 void resumeKeyDispatchingLocked() {
1499 if (keysPaused) {
1500 keysPaused = false;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001501 mWindowContainerController.resumeKeyDispatching();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001502 }
1503 }
1504
Winson Chung740c3ac2014-11-12 16:14:38 -08001505 void updateThumbnailLocked(Bitmap newThumbnail, CharSequence description) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001506 if (newThumbnail != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001507 if (DEBUG_THUMBNAILS) Slog.i(TAG_THUMBNAILS,
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001508 "Setting thumbnail of " + this + " to " + newThumbnail);
Winsonc809cbb2015-11-02 12:06:15 -08001509 boolean thumbnailUpdated = task.setLastThumbnailLocked(newThumbnail);
Winson Chung096f36b2014-08-20 15:39:01 -07001510 if (thumbnailUpdated && isPersistable()) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07001511 service.notifyTaskPersisterLocked(task, false);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001512 }
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001513 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001514 task.lastDescription = description;
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001515 }
1516
Andrii Kulian21713ac2016-10-12 22:05:05 -07001517 final Bitmap screenshotActivityLocked() {
1518 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "screenshotActivityLocked: " + this);
Jorim Jaggi02886a82016-12-06 09:10:06 -08001519
1520 if (ENABLE_TASK_SNAPSHOTS) {
1521 // No need to screenshot if snapshots are enabled.
1522 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS,
1523 "\tSnapshots are enabled, abort taking screenshot");
1524 return null;
1525 }
1526
Andrii Kulian21713ac2016-10-12 22:05:05 -07001527 if (noDisplay) {
1528 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tNo display");
1529 return null;
1530 }
1531
1532 final ActivityStack stack = getStack();
Matthew Ngae1ff4f2016-11-10 15:49:14 -08001533 if (stack.isHomeOrRecentsStack()) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07001534 // This is an optimization -- since we never show Home or Recents within Recents itself,
1535 // we can just go ahead and skip taking the screenshot if this is the home stack.
Matthew Ngae1ff4f2016-11-10 15:49:14 -08001536 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, stack.getStackId() == HOME_STACK_ID ?
1537 "\tHome stack" : "\tRecents stack");
Andrii Kulian21713ac2016-10-12 22:05:05 -07001538 return null;
1539 }
1540
1541 int w = service.mThumbnailWidth;
1542 int h = service.mThumbnailHeight;
1543
1544 if (w <= 0) {
1545 Slog.e(TAG, "\tInvalid thumbnail dimensions: " + w + "x" + h);
1546 return null;
1547 }
1548
1549 if (stack.mStackId == DOCKED_STACK_ID && mStackSupervisor.mIsDockMinimized) {
1550 // When the docked stack is minimized its app windows are cropped significantly so any
1551 // screenshot taken will not display the apps contain. So, we avoid taking a screenshot
1552 // in that case.
1553 if (DEBUG_SCREENSHOTS) Slog.e(TAG, "\tIn minimized docked stack");
1554 return null;
1555 }
1556
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001557 float scale = 0;
Andrii Kulian21713ac2016-10-12 22:05:05 -07001558 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tTaking screenshot");
1559
1560 // When this flag is set, we currently take the fullscreen screenshot of the activity but
1561 // scaled to half the size. This gives us a "good-enough" fullscreen thumbnail to use within
1562 // SystemUI while keeping memory usage low.
1563 if (TAKE_FULLSCREEN_SCREENSHOTS) {
1564 w = h = -1;
1565 scale = service.mFullscreenThumbnailScale;
1566 }
1567
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001568 return mWindowContainerController.screenshotApplications(getDisplayId(), w, h, scale);
Andrii Kulian21713ac2016-10-12 22:05:05 -07001569 }
1570
Wale Ogunwaleec950642017-04-25 07:44:21 -07001571 void setDeferHidingClient(boolean deferHidingClient) {
1572 if (mDeferHidingClient == deferHidingClient) {
1573 return;
1574 }
1575 mDeferHidingClient = deferHidingClient;
1576 if (!mDeferHidingClient && !visible) {
1577 // Hiding the client is no longer deferred and the app isn't visible still, go ahead and
1578 // update the visibility.
1579 setVisibility(false);
1580 }
Wale Ogunwale89973222017-04-23 18:39:45 -07001581 }
1582
Wale Ogunwaleec950642017-04-25 07:44:21 -07001583 void setVisibility(boolean visible) {
1584 mWindowContainerController.setVisibility(visible, mDeferHidingClient);
Jorim Jaggicdfc04e2017-04-28 19:06:24 +02001585 mStackSupervisor.mActivityMetricsLogger.notifyVisibilityChanged(this, visible);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001586 }
1587
1588 // TODO: Look into merging with #setVisibility()
Wale Ogunwaleec950642017-04-25 07:44:21 -07001589 void setVisible(boolean newVisible) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07001590 visible = newVisible;
Wale Ogunwaleec950642017-04-25 07:44:21 -07001591 mDeferHidingClient = !visible && mDeferHidingClient;
Andrii Kulian21713ac2016-10-12 22:05:05 -07001592 if (!visible && mUpdateTaskThumbnailWhenHidden) {
1593 updateThumbnailLocked(screenshotActivityLocked(), null /* description */);
1594 mUpdateTaskThumbnailWhenHidden = false;
1595 }
Wale Ogunwaleec950642017-04-25 07:44:21 -07001596 setVisibility(visible);
Andrii Kulian21713ac2016-10-12 22:05:05 -07001597 mStackSupervisor.mAppVisibilitiesChangedSinceLastPause = true;
1598 }
1599
Jorim Jaggibae01b12017-04-11 16:29:10 -07001600 void notifyAppResumed(boolean wasStopped) {
1601 mWindowContainerController.notifyAppResumed(wasStopped);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001602 }
1603
1604 void notifyUnknownVisibilityLaunched() {
1605 mWindowContainerController.notifyUnknownVisibilityLaunched();
1606 }
1607
Jorim Jaggi241ae102016-11-02 21:57:33 -07001608 /**
1609 * @return true if the input activity should be made visible, ignoring any effect Keyguard
1610 * might have on the visibility
1611 *
1612 * @see {@link ActivityStack#checkKeyguardVisibility}
1613 */
Wale Ogunwalec981ad52017-06-13 11:40:06 -07001614 boolean shouldBeVisibleIgnoringKeyguard(boolean behindFullscreenActivity) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07001615 if (!okToShowLocked()) {
1616 return false;
1617 }
1618
Wale Ogunwalec981ad52017-06-13 11:40:06 -07001619 boolean isVisible = !behindFullscreenActivity || mLaunchTaskBehind;
Andrii Kulian21713ac2016-10-12 22:05:05 -07001620
1621 if (service.mSupportsLeanbackOnly && isVisible && isRecentsActivity()) {
1622 // On devices that support leanback only (Android TV), Recents activity can only be
1623 // visible if the home stack is the focused stack or we are in split-screen mode.
1624 isVisible = mStackSupervisor.getStack(DOCKED_STACK_ID) != null
1625 || mStackSupervisor.isFocusedStack(getStack());
1626 }
1627
1628 return isVisible;
1629 }
1630
1631 void makeVisibleIfNeeded(ActivityRecord starting) {
1632 // This activity is not currently visible, but is running. Tell it to become visible.
Ruben Brunkf53497c2017-03-27 20:26:17 -07001633 if (state == RESUMED || this == starting) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07001634 if (DEBUG_VISIBILITY) Slog.d(TAG_VISIBILITY,
1635 "Not making visible, r=" + this + " state=" + state + " starting=" + starting);
1636 return;
1637 }
1638
1639 // If this activity is paused, tell it to now show its window.
1640 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1641 "Making visible and scheduling visibility: " + this);
1642 final ActivityStack stack = getStack();
1643 try {
1644 if (stack.mTranslucentActivityWaiting != null) {
1645 updateOptionsLocked(returningOptions);
1646 stack.mUndrawnActivitiesBelowTopTranslucent.add(this);
1647 }
1648 setVisible(true);
1649 sleeping = false;
1650 app.pendingUiClean = true;
1651 app.thread.scheduleWindowVisibility(appToken, true /* showWindow */);
1652 // The activity may be waiting for stop, but that is no longer appropriate for it.
1653 mStackSupervisor.mStoppingActivities.remove(this);
1654 mStackSupervisor.mGoingToSleepActivities.remove(this);
1655 } catch (Exception e) {
1656 // Just skip on any failure; we'll make it visible when it next restarts.
1657 Slog.w(TAG, "Exception thrown making visibile: " + intent.getComponent(), e);
1658 }
1659 handleAlreadyVisible();
1660 }
1661
1662 boolean handleAlreadyVisible() {
1663 stopFreezingScreenLocked(false);
1664 try {
1665 if (returningOptions != null) {
Sudheer Shankacc6418f2016-10-13 12:03:44 -07001666 app.thread.scheduleOnNewActivityOptions(appToken, returningOptions.toBundle());
Andrii Kulian21713ac2016-10-12 22:05:05 -07001667 }
1668 } catch(RemoteException e) {
1669 }
Ruben Brunkf53497c2017-03-27 20:26:17 -07001670 return state == RESUMED;
Andrii Kulian21713ac2016-10-12 22:05:05 -07001671 }
1672
1673 static void activityResumedLocked(IBinder token) {
1674 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
1675 if (DEBUG_SAVED_STATE) Slog.i(TAG_STATES, "Resumed activity; dropping state of: " + r);
1676 if (r != null) {
1677 r.icicle = null;
1678 r.haveState = false;
1679 }
1680 }
1681
1682 /**
1683 * Once we know that we have asked an application to put an activity in the resumed state
1684 * (either by launching it or explicitly telling it), this function updates the rest of our
1685 * state to match that fact.
1686 */
1687 void completeResumeLocked() {
1688 final boolean wasVisible = visible;
Jorim Jaggi8d062052017-08-22 14:55:17 +02001689 setVisible(true);
Andrii Kulian21713ac2016-10-12 22:05:05 -07001690 if (!wasVisible) {
1691 // Visibility has changed, so take a note of it so we call the TaskStackChangedListener
1692 mStackSupervisor.mAppVisibilitiesChangedSinceLastPause = true;
1693 }
1694 idle = false;
1695 results = null;
1696 newIntents = null;
1697 stopped = false;
1698
1699 if (isHomeActivity()) {
1700 ProcessRecord app = task.mActivities.get(0).app;
1701 if (app != null && app != service.mHomeProcess) {
1702 service.mHomeProcess = app;
1703 }
1704 }
1705
1706 if (nowVisible) {
1707 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
1708 mStackSupervisor.reportActivityVisibleLocked(this);
Andrii Kulian21713ac2016-10-12 22:05:05 -07001709 }
1710
1711 // Schedule an idle timeout in case the app doesn't do it for us.
1712 mStackSupervisor.scheduleIdleTimeoutLocked(this);
1713
1714 mStackSupervisor.reportResumedActivityLocked(this);
1715
1716 resumeKeyDispatchingLocked();
1717 final ActivityStack stack = getStack();
1718 stack.mNoAnimActivities.clear();
1719
1720 // Mark the point when the activity is resuming
1721 // TODO: To be more accurate, the mark should be before the onCreate,
1722 // not after the onResume. But for subsequent starts, onResume is fine.
1723 if (app != null) {
1724 cpuTimeAtResume = service.mProcessCpuTracker.getCpuTimeForPid(app.pid);
1725 } else {
1726 cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1727 }
1728
1729 returningOptions = null;
chaviw59b98852017-06-13 12:05:44 -07001730
1731 if (canTurnScreenOn()) {
1732 mStackSupervisor.wakeUp("turnScreenOnFlag");
1733 } else {
1734 // If the screen is going to turn on because the caller explicitly requested it and
1735 // the keyguard is not showing don't attempt to sleep. Otherwise the Activity will
1736 // pause and then resume again later, which will result in a double life-cycle event.
David Stevens9440dc82017-03-16 19:00:20 -07001737 stack.checkReadyForSleep();
chaviw59b98852017-06-13 12:05:44 -07001738 }
Andrii Kulian21713ac2016-10-12 22:05:05 -07001739 }
1740
1741 final void activityStoppedLocked(Bundle newIcicle, PersistableBundle newPersistentState,
1742 CharSequence description) {
1743 final ActivityStack stack = getStack();
Ruben Brunkf53497c2017-03-27 20:26:17 -07001744 if (state != STOPPING) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07001745 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + this);
Ruben Brunkf53497c2017-03-27 20:26:17 -07001746 stack.mHandler.removeMessages(STOP_TIMEOUT_MSG, this);
Andrii Kulian21713ac2016-10-12 22:05:05 -07001747 return;
1748 }
1749 if (newPersistentState != null) {
1750 persistentState = newPersistentState;
1751 service.notifyTaskPersisterLocked(task, false);
1752 }
1753 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE, "Saving icicle of " + this + ": " + icicle);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001754
Andrii Kulian21713ac2016-10-12 22:05:05 -07001755 if (newIcicle != null) {
1756 // If icicle is null, this is happening due to a timeout, so we haven't really saved
1757 // the state.
1758 icicle = newIcicle;
1759 haveState = true;
1760 launchCount = 0;
1761 updateThumbnailLocked(null /* newThumbnail */, description);
1762 }
1763 if (!stopped) {
1764 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to STOPPED: " + this + " (stop complete)");
Ruben Brunkf53497c2017-03-27 20:26:17 -07001765 stack.mHandler.removeMessages(STOP_TIMEOUT_MSG, this);
Andrii Kulian21713ac2016-10-12 22:05:05 -07001766 stopped = true;
Ruben Brunkf53497c2017-03-27 20:26:17 -07001767 state = STOPPED;
Andrii Kulian21713ac2016-10-12 22:05:05 -07001768
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001769 mWindowContainerController.notifyAppStopped();
Andrii Kulian21713ac2016-10-12 22:05:05 -07001770
Andrii Kulian21713ac2016-10-12 22:05:05 -07001771 if (finishing) {
1772 clearOptionsLocked();
1773 } else {
1774 if (deferRelaunchUntilPaused) {
1775 stack.destroyActivityLocked(this, true /* removeFromApp */, "stop-config");
1776 mStackSupervisor.resumeFocusedStackTopActivityLocked();
1777 } else {
1778 mStackSupervisor.updatePreviousProcessLocked(this);
1779 }
1780 }
1781 }
1782 }
1783
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001784 void startLaunchTickingLocked() {
Jeff Sharkey5ab02432017-06-27 11:01:36 -06001785 if (Build.IS_USER) {
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001786 return;
1787 }
1788 if (launchTickTime == 0) {
1789 launchTickTime = SystemClock.uptimeMillis();
1790 continueLaunchTickingLocked();
1791 }
1792 }
1793
1794 boolean continueLaunchTickingLocked() {
Wale Ogunwale7d701172015-03-11 15:36:30 -07001795 if (launchTickTime == 0) {
1796 return false;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001797 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07001798
Andrii Kulian02b7a832016-10-06 23:11:56 -07001799 final ActivityStack stack = getStack();
Wale Ogunwale7d701172015-03-11 15:36:30 -07001800 if (stack == null) {
1801 return false;
1802 }
1803
Ruben Brunkf53497c2017-03-27 20:26:17 -07001804 Message msg = stack.mHandler.obtainMessage(LAUNCH_TICK_MSG, this);
1805 stack.mHandler.removeMessages(LAUNCH_TICK_MSG);
1806 stack.mHandler.sendMessageDelayed(msg, LAUNCH_TICK);
Wale Ogunwale7d701172015-03-11 15:36:30 -07001807 return true;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001808 }
1809
1810 void finishLaunchTickingLocked() {
1811 launchTickTime = 0;
Andrii Kulian02b7a832016-10-06 23:11:56 -07001812 final ActivityStack stack = getStack();
Wale Ogunwale7d701172015-03-11 15:36:30 -07001813 if (stack != null) {
Ruben Brunkf53497c2017-03-27 20:26:17 -07001814 stack.mHandler.removeMessages(LAUNCH_TICK_MSG);
Wale Ogunwale7d701172015-03-11 15:36:30 -07001815 }
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001816 }
1817
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001818 // IApplicationToken
1819
1820 public boolean mayFreezeScreenLocked(ProcessRecord app) {
1821 // Only freeze the screen if this activity is currently attached to
1822 // an application, and that application is not blocked or unresponding.
1823 // In any other case, we can't count on getting the screen unfrozen,
1824 // so it is best to leave as-is.
Dianne Hackborn5f4d6432010-12-21 20:40:11 -08001825 return app != null && !app.crashing && !app.notResponding;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001826 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001827
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001828 public void startFreezingScreenLocked(ProcessRecord app, int configChanges) {
1829 if (mayFreezeScreenLocked(app)) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001830 mWindowContainerController.startFreezingScreen(configChanges);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001831 }
1832 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001833
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001834 public void stopFreezingScreenLocked(boolean force) {
1835 if (force || frozenBeforeDestroy) {
1836 frozenBeforeDestroy = false;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001837 mWindowContainerController.stopFreezingScreen(force);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001838 }
1839 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001840
Jorim Jaggi4d27b842017-08-17 17:22:26 +02001841 public void reportFullyDrawnLocked(boolean restoredFromBundle) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001842 final long curTime = SystemClock.uptimeMillis();
1843 if (displayStartTime != 0) {
1844 reportLaunchTimeLocked(curTime);
1845 }
Andrii Kulian02b7a832016-10-06 23:11:56 -07001846 final ActivityStack stack = getStack();
Wale Ogunwale7d701172015-03-11 15:36:30 -07001847 if (fullyDrawnStartTime != 0 && stack != null) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001848 final long thisTime = curTime - fullyDrawnStartTime;
1849 final long totalTime = stack.mFullyDrawnStartTime != 0
1850 ? (curTime - stack.mFullyDrawnStartTime) : thisTime;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07001851 if (SHOW_ACTIVITY_START_TIME) {
Ruben Brunkf53497c2017-03-27 20:26:17 -07001852 Trace.asyncTraceEnd(TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
1853 EventLog.writeEvent(AM_ACTIVITY_FULLY_DRAWN_TIME,
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001854 userId, System.identityHashCode(this), shortComponentName,
1855 thisTime, totalTime);
1856 StringBuilder sb = service.mStringBuilder;
1857 sb.setLength(0);
1858 sb.append("Fully drawn ");
1859 sb.append(shortComponentName);
1860 sb.append(": ");
1861 TimeUtils.formatDuration(thisTime, sb);
1862 if (thisTime != totalTime) {
1863 sb.append(" (total ");
1864 TimeUtils.formatDuration(totalTime, sb);
1865 sb.append(")");
1866 }
Wale Ogunwalee23149f2015-03-06 15:39:44 -08001867 Log.i(TAG, sb.toString());
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001868 }
1869 if (totalTime > 0) {
Adam Lesinski0debc9a2014-07-16 19:09:13 -07001870 //service.mUsageStatsService.noteFullyDrawnTime(realActivity, (int) totalTime);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001871 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001872 stack.mFullyDrawnStartTime = 0;
1873 }
Jorim Jaggi4d27b842017-08-17 17:22:26 +02001874 mStackSupervisor.mActivityMetricsLogger.logAppTransitionReportedDrawn(this,
1875 restoredFromBundle);
Wale Ogunwale7d701172015-03-11 15:36:30 -07001876 fullyDrawnStartTime = 0;
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001877 }
1878
1879 private void reportLaunchTimeLocked(final long curTime) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07001880 final ActivityStack stack = getStack();
Wale Ogunwale7d701172015-03-11 15:36:30 -07001881 if (stack == null) {
1882 return;
1883 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001884 final long thisTime = curTime - displayStartTime;
1885 final long totalTime = stack.mLaunchStartTime != 0
1886 ? (curTime - stack.mLaunchStartTime) : thisTime;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07001887 if (SHOW_ACTIVITY_START_TIME) {
Ruben Brunkf53497c2017-03-27 20:26:17 -07001888 Trace.asyncTraceEnd(TRACE_TAG_ACTIVITY_MANAGER, "launching: " + packageName, 0);
1889 EventLog.writeEvent(AM_ACTIVITY_LAUNCH_TIME,
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001890 userId, System.identityHashCode(this), shortComponentName,
1891 thisTime, totalTime);
1892 StringBuilder sb = service.mStringBuilder;
1893 sb.setLength(0);
1894 sb.append("Displayed ");
1895 sb.append(shortComponentName);
1896 sb.append(": ");
1897 TimeUtils.formatDuration(thisTime, sb);
1898 if (thisTime != totalTime) {
1899 sb.append(" (total ");
1900 TimeUtils.formatDuration(totalTime, sb);
1901 sb.append(")");
1902 }
Wale Ogunwalee23149f2015-03-06 15:39:44 -08001903 Log.i(TAG, sb.toString());
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001904 }
1905 mStackSupervisor.reportActivityLaunchedLocked(false, this, thisTime, totalTime);
1906 if (totalTime > 0) {
Adam Lesinski0debc9a2014-07-16 19:09:13 -07001907 //service.mUsageStatsService.noteLaunchTime(realActivity, (int)totalTime);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001908 }
1909 displayStartTime = 0;
1910 stack.mLaunchStartTime = 0;
1911 }
1912
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001913 @Override
Sudheer Shankac766db02017-06-12 10:37:29 -07001914 public void onStartingWindowDrawn(long timestamp) {
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001915 synchronized (service) {
Sudheer Shankac766db02017-06-12 10:37:29 -07001916 mStackSupervisor.mActivityMetricsLogger.notifyStartingWindowDrawn(
1917 getStackId(), timestamp);
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001918 }
1919 }
1920
1921 @Override
Sudheer Shankac766db02017-06-12 10:37:29 -07001922 public void onWindowsDrawn(long timestamp) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001923 synchronized (service) {
Sudheer Shankac766db02017-06-12 10:37:29 -07001924 mStackSupervisor.mActivityMetricsLogger.notifyWindowsDrawn(getStackId(), timestamp);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001925 if (displayStartTime != 0) {
Sudheer Shankac766db02017-06-12 10:37:29 -07001926 reportLaunchTimeLocked(timestamp);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001927 }
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001928 mStackSupervisor.sendWaitingVisibleReportLocked(this);
1929 startTime = 0;
1930 finishLaunchTickingLocked();
1931 if (task != null) {
1932 task.hasBeenVisible = true;
1933 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001934 }
1935 }
1936
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001937 @Override
1938 public void onWindowsVisible() {
1939 synchronized (service) {
1940 mStackSupervisor.reportActivityVisibleLocked(this);
1941 if (DEBUG_SWITCH) Log.v(TAG_SWITCH, "windowsVisibleLocked(): " + this);
1942 if (!nowVisible) {
1943 nowVisible = true;
1944 lastVisibleTime = SystemClock.uptimeMillis();
Bryce Leeb7c9b802017-05-02 14:20:24 -07001945 if (idle || mStackSupervisor.isStoppingNoHistoryActivity()) {
1946 // If this activity was already idle or there is an activity that must be
1947 // stopped immediately after visible, then we now need to make sure we perform
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001948 // the full stop of any activities that are waiting to do so. This is because
1949 // we won't do that while they are still waiting for this one to become visible.
Bryce Lee4a194382017-04-04 14:32:48 -07001950 final int size = mStackSupervisor.mActivitiesWaitingForVisibleActivity.size();
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001951 if (size > 0) {
1952 for (int i = 0; i < size; i++) {
Bryce Lee4a194382017-04-04 14:32:48 -07001953 final ActivityRecord r =
1954 mStackSupervisor.mActivitiesWaitingForVisibleActivity.get(i);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001955 if (DEBUG_SWITCH) Log.v(TAG_SWITCH, "Was waiting for visible: " + r);
1956 }
Bryce Lee4a194382017-04-04 14:32:48 -07001957 mStackSupervisor.mActivitiesWaitingForVisibleActivity.clear();
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001958 mStackSupervisor.scheduleIdleLocked();
1959 }
Bryce Leeb7c9b802017-05-02 14:20:24 -07001960 } else {
1961 // Instead of doing the full stop routine here, let's just hide any activities
1962 // we now can, and let them stop when the normal idle happens.
1963 mStackSupervisor.processStoppingActivitiesLocked(null /* idleActivity */,
1964 false /* remove */, true /* processPausingActivities */);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001965 }
1966 service.scheduleAppGcsLocked();
1967 }
1968 }
1969 }
1970
1971 @Override
1972 public void onWindowsGone() {
1973 synchronized (service) {
1974 if (DEBUG_SWITCH) Log.v(TAG_SWITCH, "windowsGone(): " + this);
1975 nowVisible = false;
1976 }
1977 }
1978
1979 @Override
Wale Ogunwale7402ddf2017-03-29 12:58:24 -07001980 public boolean keyDispatchingTimedOut(String reason, int windowPid) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001981 ActivityRecord anrActivity;
1982 ProcessRecord anrApp;
Wale Ogunwale7402ddf2017-03-29 12:58:24 -07001983 boolean windowFromSameProcessAsActivity;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001984 synchronized (service) {
1985 anrActivity = getWaitingHistoryRecordLocked();
1986 anrApp = app;
Brian Carlstrom7b0f2e82017-03-31 00:24:18 -07001987 windowFromSameProcessAsActivity =
1988 app == null || app.pid == windowPid || windowPid == -1;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001989 }
Wale Ogunwale7402ddf2017-03-29 12:58:24 -07001990 if (windowFromSameProcessAsActivity) {
1991 return service.inputDispatchingTimedOut(anrApp, anrActivity, this, false, reason);
1992 } else {
1993 // In this case another process added windows using this activity token. So, we call the
1994 // generic service input dispatch timed out method so that the right process is blamed.
1995 return service.inputDispatchingTimedOut(windowPid, false /* aboveSystem */, reason) < 0;
1996 }
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001997 }
1998
1999 private ActivityRecord getWaitingHistoryRecordLocked() {
riddle_hsudb46d6b2015-04-01 18:58:07 +08002000 // First find the real culprit... if this activity is waiting for
2001 // another activity to start or has stopped, then the key dispatching
2002 // timeout should not be caused by this.
Bryce Lee4a194382017-04-04 14:32:48 -07002003 if (mStackSupervisor.mActivitiesWaitingForVisibleActivity.contains(this) || stopped) {
Craig Mautner8f2adcb2014-04-07 22:21:33 +00002004 final ActivityStack stack = mStackSupervisor.getFocusedStack();
riddle_hsudb46d6b2015-04-01 18:58:07 +08002005 // Try to use the one which is closest to top.
2006 ActivityRecord r = stack.mResumedActivity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002007 if (r == null) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002008 r = stack.mPausingActivity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002009 }
riddle_hsudb46d6b2015-04-01 18:58:07 +08002010 if (r != null) {
2011 return r;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002012 }
2013 }
riddle_hsudb46d6b2015-04-01 18:58:07 +08002014 return this;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002015 }
2016
Chong Zhang87761972016-08-22 13:53:24 -07002017 /** Checks whether the activity should be shown for current user. */
2018 public boolean okToShowLocked() {
Bryce Lee8558ec72017-08-17 15:37:26 -07002019 // We cannot show activities when the device is locked and the application is not
2020 // encryption aware.
2021 if (!StorageManager.isUserKeyUnlocked(userId)
2022 && !info.applicationInfo.isEncryptionAware()) {
2023 return false;
2024 }
2025
Chong Zhang87761972016-08-22 13:53:24 -07002026 return (info.flags & FLAG_SHOW_FOR_ALL_USERS) != 0
2027 || (mStackSupervisor.isCurrentProfileLocked(userId)
Fyodor Kupolovce43b1b2017-08-09 10:32:02 -07002028 && service.mUserController.isUserRunningLocked(userId, 0 /* flags */));
Chong Zhang87761972016-08-22 13:53:24 -07002029 }
2030
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002031 /**
2032 * This method will return true if the activity is either visible, is becoming visible, is
2033 * currently pausing, or is resumed.
2034 */
2035 public boolean isInterestingToUserLocked() {
Ruben Brunkf53497c2017-03-27 20:26:17 -07002036 return visible || nowVisible || state == PAUSING ||
2037 state == RESUMED;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002038 }
2039
Wale Ogunwale3e997362016-09-06 10:37:56 -07002040 void setSleeping(boolean _sleeping) {
2041 setSleeping(_sleeping, false);
2042 }
2043
2044 void setSleeping(boolean _sleeping, boolean force) {
2045 if (!force && sleeping == _sleeping) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002046 return;
2047 }
2048 if (app != null && app.thread != null) {
2049 try {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002050 app.thread.scheduleSleeping(appToken, _sleeping);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002051 if (_sleeping && !mStackSupervisor.mGoingToSleepActivities.contains(this)) {
2052 mStackSupervisor.mGoingToSleepActivities.add(this);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002053 }
2054 sleeping = _sleeping;
2055 } catch (RemoteException e) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002056 Slog.w(TAG, "Exception thrown when sleeping: " + intent.getComponent(), e);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002057 }
2058 }
2059 }
Craig Mautnerf81b90872013-02-26 13:02:43 -08002060
Craig Mautnerd2328952013-03-05 12:46:26 -08002061 static int getTaskForActivityLocked(IBinder token, boolean onlyRoot) {
Wale Ogunwale7d701172015-03-11 15:36:30 -07002062 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautnerd2328952013-03-05 12:46:26 -08002063 if (r == null) {
Wale Ogunwale18795a22014-12-03 11:38:33 -08002064 return INVALID_TASK_ID;
Craig Mautnerd2328952013-03-05 12:46:26 -08002065 }
2066 final TaskRecord task = r.task;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002067 final int activityNdx = task.mActivities.indexOf(r);
2068 if (activityNdx < 0 || (onlyRoot && activityNdx > task.findEffectiveRootIndex())) {
Wale Ogunwale18795a22014-12-03 11:38:33 -08002069 return INVALID_TASK_ID;
Craig Mautnerd2328952013-03-05 12:46:26 -08002070 }
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002071 return task.taskId;
Craig Mautnerd2328952013-03-05 12:46:26 -08002072 }
2073
2074 static ActivityRecord isInStackLocked(IBinder token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -07002075 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Andrii Kulian02b7a832016-10-06 23:11:56 -07002076 return (r != null) ? r.getStack().isInStackLocked(r) : null;
Craig Mautnerd2328952013-03-05 12:46:26 -08002077 }
2078
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07002079 static ActivityStack getStackLocked(IBinder token) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002080 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
2081 if (r != null) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07002082 return r.getStack();
Craig Mautnerd2328952013-03-05 12:46:26 -08002083 }
2084 return null;
2085 }
2086
Andrii Kulian5406e7a2016-10-21 11:55:23 -07002087 /**
2088 * @return display id to which this record is attached, -1 if not attached.
2089 */
2090 int getDisplayId() {
2091 final ActivityStack stack = getStack();
2092 if (stack == null) {
2093 return -1;
2094 }
2095 return stack.mDisplayId;
2096 }
2097
Dianne Hackborn89ad4562014-08-24 16:45:38 -07002098 final boolean isDestroyable() {
Ruben Brunkf53497c2017-03-27 20:26:17 -07002099 if (finishing || app == null || state == DESTROYING
2100 || state == DESTROYED) {
Dianne Hackborn89ad4562014-08-24 16:45:38 -07002101 // This would be redundant.
2102 return false;
2103 }
Andrii Kulian02b7a832016-10-06 23:11:56 -07002104 final ActivityStack stack = getStack();
2105 if (stack == null || this == stack.mResumedActivity || this == stack.mPausingActivity
2106 || !haveState || !stopped) {
Dianne Hackborn89ad4562014-08-24 16:45:38 -07002107 // We're not ready for this kind of thing.
2108 return false;
2109 }
2110 if (visible) {
2111 // The user would notice this!
2112 return false;
2113 }
2114 return true;
2115 }
2116
Winson Chung3bad5cc02014-08-19 17:44:32 -07002117 private static String createImageFilename(long createTime, int taskId) {
2118 return String.valueOf(taskId) + ACTIVITY_ICON_SUFFIX + createTime +
Ruben Brunkf53497c2017-03-27 20:26:17 -07002119 IMAGE_EXTENSION;
Craig Mautnerc0ffce52014-07-01 12:38:52 -07002120 }
2121
Craig Mautner648f69b2014-09-18 14:16:26 -07002122 void setTaskDescription(TaskDescription _taskDescription) {
2123 Bitmap icon;
2124 if (_taskDescription.getIconFilename() == null &&
2125 (icon = _taskDescription.getIcon()) != null) {
2126 final String iconFilename = createImageFilename(createTime, task.taskId);
Winson Chungc8408b82017-01-25 17:58:56 -08002127 final File iconFile = new File(TaskPersister.getUserImagesDir(task.userId),
2128 iconFilename);
Suprabh Shukla23593142015-11-03 17:31:15 -08002129 final String iconFilePath = iconFile.getAbsolutePath();
Suprabh Shukla09a88f52015-12-02 14:36:31 -08002130 service.mRecentTasks.saveImage(icon, iconFilePath);
Suprabh Shukla23593142015-11-03 17:31:15 -08002131 _taskDescription.setIconFilename(iconFilePath);
Craig Mautner648f69b2014-09-18 14:16:26 -07002132 }
2133 taskDescription = _taskDescription;
2134 }
2135
Amith Yamasani0af6fa72016-01-17 15:36:19 -08002136 void setVoiceSessionLocked(IVoiceInteractionSession session) {
2137 voiceSession = session;
2138 pendingVoiceInteractionStart = false;
2139 }
2140
2141 void clearVoiceSessionLocked() {
2142 voiceSession = null;
2143 pendingVoiceInteractionStart = false;
2144 }
2145
Jorim Jaggi02886a82016-12-06 09:10:06 -08002146 void showStartingWindow(ActivityRecord prev, boolean newTask, boolean taskSwitch) {
Jorim Jaggi42befc62017-06-13 11:54:04 -07002147 showStartingWindow(prev, newTask, taskSwitch, false /* fromRecents */);
2148 }
2149
2150 void showStartingWindow(ActivityRecord prev, boolean newTask, boolean taskSwitch,
2151 boolean fromRecents) {
Jorim Jaggi70176432017-01-18 12:52:13 +01002152 if (mWindowContainerController == null) {
2153 return;
2154 }
Wale Ogunwale19866e22017-04-19 06:05:13 -07002155 if (mTaskOverlay) {
2156 // We don't show starting window for overlay activities.
2157 return;
2158 }
2159
Wale Ogunwale3b232392016-05-13 15:37:13 -07002160 final CompatibilityInfo compatInfo =
2161 service.compatibilityInfoForPackageLocked(info.applicationInfo);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002162 final boolean shown = mWindowContainerController.addStartingWindow(packageName, theme,
2163 compatInfo, nonLocalizedLabel, labelRes, icon, logo, windowFlags,
Jorim Jaggibae01b12017-04-11 16:29:10 -07002164 prev != null ? prev.appToken : null, newTask, taskSwitch, isProcessRunning(),
Jorim Jaggi70aa4d12017-05-15 00:05:54 +02002165 allowTaskSnapshot(),
Jorim Jaggi42befc62017-06-13 11:54:04 -07002166 state.ordinal() >= RESUMED.ordinal() && state.ordinal() <= STOPPED.ordinal(),
2167 fromRecents);
Wale Ogunwale3b232392016-05-13 15:37:13 -07002168 if (shown) {
2169 mStartingWindowState = STARTING_WINDOW_SHOWN;
2170 }
2171 }
2172
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002173 void removeOrphanedStartingWindow(boolean behindFullscreenActivity) {
Jorim Jaggicb956052017-05-09 16:27:24 +02002174 if (mStartingWindowState == STARTING_WINDOW_SHOWN && behindFullscreenActivity) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002175 if (DEBUG_VISIBILITY) Slog.w(TAG_VISIBILITY, "Found orphaned starting window " + this);
2176 mStartingWindowState = STARTING_WINDOW_REMOVED;
Jorim Jaggi19be6052017-08-03 18:33:43 +02002177 mWindowContainerController.removeStartingWindow();
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002178 }
2179 }
2180
2181 int getRequestedOrientation() {
2182 return mWindowContainerController.getOrientation();
2183 }
2184
Andrii Kulian5406e7a2016-10-21 11:55:23 -07002185 void setRequestedOrientation(int requestedOrientation) {
Bryce Lee39791592017-04-26 09:29:12 -07002186 if (ActivityInfo.isFixedOrientation(requestedOrientation) && !fullscreen
Bryce Lee0e7b7c92017-08-10 14:59:00 -07002187 && appInfo.targetSdkVersion >= O_MR1) {
Bryce Lee39791592017-04-26 09:29:12 -07002188 throw new IllegalStateException("Only fullscreen activities can request orientation");
2189 }
2190
Andrii Kulian5406e7a2016-10-21 11:55:23 -07002191 final int displayId = getDisplayId();
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002192 final Configuration displayConfig =
2193 mStackSupervisor.getDisplayOverrideConfiguration(displayId);
2194
2195 final Configuration config = mWindowContainerController.setOrientation(requestedOrientation,
2196 displayId, displayConfig, mayFreezeScreenLocked(app));
Andrii Kulian5406e7a2016-10-21 11:55:23 -07002197 if (config != null) {
2198 frozenBeforeDestroy = true;
2199 if (!service.updateDisplayOverrideConfigurationLocked(config, this,
2200 false /* deferResume */, displayId)) {
2201 mStackSupervisor.resumeFocusedStackTopActivityLocked();
2202 }
2203 }
Yorke Leebd54c2a2016-10-25 13:49:23 -07002204 service.mTaskChangeNotificationController.notifyActivityRequestedOrientationChanged(
2205 task.taskId, requestedOrientation);
Andrii Kulian5406e7a2016-10-21 11:55:23 -07002206 }
2207
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01002208 void setDisablePreviewScreenshots(boolean disable) {
2209 mWindowContainerController.setDisablePreviewScreenshots(disable);
2210 }
2211
Bryce Leea163b762017-01-24 11:05:01 -08002212 /**
2213 * Set the last reported global configuration to the client. Should be called whenever a new
2214 * global configuration is sent to the client for this activity.
2215 */
2216 void setLastReportedGlobalConfiguration(@NonNull Configuration config) {
Wale Ogunwalee610d3d2017-04-25 10:23:48 -07002217 mLastReportedConfiguration.setGlobalConfiguration(config);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002218 }
2219
Bryce Leea163b762017-01-24 11:05:01 -08002220 /**
Wale Ogunwalee610d3d2017-04-25 10:23:48 -07002221 * Set the last reported configuration to the client. Should be called whenever
Bryce Leea163b762017-01-24 11:05:01 -08002222 * a new merged configuration is sent to the client for this activity.
2223 */
Wale Ogunwalee610d3d2017-04-25 10:23:48 -07002224 void setLastReportedConfiguration(@NonNull MergedConfiguration config) {
Bryce Lee8104e7a2017-08-17 09:16:03 -07002225 setLastReportedConfiguration(config.getGlobalConfiguration(),
2226 config.getOverrideConfiguration());
Bryce Leea163b762017-01-24 11:05:01 -08002227 }
2228
Bryce Lee8104e7a2017-08-17 09:16:03 -07002229 void setLastReportedConfiguration(Configuration global, Configuration override) {
2230 mLastReportedConfiguration.setConfiguration(global, override);
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002231 }
2232
2233 @Override
Wale Ogunwale98d62312017-07-12 09:24:56 -07002234 public void onOverrideConfigurationChanged(Configuration newConfig) {
Wale Ogunwaled4b1d1e2017-04-10 06:35:59 -07002235 final Configuration currentConfig = getOverrideConfiguration();
2236 if (currentConfig.equals(newConfig)) {
2237 return;
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002238 }
Wale Ogunwaled4b1d1e2017-04-10 06:35:59 -07002239 super.onOverrideConfigurationChanged(newConfig);
2240 if (mWindowContainerController == null) {
2241 return;
2242 }
2243 mWindowContainerController.onOverrideConfigurationChanged(newConfig, mBounds);
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002244 }
2245
2246 // TODO(b/36505427): Consider moving this method and similar ones to ConfigurationContainer.
Wale Ogunwalee610d3d2017-04-25 10:23:48 -07002247 private void updateOverrideConfiguration() {
2248 mTmpConfig.unset();
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002249 computeBounds(mTmpBounds);
2250 if (mTmpBounds.equals(mBounds)) {
Wale Ogunwaled4b1d1e2017-04-10 06:35:59 -07002251 final ActivityStack stack = getStack();
2252 if (!mBounds.isEmpty() || task == null || stack == null || !task.mFullscreen) {
2253 // We don't want to influence the override configuration here if our task is in
2254 // multi-window mode or there is a bounds specified to calculate the override
2255 // config. In both of this cases the app should be compatible with whatever the
2256 // current configuration is or will be.
2257 return;
2258 }
2259
2260 // Currently limited to the top activity for now to avoid situations where non-top
2261 // visible activity and top might have conflicting requests putting the non-top activity
2262 // windows in an odd state.
2263 final ActivityRecord top = mStackSupervisor.topRunningActivityLocked();
2264 final Configuration parentConfig = getParent().getConfiguration();
2265 if (top != this || isConfigurationCompatible(parentConfig)) {
2266 onOverrideConfigurationChanged(mTmpConfig);
2267 } else if (isConfigurationCompatible(
2268 mLastReportedConfiguration.getMergedConfiguration())) {
2269 onOverrideConfigurationChanged(mLastReportedConfiguration.getMergedConfiguration());
2270 }
Wale Ogunwalee610d3d2017-04-25 10:23:48 -07002271 return;
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002272 }
Wale Ogunwalee610d3d2017-04-25 10:23:48 -07002273
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002274 mBounds.set(mTmpBounds);
2275 // Bounds changed...update configuration to match.
Wale Ogunwalee610d3d2017-04-25 10:23:48 -07002276 if (!mBounds.isEmpty()) {
2277 task.computeOverrideConfiguration(mTmpConfig, mBounds, null /* insetBounds */,
2278 false /* overrideWidth */, false /* overrideHeight */);
2279 }
2280 onOverrideConfigurationChanged(mTmpConfig);
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002281 }
2282
Wale Ogunwaled4b1d1e2017-04-10 06:35:59 -07002283 /** Returns true if the configuration is compatible with this activity. */
Wale Ogunwale42f07d92017-05-01 21:32:58 -07002284 boolean isConfigurationCompatible(Configuration config) {
Wale Ogunwaled4b1d1e2017-04-10 06:35:59 -07002285 final int orientation = mWindowContainerController != null
2286 ? mWindowContainerController.getOrientation() : info.screenOrientation;
2287 if (isFixedOrientationPortrait(orientation)
2288 && config.orientation != ORIENTATION_PORTRAIT) {
2289 return false;
2290 }
2291 if (isFixedOrientationLandscape(orientation)
2292 && config.orientation != ORIENTATION_LANDSCAPE) {
2293 return false;
2294 }
2295 return true;
2296 }
2297
Bryce Lee7566d762017-03-30 09:34:15 -07002298 /**
2299 * Computes the bounds to fit the Activity within the bounds of the {@link Configuration}.
2300 */
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002301 // TODO(b/36505427): Consider moving this method and similar ones to ConfigurationContainer.
2302 private void computeBounds(Rect outBounds) {
2303 outBounds.setEmpty();
2304 final float maxAspectRatio = info.maxAspectRatio;
2305 final ActivityStack stack = getStack();
Bryce Leee5ab4502017-07-11 08:58:05 -07002306 if (task == null || stack == null || !task.mFullscreen || maxAspectRatio == 0
2307 || isInVrUiMode(getConfiguration())) {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002308 // We don't set override configuration if that activity task isn't fullscreen. I.e. the
2309 // activity is in multi-window mode. Or, there isn't a max aspect ratio specified for
Bryce Leee5ab4502017-07-11 08:58:05 -07002310 // the activity. This is indicated by an empty {@link outBounds}. We also don't set it
2311 // if we are in VR mode.
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002312 return;
2313 }
2314
Bryce Lee7566d762017-03-30 09:34:15 -07002315 // We must base this on the parent configuration, because we set our override
2316 // configuration's appBounds based on the result of this method. If we used our own
2317 // configuration, it would be influenced by past invocations.
Wale Ogunwale822e5122017-07-26 06:02:24 -07002318 final Rect appBounds = getParent().getConfiguration().windowConfiguration.getAppBounds();
2319 final int containingAppWidth = appBounds.width();
2320 final int containingAppHeight = appBounds.height();
Bryce Lee7566d762017-03-30 09:34:15 -07002321 int maxActivityWidth = containingAppWidth;
2322 int maxActivityHeight = containingAppHeight;
2323
2324 if (containingAppWidth < containingAppHeight) {
Wale Ogunwalee610d3d2017-04-25 10:23:48 -07002325 // Width is the shorter side, so we use that to figure-out what the max. height
2326 // should be given the aspect ratio.
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002327 maxActivityHeight = (int) ((maxActivityWidth * maxAspectRatio) + 0.5f);
2328 } else {
Wale Ogunwalee610d3d2017-04-25 10:23:48 -07002329 // Height is the shorter side, so we use that to figure-out what the max. width
2330 // should be given the aspect ratio.
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002331 maxActivityWidth = (int) ((maxActivityHeight * maxAspectRatio) + 0.5f);
2332 }
2333
Bryce Lee7566d762017-03-30 09:34:15 -07002334 if (containingAppWidth <= maxActivityWidth && containingAppHeight <= maxActivityHeight) {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002335 // The display matches or is less than the activity aspect ratio, so nothing else to do.
Bryce Lee7566d762017-03-30 09:34:15 -07002336 // Return the existing bounds. If this method is running for the first time,
2337 // {@link mBounds} will be empty (representing no override). If the method has run
2338 // before, then effect of {@link mBounds} will already have been applied to the
2339 // value returned from {@link getConfiguration}. Refer to
2340 // {@link TaskRecord#computeOverrideConfiguration}.
2341 outBounds.set(mBounds);
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002342 return;
2343 }
2344
2345 // Compute configuration based on max supported width and height.
2346 outBounds.set(0, 0, maxActivityWidth, maxActivityHeight);
Andrii Kulian3a1619d2017-07-07 14:38:09 -07002347 // Position the activity frame on the opposite side of the nav bar.
2348 final int navBarPosition = service.mWindowManager.getNavBarPosition();
Wale Ogunwale822e5122017-07-26 06:02:24 -07002349 final int left = navBarPosition == NAV_BAR_LEFT ? appBounds.right - outBounds.width() : 0;
Andrii Kulian3a1619d2017-07-07 14:38:09 -07002350 outBounds.offsetTo(left, 0 /* top */);
2351 }
2352
2353 /** Get bounds of the activity. */
2354 @VisibleForTesting
2355 Rect getBounds() {
2356 return new Rect(mBounds);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002357 }
2358
2359 /**
2360 * Make sure the given activity matches the current configuration. Returns false if the activity
2361 * had to be destroyed. Returns true if the configuration is the same, or the activity will
2362 * remain running as-is for whatever reason. Ensures the HistoryRecord is updated with the
2363 * correct configuration and all other bookkeeping is handled.
2364 */
2365 boolean ensureActivityConfigurationLocked(int globalChanges, boolean preserveWindow) {
2366 final ActivityStack stack = getStack();
2367 if (stack.mConfigWillChange) {
2368 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2369 "Skipping config check (will change): " + this);
2370 return true;
2371 }
2372
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002373 // We don't worry about activities that are finishing.
2374 if (finishing) {
2375 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2376 "Configuration doesn't matter in finishing " + this);
2377 stopFreezingScreenLocked(false);
2378 return true;
2379 }
2380
Wale Ogunwale9b7a8272017-04-10 08:05:41 -07002381 // Skip updating configuration for activity that are stopping or stopped.
2382 if (state == STOPPING || state == STOPPED) {
2383 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2384 "Skipping config check stopped or stopping: " + this);
2385 return true;
2386 }
2387
Wale Ogunwaleea3d3fd2017-05-01 07:41:08 -07002388 // TODO: We should add ActivityRecord.shouldBeVisible() that checks if the activity should
2389 // be visible based on the stack, task, and lockscreen state and use that here instead. The
2390 // method should be based on the logic in ActivityStack.ensureActivitiesVisibleLocked().
Wale Ogunwale9b7a8272017-04-10 08:05:41 -07002391 // Skip updating configuration for activity is a stack that shouldn't be visible.
2392 if (stack.shouldBeVisible(null /* starting */) == STACK_INVISIBLE) {
2393 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2394 "Skipping config check invisible stack: " + this);
2395 return true;
2396 }
2397
Andrii Kulian21713ac2016-10-12 22:05:05 -07002398 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2399 "Ensuring correct configuration: " + this);
2400
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002401 final int newDisplayId = getDisplayId();
2402 final boolean displayChanged = mLastReportedDisplayId != newDisplayId;
2403 if (displayChanged) {
2404 mLastReportedDisplayId = newDisplayId;
2405 }
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002406 // TODO(b/36505427): Is there a better place to do this?
2407 updateOverrideConfiguration();
2408
Winson Chungbdc646f2017-02-13 12:12:22 -08002409 // Short circuit: if the two full configurations are equal (the common case), then there is
2410 // nothing to do. We test the full configuration instead of the global and merged override
2411 // configurations because there are cases (like moving a task to the pinned stack) where
2412 // the combine configurations are equal, but would otherwise differ in the override config
Wale Ogunwalee610d3d2017-04-25 10:23:48 -07002413 mTmpConfig.setTo(mLastReportedConfiguration.getMergedConfiguration());
2414 if (getConfiguration().equals(mTmpConfig) && !forceNewConfig && !displayChanged) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07002415 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002416 "Configuration & display unchanged in " + this);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002417 return true;
2418 }
2419
2420 // Okay we now are going to make this activity have the new config.
2421 // But then we need to figure out how it needs to deal with that.
Andrii Kulianb43be0a2017-03-02 17:29:40 -08002422
2423 // Find changes between last reported merged configuration and the current one. This is used
2424 // to decide whether to relaunch an activity or just report a configuration change.
Wale Ogunwalee610d3d2017-04-25 10:23:48 -07002425 final int changes = getConfigurationChanges(mTmpConfig);
Ruben Brunkf64af332017-03-22 22:03:25 -07002426
Andrii Kulianb43be0a2017-03-02 17:29:40 -08002427 // Update last reported values.
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002428 final Configuration newMergedOverrideConfig = getMergedOverrideConfiguration();
Bryce Lee8104e7a2017-08-17 09:16:03 -07002429
2430 setLastReportedConfiguration(service.getGlobalConfiguration(), newMergedOverrideConfig);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002431
Andrii Kulian21713ac2016-10-12 22:05:05 -07002432 if (changes == 0 && !forceNewConfig) {
2433 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2434 "Configuration no differences in " + this);
2435 // There are no significant differences, so we won't relaunch but should still deliver
2436 // the new configuration to the client process.
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002437 if (displayChanged) {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002438 scheduleActivityMovedToDisplay(newDisplayId, newMergedOverrideConfig);
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002439 } else {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002440 scheduleConfigurationChanged(newMergedOverrideConfig);
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002441 }
Andrii Kulian21713ac2016-10-12 22:05:05 -07002442 return true;
2443 }
2444
2445 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Andrii Kulianb43be0a2017-03-02 17:29:40 -08002446 "Configuration changes for " + this + ", allChanges="
Andrii Kulian21713ac2016-10-12 22:05:05 -07002447 + Configuration.configurationDiffToString(changes));
2448
2449 // If the activity isn't currently running, just leave the new configuration and it will
2450 // pick that up next time it starts.
2451 if (app == null || app.thread == null) {
2452 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2453 "Configuration doesn't matter not running " + this);
2454 stopFreezingScreenLocked(false);
2455 forceNewConfig = false;
2456 return true;
2457 }
2458
2459 // Figure out how to handle the changes between the configurations.
2460 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2461 "Checking to restart " + info.name + ": changed=0x"
2462 + Integer.toHexString(changes) + ", handles=0x"
2463 + Integer.toHexString(info.getRealConfigChanged())
Wale Ogunwalee610d3d2017-04-25 10:23:48 -07002464 + ", mLastReportedConfiguration=" + mLastReportedConfiguration);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002465
Wale Ogunwalee610d3d2017-04-25 10:23:48 -07002466 if (shouldRelaunchLocked(changes, mTmpConfig) || forceNewConfig) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07002467 // Aha, the activity isn't handling the change, so DIE DIE DIE.
2468 configChangeFlags |= changes;
2469 startFreezingScreenLocked(app, globalChanges);
2470 forceNewConfig = false;
2471 preserveWindow &= isResizeOnlyChange(changes);
2472 if (app == null || app.thread == null) {
2473 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2474 "Config is destroying non-running " + this);
2475 stack.destroyActivityLocked(this, true, "config");
Ruben Brunkf53497c2017-03-27 20:26:17 -07002476 } else if (state == PAUSING) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07002477 // A little annoying: we are waiting for this activity to finish pausing. Let's not
2478 // do anything now, but just flag that it needs to be restarted when done pausing.
2479 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2480 "Config is skipping already pausing " + this);
2481 deferRelaunchUntilPaused = true;
2482 preserveWindowOnDeferredRelaunch = preserveWindow;
2483 return true;
Ruben Brunkf53497c2017-03-27 20:26:17 -07002484 } else if (state == RESUMED) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07002485 // Try to optimize this case: the configuration is changing and we need to restart
2486 // the top, resumed activity. Instead of doing the normal handshaking, just say
2487 // "restart!".
2488 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2489 "Config is relaunching resumed " + this);
2490
2491 if (DEBUG_STATES && !visible) {
2492 Slog.v(TAG_STATES, "Config is relaunching resumed invisible activity " + this
2493 + " called by " + Debug.getCallers(4));
2494 }
2495
2496 relaunchActivityLocked(true /* andResume */, preserveWindow);
2497 } else {
2498 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
2499 "Config is relaunching non-resumed " + this);
2500 relaunchActivityLocked(false /* andResume */, preserveWindow);
2501 }
2502
2503 // All done... tell the caller we weren't able to keep this activity around.
2504 return false;
2505 }
2506
2507 // Default case: the activity can handle this new configuration, so hand it over.
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002508 // NOTE: We only forward the override configuration as the system level configuration
Andrii Kulian21713ac2016-10-12 22:05:05 -07002509 // changes is always sent to all processes when they happen so it can just use whatever
2510 // system level configuration it last got.
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002511 if (displayChanged) {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002512 scheduleActivityMovedToDisplay(newDisplayId, newMergedOverrideConfig);
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002513 } else {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002514 scheduleConfigurationChanged(newMergedOverrideConfig);
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002515 }
Andrii Kulian21713ac2016-10-12 22:05:05 -07002516 stopFreezingScreenLocked(false);
2517
2518 return true;
2519 }
2520
Zak Cohen90e7116742017-01-29 12:59:23 -08002521 /**
2522 * When assessing a configuration change, decide if the changes flags and the new configurations
2523 * should cause the Activity to relaunch.
Ruben Brunkf64af332017-03-22 22:03:25 -07002524 *
2525 * @param changes the changes due to the given configuration.
2526 * @param changesConfig the configuration that was used to calculate the given changes via a
2527 * call to getConfigurationChanges.
Zak Cohen90e7116742017-01-29 12:59:23 -08002528 */
Ruben Brunkf64af332017-03-22 22:03:25 -07002529 private boolean shouldRelaunchLocked(int changes, Configuration changesConfig) {
Zak Cohen90e7116742017-01-29 12:59:23 -08002530 int configChanged = info.getRealConfigChanged();
Ruben Brunkf64af332017-03-22 22:03:25 -07002531 boolean onlyVrUiModeChanged = onlyVrUiModeChanged(changes, changesConfig);
Zak Cohen90e7116742017-01-29 12:59:23 -08002532
2533 // Override for apps targeting pre-O sdks
2534 // If a device is in VR mode, and we're transitioning into VR ui mode, add ignore ui mode
2535 // to the config change.
2536 // For O and later, apps will be required to add configChanges="uimode" to their manifest.
2537 if (appInfo.targetSdkVersion < O
2538 && requestedVrComponent != null
Ruben Brunkf64af332017-03-22 22:03:25 -07002539 && onlyVrUiModeChanged) {
Zak Cohen90e7116742017-01-29 12:59:23 -08002540 configChanged |= CONFIG_UI_MODE;
2541 }
2542
2543 return (changes&(~configChanged)) != 0;
2544 }
2545
Ruben Brunkf64af332017-03-22 22:03:25 -07002546 /**
2547 * Returns true if the configuration change is solely due to the UI mode switching into or out
2548 * of UI_MODE_TYPE_VR_HEADSET.
2549 */
2550 private boolean onlyVrUiModeChanged(int changes, Configuration lastReportedConfig) {
2551 final Configuration currentConfig = getConfiguration();
Ruben Brunkf53497c2017-03-27 20:26:17 -07002552 return changes == CONFIG_UI_MODE && (isInVrUiMode(currentConfig)
Ruben Brunkf64af332017-03-22 22:03:25 -07002553 != isInVrUiMode(lastReportedConfig));
2554 }
2555
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002556 private int getConfigurationChanges(Configuration lastReportedConfig) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07002557 // Determine what has changed. May be nothing, if this is a config that has come back from
2558 // the app after going idle. In that case we just want to leave the official config object
2559 // now in the activity and do nothing else.
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002560 final Configuration currentConfig = getConfiguration();
2561 int changes = lastReportedConfig.diff(currentConfig);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002562 // We don't want to use size changes if they don't cross boundaries that are important to
2563 // the app.
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002564 if ((changes & CONFIG_SCREEN_SIZE) != 0) {
Andrii Kulianb43be0a2017-03-02 17:29:40 -08002565 final boolean crosses = crossesHorizontalSizeThreshold(lastReportedConfig.screenWidthDp,
2566 currentConfig.screenWidthDp)
2567 || crossesVerticalSizeThreshold(lastReportedConfig.screenHeightDp,
2568 currentConfig.screenHeightDp);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002569 if (!crosses) {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002570 changes &= ~CONFIG_SCREEN_SIZE;
Andrii Kulian21713ac2016-10-12 22:05:05 -07002571 }
2572 }
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002573 if ((changes & CONFIG_SMALLEST_SCREEN_SIZE) != 0) {
Andrii Kulianb43be0a2017-03-02 17:29:40 -08002574 final int oldSmallest = lastReportedConfig.smallestScreenWidthDp;
2575 final int newSmallest = currentConfig.smallestScreenWidthDp;
2576 if (!crossesSmallestSizeThreshold(oldSmallest, newSmallest)) {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002577 changes &= ~CONFIG_SMALLEST_SCREEN_SIZE;
Andrii Kulian21713ac2016-10-12 22:05:05 -07002578 }
2579 }
Wale Ogunwale822e5122017-07-26 06:02:24 -07002580 // We don't want window configuration to cause relaunches.
2581 if ((changes & CONFIG_WINDOW_CONFIGURATION) != 0) {
2582 changes &= ~CONFIG_WINDOW_CONFIGURATION;
2583 }
Bryce Lee600dadd2017-07-25 10:48:42 -07002584
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002585 return changes;
Andrii Kulian21713ac2016-10-12 22:05:05 -07002586 }
2587
2588 private static boolean isResizeOnlyChange(int change) {
2589 return (change & ~(CONFIG_SCREEN_SIZE | CONFIG_SMALLEST_SCREEN_SIZE | CONFIG_ORIENTATION
2590 | CONFIG_SCREEN_LAYOUT)) == 0;
2591 }
2592
2593 void relaunchActivityLocked(boolean andResume, boolean preserveWindow) {
2594 if (service.mSuppressResizeConfigChanges && preserveWindow) {
2595 configChangeFlags = 0;
2596 return;
2597 }
2598
2599 List<ResultInfo> pendingResults = null;
2600 List<ReferrerIntent> pendingNewIntents = null;
2601 if (andResume) {
2602 pendingResults = results;
2603 pendingNewIntents = newIntents;
2604 }
2605 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2606 "Relaunching: " + this + " with results=" + pendingResults
2607 + " newIntents=" + pendingNewIntents + " andResume=" + andResume
2608 + " preserveWindow=" + preserveWindow);
Ruben Brunkf53497c2017-03-27 20:26:17 -07002609 EventLog.writeEvent(andResume ? AM_RELAUNCH_RESUME_ACTIVITY
2610 : AM_RELAUNCH_ACTIVITY, userId, System.identityHashCode(this),
Andrii Kulian21713ac2016-10-12 22:05:05 -07002611 task.taskId, shortComponentName);
2612
2613 startFreezingScreenLocked(app, 0);
2614
Andrii Kulian21713ac2016-10-12 22:05:05 -07002615 try {
2616 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH,
2617 "Moving to " + (andResume ? "RESUMED" : "PAUSED") + " Relaunching " + this
2618 + " callers=" + Debug.getCallers(6));
2619 forceNewConfig = false;
2620 mStackSupervisor.activityRelaunchingLocked(this);
2621 app.thread.scheduleRelaunchActivity(appToken, pendingResults, pendingNewIntents,
2622 configChangeFlags, !andResume,
2623 new Configuration(service.getGlobalConfiguration()),
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002624 new Configuration(getMergedOverrideConfiguration()), preserveWindow);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002625 // Note: don't need to call pauseIfSleepingLocked() here, because the caller will only
2626 // pass in 'andResume' if this activity is currently resumed, which implies we aren't
2627 // sleeping.
2628 } catch (RemoteException e) {
2629 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH, "Relaunch failed", e);
2630 }
2631
2632 if (andResume) {
2633 if (DEBUG_STATES) {
2634 Slog.d(TAG_STATES, "Resumed after relaunch " + this);
2635 }
2636 results = null;
2637 newIntents = null;
2638 service.showUnsupportedZoomDialogIfNeededLocked(this);
2639 service.showAskCompatModeDialogLocked(this);
2640 } else {
Ruben Brunkf53497c2017-03-27 20:26:17 -07002641 service.mHandler.removeMessages(PAUSE_TIMEOUT_MSG, this);
2642 state = PAUSED;
Andrii Kulian21713ac2016-10-12 22:05:05 -07002643 // if the app is relaunched when it's stopped, and we're not resuming,
2644 // put it back into stopped state.
2645 if (stopped) {
Winson Chung4dabf232017-01-25 13:25:22 -08002646 getStack().addToStopping(this, true /* scheduleIdle */, false /* idleDelayed */);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002647 }
2648 }
2649
2650 configChangeFlags = 0;
2651 deferRelaunchUntilPaused = false;
2652 preserveWindowOnDeferredRelaunch = false;
2653 }
2654
Jorim Jaggibae01b12017-04-11 16:29:10 -07002655 private boolean isProcessRunning() {
Jorim Jaggi02886a82016-12-06 09:10:06 -08002656 ProcessRecord proc = app;
2657 if (proc == null) {
2658 proc = service.mProcessNames.get(processName, info.applicationInfo.uid);
2659 }
2660 return proc != null && proc.thread != null;
2661 }
2662
Jorim Jaggibae01b12017-04-11 16:29:10 -07002663 /**
2664 * @return Whether a task snapshot starting window may be shown.
2665 */
2666 private boolean allowTaskSnapshot() {
2667 if (newIntents == null) {
2668 return true;
2669 }
2670
2671 // Restrict task snapshot starting window to launcher start, or there is no intent at all
2672 // (eg. task being brought to front). If the intent is something else, likely the app is
2673 // going to show some specific page or view, instead of what's left last time.
2674 for (int i = newIntents.size() - 1; i >= 0; i--) {
2675 final Intent intent = newIntents.get(i);
2676 if (intent != null && !ActivityRecord.isMainIntent(intent)) {
2677 return false;
2678 }
2679 }
2680 return true;
2681 }
2682
Bryce Leeb7c9b802017-05-02 14:20:24 -07002683 /**
2684 * Returns {@code true} if the associated activity has the no history flag set on it.
2685 * {@code false} otherwise.
2686 */
2687 boolean isNoHistory() {
2688 return (intent.getFlags() & FLAG_ACTIVITY_NO_HISTORY) != 0
2689 || (info.flags & FLAG_NO_HISTORY) != 0;
2690 }
2691
Craig Mautner21d24a22014-04-23 11:45:37 -07002692 void saveToXml(XmlSerializer out) throws IOException, XmlPullParserException {
2693 out.attribute(null, ATTR_ID, String.valueOf(createTime));
2694 out.attribute(null, ATTR_LAUNCHEDFROMUID, String.valueOf(launchedFromUid));
2695 if (launchedFromPackage != null) {
2696 out.attribute(null, ATTR_LAUNCHEDFROMPACKAGE, launchedFromPackage);
2697 }
2698 if (resolvedType != null) {
2699 out.attribute(null, ATTR_RESOLVEDTYPE, resolvedType);
2700 }
2701 out.attribute(null, ATTR_COMPONENTSPECIFIED, String.valueOf(componentSpecified));
2702 out.attribute(null, ATTR_USERID, String.valueOf(userId));
Winson Chung2cb86c72014-06-25 12:03:30 -07002703
Craig Mautner21d24a22014-04-23 11:45:37 -07002704 if (taskDescription != null) {
Craig Mautner648f69b2014-09-18 14:16:26 -07002705 taskDescription.saveToXml(out);
Craig Mautner21d24a22014-04-23 11:45:37 -07002706 }
2707
2708 out.startTag(null, TAG_INTENT);
2709 intent.saveToXml(out);
2710 out.endTag(null, TAG_INTENT);
2711
2712 if (isPersistable() && persistentState != null) {
2713 out.startTag(null, TAG_PERSISTABLEBUNDLE);
2714 persistentState.saveToXml(out);
2715 out.endTag(null, TAG_PERSISTABLEBUNDLE);
2716 }
2717 }
2718
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07002719 static ActivityRecord restoreFromXml(XmlPullParser in,
2720 ActivityStackSupervisor stackSupervisor) throws IOException, XmlPullParserException {
Craig Mautner21d24a22014-04-23 11:45:37 -07002721 Intent intent = null;
2722 PersistableBundle persistentState = null;
2723 int launchedFromUid = 0;
2724 String launchedFromPackage = null;
2725 String resolvedType = null;
2726 boolean componentSpecified = false;
2727 int userId = 0;
Craig Mautner21d24a22014-04-23 11:45:37 -07002728 long createTime = -1;
2729 final int outerDepth = in.getDepth();
Winson Chung2cb86c72014-06-25 12:03:30 -07002730 TaskDescription taskDescription = new TaskDescription();
Craig Mautner21d24a22014-04-23 11:45:37 -07002731
2732 for (int attrNdx = in.getAttributeCount() - 1; attrNdx >= 0; --attrNdx) {
2733 final String attrName = in.getAttributeName(attrNdx);
2734 final String attrValue = in.getAttributeValue(attrNdx);
Ruben Brunkf53497c2017-03-27 20:26:17 -07002735 if (DEBUG) Slog.d(TaskPersister.TAG,
Wale Ogunwale18795a22014-12-03 11:38:33 -08002736 "ActivityRecord: attribute name=" + attrName + " value=" + attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07002737 if (ATTR_ID.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01002738 createTime = Long.parseLong(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07002739 } else if (ATTR_LAUNCHEDFROMUID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01002740 launchedFromUid = Integer.parseInt(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07002741 } else if (ATTR_LAUNCHEDFROMPACKAGE.equals(attrName)) {
2742 launchedFromPackage = attrValue;
2743 } else if (ATTR_RESOLVEDTYPE.equals(attrName)) {
2744 resolvedType = attrValue;
2745 } else if (ATTR_COMPONENTSPECIFIED.equals(attrName)) {
Tobias Thiererb0800dc2016-04-21 17:51:41 +01002746 componentSpecified = Boolean.parseBoolean(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07002747 } else if (ATTR_USERID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01002748 userId = Integer.parseInt(attrValue);
Ruben Brunkf53497c2017-03-27 20:26:17 -07002749 } else if (attrName.startsWith(ATTR_TASKDESCRIPTION_PREFIX)) {
Craig Mautner648f69b2014-09-18 14:16:26 -07002750 taskDescription.restoreFromXml(attrName, attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07002751 } else {
2752 Log.d(TAG, "Unknown ActivityRecord attribute=" + attrName);
2753 }
2754 }
2755
2756 int event;
Ruben Brunkf53497c2017-03-27 20:26:17 -07002757 while (((event = in.next()) != END_DOCUMENT) &&
2758 (event != END_TAG || in.getDepth() >= outerDepth)) {
2759 if (event == START_TAG) {
Craig Mautner21d24a22014-04-23 11:45:37 -07002760 final String name = in.getName();
Ruben Brunkf53497c2017-03-27 20:26:17 -07002761 if (DEBUG)
Wale Ogunwale18795a22014-12-03 11:38:33 -08002762 Slog.d(TaskPersister.TAG, "ActivityRecord: START_TAG name=" + name);
Craig Mautner21d24a22014-04-23 11:45:37 -07002763 if (TAG_INTENT.equals(name)) {
2764 intent = Intent.restoreFromXml(in);
Ruben Brunkf53497c2017-03-27 20:26:17 -07002765 if (DEBUG)
Wale Ogunwale18795a22014-12-03 11:38:33 -08002766 Slog.d(TaskPersister.TAG, "ActivityRecord: intent=" + intent);
Craig Mautner21d24a22014-04-23 11:45:37 -07002767 } else if (TAG_PERSISTABLEBUNDLE.equals(name)) {
2768 persistentState = PersistableBundle.restoreFromXml(in);
Ruben Brunkf53497c2017-03-27 20:26:17 -07002769 if (DEBUG) Slog.d(TaskPersister.TAG,
Craig Mautner21d24a22014-04-23 11:45:37 -07002770 "ActivityRecord: persistentState=" + persistentState);
2771 } else {
2772 Slog.w(TAG, "restoreActivity: unexpected name=" + name);
2773 XmlUtils.skipCurrentTag(in);
2774 }
2775 }
2776 }
2777
2778 if (intent == null) {
Craig Mautnere0129b32014-05-25 16:41:09 -07002779 throw new XmlPullParserException("restoreActivity error intent=" + intent);
Craig Mautner21d24a22014-04-23 11:45:37 -07002780 }
2781
2782 final ActivityManagerService service = stackSupervisor.mService;
2783 final ActivityInfo aInfo = stackSupervisor.resolveActivity(intent, resolvedType, 0, null,
Jeff Hao1b012d32014-08-20 10:35:34 -07002784 userId);
Craig Mautnere0129b32014-05-25 16:41:09 -07002785 if (aInfo == null) {
Craig Mautner77b04262014-06-27 15:22:12 -07002786 throw new XmlPullParserException("restoreActivity resolver error. Intent=" + intent +
2787 " resolvedType=" + resolvedType);
Craig Mautnere0129b32014-05-25 16:41:09 -07002788 }
Andrii Kulianfb1bf692017-01-17 11:17:34 -08002789 final ActivityRecord r = new ActivityRecord(service, null /* caller */,
2790 0 /* launchedFromPid */, launchedFromUid, launchedFromPackage, intent, resolvedType,
2791 aInfo, service.getConfiguration(), null /* resultTo */, null /* resultWho */,
2792 0 /* reqCode */, componentSpecified, false /* rootVoiceInteraction */,
Andrii Kulian94e82d9b02017-07-13 15:33:06 -07002793 stackSupervisor, null /* options */, null /* sourceRecord */);
Craig Mautner21d24a22014-04-23 11:45:37 -07002794
2795 r.persistentState = persistentState;
Winson Chung2cb86c72014-06-25 12:03:30 -07002796 r.taskDescription = taskDescription;
Craig Mautner21d24a22014-04-23 11:45:37 -07002797 r.createTime = createTime;
2798
2799 return r;
2800 }
2801
2802 private static String activityTypeToString(int type) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07002803 switch (type) {
2804 case APPLICATION_ACTIVITY_TYPE: return "APPLICATION_ACTIVITY_TYPE";
2805 case HOME_ACTIVITY_TYPE: return "HOME_ACTIVITY_TYPE";
2806 case RECENTS_ACTIVITY_TYPE: return "RECENTS_ACTIVITY_TYPE";
Winson Chung83471632016-12-13 11:02:12 -08002807 case ASSISTANT_ACTIVITY_TYPE: return "ASSISTANT_ACTIVITY_TYPE";
Craig Mautnerae7ecab2013-09-18 11:48:14 -07002808 default: return Integer.toString(type);
2809 }
2810 }
2811
Zak Cohen90e7116742017-01-29 12:59:23 -08002812 private static boolean isInVrUiMode(Configuration config) {
Ruben Brunkf53497c2017-03-27 20:26:17 -07002813 return (config.uiMode & UI_MODE_TYPE_MASK) == UI_MODE_TYPE_VR_HEADSET;
Zak Cohen90e7116742017-01-29 12:59:23 -08002814 }
2815
David Stevens82ea6cb2017-03-03 16:18:50 -08002816 int getUid() {
2817 return info.applicationInfo.uid;
2818 }
2819
chaviw59b98852017-06-13 12:05:44 -07002820 void setShowWhenLocked(boolean showWhenLocked) {
2821 mShowWhenLocked = showWhenLocked;
2822 }
2823
2824 /**
2825 * @return true if the activity contains windows that have
2826 * {@link LayoutParams#FLAG_SHOW_WHEN_LOCKED} set or if the activity has set
2827 * {@link #mShowWhenLocked}.
2828 */
2829 boolean canShowWhenLocked() {
2830 return mShowWhenLocked || service.mWindowManager.containsShowWhenLockedWindow(appToken);
2831 }
2832
2833 void setTurnScreenOn(boolean turnScreenOn) {
2834 mTurnScreenOn = turnScreenOn;
2835 }
2836
2837 /**
2838 * Determines whether this ActivityRecord can turn the screen on. It checks whether the flag
2839 * {@link #mTurnScreenOn} is set and checks whether the ActivityRecord should be visible
2840 * depending on Keyguard state
2841 *
2842 * @return true if the screen can be turned on, false otherwise.
2843 */
2844 boolean canTurnScreenOn() {
2845 final ActivityStack stack = getStack();
2846 return mTurnScreenOn && stack != null &&
2847 stack.checkKeyguardVisibility(this, true /* shouldBeVisible */, true /* isTop */);
2848 }
2849
2850 boolean getTurnScreenOnFlag() {
2851 return mTurnScreenOn;
2852 }
2853
2854 boolean isTopRunningActivity() {
2855 return mStackSupervisor.topRunningActivityLocked() == this;
2856 }
2857
Craig Mautnerf81b90872013-02-26 13:02:43 -08002858 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002859 public String toString() {
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07002860 if (stringName != null) {
Wale Ogunwale18795a22014-12-03 11:38:33 -08002861 return stringName + " t" + (task == null ? INVALID_TASK_ID : task.taskId) +
Craig Mautnerf3333272013-04-22 10:55:53 -07002862 (finishing ? " f}" : "}");
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07002863 }
2864 StringBuilder sb = new StringBuilder(128);
Dianne Hackborn30d71892010-12-11 10:37:55 -08002865 sb.append("ActivityRecord{");
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07002866 sb.append(Integer.toHexString(System.identityHashCode(this)));
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002867 sb.append(" u");
2868 sb.append(userId);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07002869 sb.append(' ');
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002870 sb.append(intent.getComponent().flattenToShortString());
Craig Mautnerf81b90872013-02-26 13:02:43 -08002871 stringName = sb.toString();
2872 return toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002873 }
2874}