blob: 2d33a2c8450fb4adabcdfab892d52a826eb3ada1 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 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 android.app;
18
Svet Ganov019d2302015-05-04 11:07:38 -070019import android.Manifest;
Michal Karpinski3da5c972015-12-11 18:16:30 +000020import android.annotation.IntDef;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -070021import android.annotation.NonNull;
22import android.annotation.Nullable;
Svet Ganov019d2302015-05-04 11:07:38 -070023import android.annotation.RequiresPermission;
Amith Yamasani0e8d7d62014-09-03 13:17:28 -070024import android.annotation.SystemApi;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -070025import android.graphics.Canvas;
26import android.graphics.Matrix;
27import android.graphics.Point;
Dianne Hackborn91268cf2013-06-13 19:06:50 -070028import android.os.BatteryStats;
Dianne Hackborncbfd23e2013-06-11 14:26:53 -070029import android.os.IBinder;
Craig Mautnerc0ffce52014-07-01 12:38:52 -070030import android.os.ParcelFileDescriptor;
Amith Yamasani0e8d7d62014-09-03 13:17:28 -070031
Svet Ganov019d2302015-05-04 11:07:38 -070032import android.util.Log;
Dianne Hackborn8a0de582013-08-07 15:22:07 -070033import com.android.internal.app.ProcessStats;
Dianne Hackborncbfd23e2013-06-11 14:26:53 -070034import com.android.internal.os.TransferPipe;
Dianne Hackborn8c841092013-06-24 13:46:13 -070035import com.android.internal.util.FastPrintWriter;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070036
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import android.content.ComponentName;
38import android.content.Context;
39import android.content.Intent;
Felipe Lemef3fa0f82016-01-07 12:08:19 -080040import android.content.UriPermission;
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -070041import android.content.pm.ApplicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042import android.content.pm.ConfigurationInfo;
43import android.content.pm.IPackageDataObserver;
Dianne Hackborn5320eb82012-05-18 12:05:04 -070044import android.content.pm.PackageManager;
Felipe Lemef3fa0f82016-01-07 12:08:19 -080045import android.content.pm.ParceledListSlice;
Dianne Hackborn41203752012-08-31 14:05:51 -070046import android.content.pm.UserInfo;
Kenny Root5ef44b72011-01-26 17:22:20 -080047import android.content.res.Resources;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048import android.graphics.Bitmap;
Winson Chunga449dc02014-05-16 11:15:04 -070049import android.graphics.Color;
Craig Mautner967212c2013-04-13 21:10:58 -070050import android.graphics.Rect;
Dianne Hackborn8078d8c2012-03-20 11:11:26 -070051import android.os.Bundle;
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -070052import android.os.Debug;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053import android.os.Handler;
54import android.os.Parcel;
55import android.os.Parcelable;
Dianne Hackborn5320eb82012-05-18 12:05:04 -070056import android.os.Process;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070057import android.os.RemoteException;
Peter Visontay8d224ca2011-02-18 16:39:19 +000058import android.os.ServiceManager;
Dianne Hackborn2c6c5e62009-10-08 17:55:49 -070059import android.os.SystemProperties;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070060import android.os.UserHandle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061import android.text.TextUtils;
Kenny Root5ef44b72011-01-26 17:22:20 -080062import android.util.DisplayMetrics;
Winson Chung48a10a52014-08-27 14:36:51 -070063import android.util.Size;
Dianne Hackbornb3756322011-08-12 13:58:13 -070064import android.util.Slog;
Felipe Lemef3fa0f82016-01-07 12:08:19 -080065
Craig Mautner648f69b2014-09-18 14:16:26 -070066import org.xmlpull.v1.XmlSerializer;
Kenny Root5ef44b72011-01-26 17:22:20 -080067
Dianne Hackborncbfd23e2013-06-11 14:26:53 -070068import java.io.FileDescriptor;
69import java.io.FileOutputStream;
Craig Mautner648f69b2014-09-18 14:16:26 -070070import java.io.IOException;
Dianne Hackborncbfd23e2013-06-11 14:26:53 -070071import java.io.PrintWriter;
Michal Karpinski3da5c972015-12-11 18:16:30 +000072import java.lang.annotation.Retention;
73import java.lang.annotation.RetentionPolicy;
Winson Chung1147c402014-05-14 11:05:00 -070074import java.util.ArrayList;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075import java.util.List;
76
77/**
78 * Interact with the overall activities running in the system.
79 */
80public class ActivityManager {
81 private static String TAG = "ActivityManager";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082
Dianne Hackborn852975d2014-08-22 17:42:43 -070083 private static int gMaxRecentTasks = -1;
84
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085 private final Context mContext;
86 private final Handler mHandler;
87
Felipe Lemedc7af962016-01-22 18:27:03 -080088 /**
89 * Defines acceptable types of bugreports.
90 * @hide
91 */
Michal Karpinski3da5c972015-12-11 18:16:30 +000092 @Retention(RetentionPolicy.SOURCE)
93 @IntDef({
94 BUGREPORT_OPTION_FULL,
95 BUGREPORT_OPTION_INTERACTIVE,
96 BUGREPORT_OPTION_REMOTE
97 })
Michal Karpinski3da5c972015-12-11 18:16:30 +000098 public @interface BugreportMode {}
99 /**
100 * Takes a bugreport without user interference (and hence causing less
101 * interference to the system), but includes all sections.
102 * @hide
103 */
104 public static final int BUGREPORT_OPTION_FULL = 0;
105 /**
106 * Allows user to monitor progress and enter additional data; might not include all
107 * sections.
108 * @hide
109 */
110 public static final int BUGREPORT_OPTION_INTERACTIVE = 1;
111 /**
112 * Takes a bugreport requested remotely by administrator of the Device Owner app,
113 * not the device's user.
114 * @hide
115 */
116 public static final int BUGREPORT_OPTION_REMOTE = 2;
117
Dianne Hackborna4972e92012-03-14 10:38:05 -0700118 /**
Scott Maincc2195b2013-10-16 13:57:46 -0700119 * <a href="{@docRoot}guide/topics/manifest/meta-data-element.html">{@code
Neil Fuller71fbb812015-11-30 09:51:33 +0000120 * <meta-data>}</a> name for a 'home' Activity that declares a package that is to be
Christopher Tatebd413f62013-09-18 18:31:59 -0700121 * uninstalled in lieu of the declaring one. The package named here must be
Neil Fuller71fbb812015-11-30 09:51:33 +0000122 * signed with the same certificate as the one declaring the {@code <meta-data>}.
Christopher Tatebd413f62013-09-18 18:31:59 -0700123 */
124 public static final String META_HOME_ALTERNATE = "android.app.home.alternate";
125
126 /**
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700127 * Result for IActivityManager.startActivity: trying to start a background user
128 * activity that shouldn't be displayed for all users.
129 * @hide
130 */
131 public static final int START_NOT_CURRENT_USER_ACTIVITY = -8;
132
133 /**
Dianne Hackborn91097de2014-04-04 18:02:06 -0700134 * Result for IActivityManager.startActivity: trying to start an activity under voice
135 * control when that activity does not support the VOICE category.
136 * @hide
137 */
138 public static final int START_NOT_VOICE_COMPATIBLE = -7;
139
140 /**
Dianne Hackborna4972e92012-03-14 10:38:05 -0700141 * Result for IActivityManager.startActivity: an error where the
142 * start had to be canceled.
143 * @hide
144 */
145 public static final int START_CANCELED = -6;
146
147 /**
148 * Result for IActivityManager.startActivity: an error where the
149 * thing being started is not an activity.
150 * @hide
151 */
152 public static final int START_NOT_ACTIVITY = -5;
153
154 /**
155 * Result for IActivityManager.startActivity: an error where the
156 * caller does not have permission to start the activity.
157 * @hide
158 */
159 public static final int START_PERMISSION_DENIED = -4;
160
161 /**
162 * Result for IActivityManager.startActivity: an error where the
163 * caller has requested both to forward a result and to receive
164 * a result.
165 * @hide
166 */
167 public static final int START_FORWARD_AND_REQUEST_CONFLICT = -3;
168
169 /**
170 * Result for IActivityManager.startActivity: an error where the
171 * requested class is not found.
172 * @hide
173 */
174 public static final int START_CLASS_NOT_FOUND = -2;
175
176 /**
177 * Result for IActivityManager.startActivity: an error where the
178 * given Intent could not be resolved to an activity.
179 * @hide
180 */
181 public static final int START_INTENT_NOT_RESOLVED = -1;
182
183 /**
184 * Result for IActivityManaqer.startActivity: the activity was started
185 * successfully as normal.
186 * @hide
187 */
188 public static final int START_SUCCESS = 0;
189
190 /**
191 * Result for IActivityManaqer.startActivity: the caller asked that the Intent not
192 * be executed if it is the recipient, and that is indeed the case.
193 * @hide
194 */
195 public static final int START_RETURN_INTENT_TO_CALLER = 1;
196
197 /**
198 * Result for IActivityManaqer.startActivity: activity wasn't really started, but
199 * a task was simply brought to the foreground.
200 * @hide
201 */
202 public static final int START_TASK_TO_FRONT = 2;
203
204 /**
205 * Result for IActivityManaqer.startActivity: activity wasn't really started, but
206 * the given Intent was given to the existing top activity.
207 * @hide
208 */
209 public static final int START_DELIVERED_TO_TOP = 3;
210
211 /**
212 * Result for IActivityManaqer.startActivity: request was canceled because
213 * app switches are temporarily canceled to ensure the user's last request
214 * (such as pressing home) is performed.
215 * @hide
216 */
217 public static final int START_SWITCHES_CANCELED = 4;
218
219 /**
Craig Mautneraea74a52014-03-08 14:23:10 -0800220 * Result for IActivityManaqer.startActivity: a new activity was attempted to be started
221 * while in Lock Task Mode.
222 * @hide
223 */
224 public static final int START_RETURN_LOCK_TASK_MODE_VIOLATION = 5;
225
226 /**
Dianne Hackborna4972e92012-03-14 10:38:05 -0700227 * Flag for IActivityManaqer.startActivity: do special start mode where
228 * a new activity is launched only if it is needed.
229 * @hide
230 */
231 public static final int START_FLAG_ONLY_IF_NEEDED = 1<<0;
232
233 /**
234 * Flag for IActivityManaqer.startActivity: launch the app for
235 * debugging.
236 * @hide
237 */
238 public static final int START_FLAG_DEBUG = 1<<1;
239
240 /**
241 * Flag for IActivityManaqer.startActivity: launch the app for
Man Caocfa78b22015-06-11 20:14:34 -0700242 * allocation tracking.
243 * @hide
244 */
Pablo Ceballosa4d4e822015-10-05 10:27:52 -0700245 public static final int START_FLAG_TRACK_ALLOCATION = 1<<2;
Man Caocfa78b22015-06-11 20:14:34 -0700246
247 /**
Tamas Berghammerdf6cb282016-01-29 12:07:00 +0000248 * Flag for IActivityManaqer.startActivity: launch the app with
249 * native debugging support.
250 * @hide
251 */
252 public static final int START_FLAG_NATIVE_DEBUGGING = 1<<3;
253
254 /**
Dianne Hackborna4972e92012-03-14 10:38:05 -0700255 * Result for IActivityManaqer.broadcastIntent: success!
256 * @hide
257 */
258 public static final int BROADCAST_SUCCESS = 0;
259
260 /**
261 * Result for IActivityManaqer.broadcastIntent: attempt to broadcast
262 * a sticky intent without appropriate permission.
263 * @hide
264 */
265 public static final int BROADCAST_STICKY_CANT_HAVE_PERMISSION = -1;
266
267 /**
Amith Yamasani83b6ef02014-11-07 15:34:04 -0800268 * Result for IActivityManager.broadcastIntent: trying to send a broadcast
269 * to a stopped user. Fail.
270 * @hide
271 */
272 public static final int BROADCAST_FAILED_USER_STOPPED = -2;
273
274 /**
Dianne Hackborna4972e92012-03-14 10:38:05 -0700275 * Type for IActivityManaqer.getIntentSender: this PendingIntent is
276 * for a sendBroadcast operation.
277 * @hide
278 */
279 public static final int INTENT_SENDER_BROADCAST = 1;
280
281 /**
282 * Type for IActivityManaqer.getIntentSender: this PendingIntent is
283 * for a startActivity operation.
284 * @hide
285 */
286 public static final int INTENT_SENDER_ACTIVITY = 2;
287
288 /**
289 * Type for IActivityManaqer.getIntentSender: this PendingIntent is
290 * for an activity result operation.
291 * @hide
292 */
293 public static final int INTENT_SENDER_ACTIVITY_RESULT = 3;
294
295 /**
296 * Type for IActivityManaqer.getIntentSender: this PendingIntent is
297 * for a startService operation.
298 * @hide
299 */
300 public static final int INTENT_SENDER_SERVICE = 4;
301
Dianne Hackborn80a4af22012-08-27 19:18:31 -0700302 /** @hide User operation call: success! */
303 public static final int USER_OP_SUCCESS = 0;
304
305 /** @hide User operation call: given user id is not known. */
306 public static final int USER_OP_UNKNOWN_USER = -1;
307
308 /** @hide User operation call: given user id is the current user, can't be stopped. */
309 public static final int USER_OP_IS_CURRENT = -2;
310
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700311 /** @hide User operation call: system user can't be stopped. */
312 public static final int USER_OP_ERROR_IS_SYSTEM = -3;
313
314 /** @hide User operation call: one of related users cannot be stopped. */
315 public static final int USER_OP_ERROR_RELATED_USERS_CANNOT_STOP = -4;
316
Ruben Brunka27eef42015-01-28 15:04:16 -0800317 /** @hide Process does not exist. */
318 public static final int PROCESS_STATE_NONEXISTENT = -1;
319
Dianne Hackborna413dc02013-07-12 12:02:55 -0700320 /** @hide Process is a persistent system process. */
321 public static final int PROCESS_STATE_PERSISTENT = 0;
322
323 /** @hide Process is a persistent system process and is doing UI. */
324 public static final int PROCESS_STATE_PERSISTENT_UI = 1;
325
Dianne Hackbornc8230512013-07-13 21:32:12 -0700326 /** @hide Process is hosting the current top activities. Note that this covers
327 * all activities that are visible to the user. */
Dianne Hackborna413dc02013-07-12 12:02:55 -0700328 public static final int PROCESS_STATE_TOP = 2;
329
Dianne Hackbornab4bb9d2015-06-05 18:08:37 -0700330 /** @hide Process is hosting a foreground service due to a system binding. */
331 public static final int PROCESS_STATE_BOUND_FOREGROUND_SERVICE = 3;
332
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700333 /** @hide Process is hosting a foreground service. */
Dianne Hackbornab4bb9d2015-06-05 18:08:37 -0700334 public static final int PROCESS_STATE_FOREGROUND_SERVICE = 4;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700335
336 /** @hide Same as {@link #PROCESS_STATE_TOP} but while device is sleeping. */
Dianne Hackbornab4bb9d2015-06-05 18:08:37 -0700337 public static final int PROCESS_STATE_TOP_SLEEPING = 5;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700338
Dianne Hackborna413dc02013-07-12 12:02:55 -0700339 /** @hide Process is important to the user, and something they are aware of. */
Dianne Hackbornab4bb9d2015-06-05 18:08:37 -0700340 public static final int PROCESS_STATE_IMPORTANT_FOREGROUND = 6;
Dianne Hackborna413dc02013-07-12 12:02:55 -0700341
342 /** @hide Process is important to the user, but not something they are aware of. */
Dianne Hackbornab4bb9d2015-06-05 18:08:37 -0700343 public static final int PROCESS_STATE_IMPORTANT_BACKGROUND = 7;
Dianne Hackborna413dc02013-07-12 12:02:55 -0700344
Dianne Hackborna413dc02013-07-12 12:02:55 -0700345 /** @hide Process is in the background running a backup/restore operation. */
Dianne Hackbornab4bb9d2015-06-05 18:08:37 -0700346 public static final int PROCESS_STATE_BACKUP = 8;
Dianne Hackborna413dc02013-07-12 12:02:55 -0700347
Dianne Hackbornc8230512013-07-13 21:32:12 -0700348 /** @hide Process is in the background, but it can't restore its state so we want
349 * to try to avoid killing it. */
Dianne Hackbornab4bb9d2015-06-05 18:08:37 -0700350 public static final int PROCESS_STATE_HEAVY_WEIGHT = 9;
Dianne Hackbornc8230512013-07-13 21:32:12 -0700351
352 /** @hide Process is in the background running a service. Unlike oom_adj, this level
353 * is used for both the normal running in background state and the executing
354 * operations state. */
Dianne Hackbornab4bb9d2015-06-05 18:08:37 -0700355 public static final int PROCESS_STATE_SERVICE = 10;
Dianne Hackborna413dc02013-07-12 12:02:55 -0700356
Dianne Hackbornc8230512013-07-13 21:32:12 -0700357 /** @hide Process is in the background running a receiver. Note that from the
358 * perspective of oom_adj receivers run at a higher foreground level, but for our
359 * prioritization here that is not necessary and putting them below services means
360 * many fewer changes in some process states as they receive broadcasts. */
Dianne Hackbornab4bb9d2015-06-05 18:08:37 -0700361 public static final int PROCESS_STATE_RECEIVER = 11;
Dianne Hackbornc8230512013-07-13 21:32:12 -0700362
Dianne Hackborna413dc02013-07-12 12:02:55 -0700363 /** @hide Process is in the background but hosts the home activity. */
Dianne Hackbornab4bb9d2015-06-05 18:08:37 -0700364 public static final int PROCESS_STATE_HOME = 12;
Dianne Hackborna413dc02013-07-12 12:02:55 -0700365
366 /** @hide Process is in the background but hosts the last shown activity. */
Dianne Hackbornab4bb9d2015-06-05 18:08:37 -0700367 public static final int PROCESS_STATE_LAST_ACTIVITY = 13;
Dianne Hackborna413dc02013-07-12 12:02:55 -0700368
Dianne Hackbornc8230512013-07-13 21:32:12 -0700369 /** @hide Process is being cached for later use and contains activities. */
Dianne Hackbornab4bb9d2015-06-05 18:08:37 -0700370 public static final int PROCESS_STATE_CACHED_ACTIVITY = 14;
Dianne Hackbornc8230512013-07-13 21:32:12 -0700371
372 /** @hide Process is being cached for later use and is a client of another cached
373 * process that contains activities. */
Dianne Hackbornab4bb9d2015-06-05 18:08:37 -0700374 public static final int PROCESS_STATE_CACHED_ACTIVITY_CLIENT = 15;
Dianne Hackbornc8230512013-07-13 21:32:12 -0700375
376 /** @hide Process is being cached for later use and is empty. */
Dianne Hackbornab4bb9d2015-06-05 18:08:37 -0700377 public static final int PROCESS_STATE_CACHED_EMPTY = 16;
Dianne Hackborna413dc02013-07-12 12:02:55 -0700378
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700379 /** @hide Should this process state be considered a background state? */
380 public static final boolean isProcStateBackground(int procState) {
381 return procState >= PROCESS_STATE_BACKUP;
382 }
383
Dianne Hackborna83ce1d2015-03-11 15:16:13 -0700384 /** @hide requestType for assist context: only basic information. */
385 public static final int ASSIST_CONTEXT_BASIC = 0;
386
387 /** @hide requestType for assist context: generate full AssistStructure. */
388 public static final int ASSIST_CONTEXT_FULL = 1;
389
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700390 /** @hide Flag for registerUidObserver: report changes in process state. */
391 public static final int UID_OBSERVER_PROCSTATE = 1<<0;
392
393 /** @hide Flag for registerUidObserver: report uid gone. */
394 public static final int UID_OBSERVER_GONE = 1<<1;
395
396 /** @hide Flag for registerUidObserver: report uid has become idle. */
397 public static final int UID_OBSERVER_IDLE = 1<<2;
398
399 /** @hide Flag for registerUidObserver: report uid has become active. */
400 public static final int UID_OBSERVER_ACTIVE = 1<<3;
401
402 /** @hide Mode for {@link IActivityManager#getAppStartMode}: normal free-to-run operation. */
403 public static final int APP_START_MODE_NORMAL = 0;
404
405 /** @hide Mode for {@link IActivityManager#getAppStartMode}: delay running until later. */
406 public static final int APP_START_MODE_DELAYED = 1;
407
408 /** @hide Mode for {@link IActivityManager#getAppStartMode}: disable/cancel pending
409 * launches. */
410 public static final int APP_START_MODE_DISABLED = 2;
411
Benjamin Franz43261142015-02-11 15:59:44 +0000412 /**
413 * Lock task mode is not active.
414 */
415 public static final int LOCK_TASK_MODE_NONE = 0;
416
417 /**
418 * Full lock task mode is active.
419 */
420 public static final int LOCK_TASK_MODE_LOCKED = 1;
421
422 /**
423 * App pinning mode is active.
424 */
425 public static final int LOCK_TASK_MODE_PINNED = 2;
426
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700427 Point mAppTaskThumbnailSize;
428
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800429 /*package*/ ActivityManager(Context context, Handler handler) {
430 mContext = context;
431 mHandler = handler;
432 }
433
434 /**
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700435 * Screen compatibility mode: the application most always run in
436 * compatibility mode.
437 * @hide
438 */
439 public static final int COMPAT_MODE_ALWAYS = -1;
440
441 /**
442 * Screen compatibility mode: the application can never run in
443 * compatibility mode.
444 * @hide
445 */
446 public static final int COMPAT_MODE_NEVER = -2;
447
448 /**
449 * Screen compatibility mode: unknown.
450 * @hide
451 */
452 public static final int COMPAT_MODE_UNKNOWN = -3;
453
454 /**
455 * Screen compatibility mode: the application currently has compatibility
456 * mode disabled.
457 * @hide
458 */
459 public static final int COMPAT_MODE_DISABLED = 0;
460
461 /**
462 * Screen compatibility mode: the application currently has compatibility
463 * mode enabled.
464 * @hide
465 */
466 public static final int COMPAT_MODE_ENABLED = 1;
467
468 /**
469 * Screen compatibility mode: request to toggle the application's
470 * compatibility mode.
471 * @hide
472 */
473 public static final int COMPAT_MODE_TOGGLE = 2;
474
Wale Ogunwale3797c222015-10-27 14:21:58 -0700475 /** @hide */
476 public static class StackId {
477 /** Invalid stack ID. */
478 public static final int INVALID_STACK_ID = -1;
Chong Zhang5dcb2752015-08-18 13:50:26 -0700479
Wale Ogunwale3797c222015-10-27 14:21:58 -0700480 /** First static stack ID. */
481 public static final int FIRST_STATIC_STACK_ID = 0;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700482
Wale Ogunwale3797c222015-10-27 14:21:58 -0700483 /** Home activity stack ID. */
484 public static final int HOME_STACK_ID = FIRST_STATIC_STACK_ID;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700485
Wale Ogunwale3797c222015-10-27 14:21:58 -0700486 /** ID of stack where fullscreen activities are normally launched into. */
487 public static final int FULLSCREEN_WORKSPACE_STACK_ID = 1;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700488
Wale Ogunwale3797c222015-10-27 14:21:58 -0700489 /** ID of stack where freeform/resized activities are normally launched into. */
490 public static final int FREEFORM_WORKSPACE_STACK_ID = FULLSCREEN_WORKSPACE_STACK_ID + 1;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700491
Wale Ogunwale3797c222015-10-27 14:21:58 -0700492 /** ID of stack that occupies a dedicated region of the screen. */
493 public static final int DOCKED_STACK_ID = FREEFORM_WORKSPACE_STACK_ID + 1;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -0700494
Wale Ogunwale3797c222015-10-27 14:21:58 -0700495 /** ID of stack that always on top (always visible) when it exist. */
496 public static final int PINNED_STACK_ID = DOCKED_STACK_ID + 1;
Wale Ogunwale99db1862015-10-23 20:08:22 -0700497
Wale Ogunwale3797c222015-10-27 14:21:58 -0700498 /** Last static stack stack ID. */
499 public static final int LAST_STATIC_STACK_ID = PINNED_STACK_ID;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700500
Wale Ogunwale3797c222015-10-27 14:21:58 -0700501 /** Start of ID range used by stacks that are created dynamically. */
502 public static final int FIRST_DYNAMIC_STACK_ID = LAST_STATIC_STACK_ID + 1;
503
504 public static boolean isStaticStack(int stackId) {
505 return stackId >= FIRST_STATIC_STACK_ID && stackId <= LAST_STATIC_STACK_ID;
506 }
507
508 /**
509 * Returns true if the activities contained in the input stack display a shadow around
510 * their border.
511 */
512 public static boolean hasWindowShadow(int stackId) {
513 return stackId == FREEFORM_WORKSPACE_STACK_ID || stackId == PINNED_STACK_ID;
514 }
515
516 /**
517 * Returns true if the activities contained in the input stack display a decor view.
518 */
519 public static boolean hasWindowDecor(int stackId) {
520 return stackId == FREEFORM_WORKSPACE_STACK_ID;
521 }
522
523 /**
524 * Returns true if the tasks contained in the stack can be resized independently of the
525 * stack.
526 */
527 public static boolean isTaskResizeAllowed(int stackId) {
528 return stackId == FREEFORM_WORKSPACE_STACK_ID;
529 }
530
Wale Ogunwale807d8822015-12-15 17:05:09 -0800531 /** Returns true if the task bounds should persist across power cycles. */
Wale Ogunwale3797c222015-10-27 14:21:58 -0700532 public static boolean persistTaskBounds(int stackId) {
Wale Ogunwale807d8822015-12-15 17:05:09 -0800533 return stackId == FREEFORM_WORKSPACE_STACK_ID;
Wale Ogunwale3797c222015-10-27 14:21:58 -0700534 }
535
536 /**
537 * Returns true if dynamic stacks are allowed to be visible behind the input stack.
538 */
539 public static boolean isDynamicStacksVisibleBehindAllowed(int stackId) {
540 return stackId == PINNED_STACK_ID;
541 }
542
543 /**
544 * Returns true if we try to maintain focus in the current stack when the top activity
545 * finishes.
546 */
547 public static boolean keepFocusInStackIfPossible(int stackId) {
548 return stackId == FREEFORM_WORKSPACE_STACK_ID
549 || stackId == DOCKED_STACK_ID || stackId == PINNED_STACK_ID;
550 }
551
552 /**
553 * Returns true if Stack size is affected by the docked stack changing size.
554 */
555 public static boolean isResizeableByDockedStack(int stackId) {
556 return isStaticStack(stackId) &&
557 stackId != DOCKED_STACK_ID && stackId != PINNED_STACK_ID;
558 }
559
560 /**
561 * Returns true if the size of tasks in the input stack are affected by the docked stack
562 * changing size.
563 */
564 public static boolean isTaskResizeableByDockedStack(int stackId) {
565 return isStaticStack(stackId) && stackId != FREEFORM_WORKSPACE_STACK_ID
566 && stackId != DOCKED_STACK_ID && stackId != PINNED_STACK_ID;
567 }
568
569 /**
Jorim Jaggie9098022016-01-27 19:29:40 -0800570 * Returns true if the windows of tasks being moved to the target stack from the source
571 * stack should be replaced, meaning that window manager will keep the old window around
572 * until the new is ready.
Wale Ogunwale3797c222015-10-27 14:21:58 -0700573 */
Jorim Jaggie9098022016-01-27 19:29:40 -0800574 public static boolean replaceWindowsOnTaskMove(int sourceStackId, int targetStackId) {
575 return sourceStackId == FREEFORM_WORKSPACE_STACK_ID
576 || targetStackId == FREEFORM_WORKSPACE_STACK_ID;
Wale Ogunwale3797c222015-10-27 14:21:58 -0700577 }
Filip Gruszczynski96daf322015-11-18 18:01:27 -0800578
579 /**
Robert Carre6275582016-02-29 15:45:45 -0800580 * Return whether a stackId is a stack containing floating windows. Floating windows
581 * are laid out differently as they are allowed to extend past the display bounds
582 * without overscan insets.
583 */
584 public static boolean tasksAreFloating(int stackId) {
585 return stackId == FREEFORM_WORKSPACE_STACK_ID
586 || stackId == PINNED_STACK_ID;
587 }
588
589 /**
Filip Gruszczynski96daf322015-11-18 18:01:27 -0800590 * Returns true if animation specs should be constructed for app transition that moves
591 * the task to the specified stack.
592 */
593 public static boolean useAnimationSpecForAppTransition(int stackId) {
Jorim Jaggi8a5c6402016-02-12 16:55:18 -0800594
595 // TODO: INVALID_STACK_ID is also animated because we don't persist stack id's across
596 // reboots.
Filip Gruszczynski96daf322015-11-18 18:01:27 -0800597 return stackId == FREEFORM_WORKSPACE_STACK_ID
Jorim Jaggi8a5c6402016-02-12 16:55:18 -0800598 || stackId == FULLSCREEN_WORKSPACE_STACK_ID || stackId == DOCKED_STACK_ID
599 || stackId == INVALID_STACK_ID;
Filip Gruszczynski96daf322015-11-18 18:01:27 -0800600 }
Wale Ogunwaled045c822015-12-02 09:14:28 -0800601
602 /** Returns true if the windows in the stack can receive input keys. */
603 public static boolean canReceiveKeys(int stackId) {
604 return stackId != PINNED_STACK_ID;
605 }
Filip Gruszczynski114d5ca2015-12-04 09:05:00 -0800606
Chong Zhang75b37202015-12-04 14:16:36 -0800607 /**
608 * Returns true if the stack can be visible above lockscreen.
609 */
610 public static boolean isAllowedOverLockscreen(int stackId) {
611 return stackId == HOME_STACK_ID || stackId == FULLSCREEN_WORKSPACE_STACK_ID;
612 }
613
Filip Gruszczynski114d5ca2015-12-04 09:05:00 -0800614 public static boolean isAlwaysOnTop(int stackId) {
615 return stackId == PINNED_STACK_ID;
616 }
Wale Ogunwalef81c1d12016-01-12 12:20:18 -0800617
618 /**
619 * Returns true if the top task in the task is allowed to return home when finished and
620 * there are other tasks in the stack.
621 */
622 public static boolean allowTopTaskToReturnHome(int stackId) {
623 return stackId != PINNED_STACK_ID;
624 }
Wale Ogunwalecacfaa22016-01-15 11:26:08 -0800625
626 /**
627 * Returns true if the stack should be resized to match the bounds specified by
628 * {@link ActivityOptions#setLaunchBounds} when launching an activity into the stack.
629 */
630 public static boolean resizeStackWithLaunchBounds(int stackId) {
631 return stackId == PINNED_STACK_ID;
632 }
Wale Ogunwale3fd20fe2016-01-23 17:41:28 -0800633
634 /**
635 * Returns true if any visible windows belonging to apps in this stack should be kept on
636 * screen when the app is killed due to something like the low memory killer.
637 */
638 public static boolean keepVisibleDeadAppWindowOnScreen(int stackId) {
639 return stackId != PINNED_STACK_ID;
640 }
Filip Gruszczynski84fa3352016-01-25 16:28:49 -0800641
642 /**
643 * Returns true if the backdrop on the client side should match the frame of the window.
644 * Returns false, if the backdrop should be fullscreen.
645 */
646 public static boolean useWindowFrameForBackdrop(int stackId) {
647 return stackId == FREEFORM_WORKSPACE_STACK_ID || stackId == PINNED_STACK_ID;
648 }
Jorim Jaggi86905582016-02-09 21:36:09 -0800649
650 /**
651 * Returns true if a window from the specified stack with {@param stackId} are normally
652 * fullscreen, i. e. they can become the top opaque fullscreen window, meaning that it
653 * controls system bars, lockscreen occluded/dismissing state, screen rotation animation,
654 * etc.
655 */
656 public static boolean normallyFullscreenWindows(int stackId) {
657 return stackId != PINNED_STACK_ID && stackId != FREEFORM_WORKSPACE_STACK_ID
658 && stackId != DOCKED_STACK_ID;
659 }
Wale Ogunwalefb1c8642016-03-02 08:28:08 -0800660
661 /**
662 * Returns true if the input stack id should only be present on a device that supports
663 * multi-window mode.
664 * @see android.app.ActivityManager#supportsMultiWindow
665 */
666 public static boolean isMultiWindowStack(int stackId) {
667 return isStaticStack(stackId) || stackId == PINNED_STACK_ID
668 || stackId == FREEFORM_WORKSPACE_STACK_ID || stackId == DOCKED_STACK_ID;
669 }
Wale Ogunwale3797c222015-10-27 14:21:58 -0700670 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700671
Wale Ogunwale59a73ca2015-09-14 12:54:50 -0700672 /**
673 * Input parameter to {@link android.app.IActivityManager#moveTaskToDockedStack} which
674 * specifies the position of the created docked stack at the top half of the screen if
675 * in portrait mode or at the left half of the screen if in landscape mode.
676 * @hide
677 */
678 public static final int DOCKED_STACK_CREATE_MODE_TOP_OR_LEFT = 0;
679
680 /**
681 * Input parameter to {@link android.app.IActivityManager#moveTaskToDockedStack} which
682 * specifies the position of the created docked stack at the bottom half of the screen if
683 * in portrait mode or at the right half of the screen if in landscape mode.
684 * @hide
685 */
686 public static final int DOCKED_STACK_CREATE_MODE_BOTTOM_OR_RIGHT = 1;
687
Chong Zhang87b21722015-09-21 15:39:51 -0700688 /**
689 * Input parameter to {@link android.app.IActivityManager#resizeTask} which indicates
Chong Zhang6de2ae82015-09-30 18:25:21 -0700690 * that the resize doesn't need to preserve the window, and can be skipped if bounds
691 * is unchanged. This mode is used by window manager in most cases.
Chong Zhang87b21722015-09-21 15:39:51 -0700692 * @hide
693 */
694 public static final int RESIZE_MODE_SYSTEM = 0;
695
696 /**
697 * Input parameter to {@link android.app.IActivityManager#resizeTask} which indicates
Chong Zhang6de2ae82015-09-30 18:25:21 -0700698 * that the resize should preserve the window if possible.
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700699 * @hide
700 */
Chong Zhang6de2ae82015-09-30 18:25:21 -0700701 public static final int RESIZE_MODE_PRESERVE_WINDOW = (0x1 << 0);
Chong Zhang87b21722015-09-21 15:39:51 -0700702
703 /**
704 * Input parameter to {@link android.app.IActivityManager#resizeTask} which indicates
705 * that the resize should be performed even if the bounds appears unchanged.
706 * @hide
707 */
Chong Zhang6de2ae82015-09-30 18:25:21 -0700708 public static final int RESIZE_MODE_FORCED = (0x1 << 1);
709
710 /**
711 * Input parameter to {@link android.app.IActivityManager#resizeTask} used by window
712 * manager during a screen rotation.
713 * @hide
714 */
715 public static final int RESIZE_MODE_SYSTEM_SCREEN_ROTATION = RESIZE_MODE_PRESERVE_WINDOW;
716
717 /**
718 * Input parameter to {@link android.app.IActivityManager#resizeTask} used when the
719 * resize is due to a drag action.
720 * @hide
721 */
722 public static final int RESIZE_MODE_USER = RESIZE_MODE_PRESERVE_WINDOW;
723
724 /**
725 * Input parameter to {@link android.app.IActivityManager#resizeTask} which indicates
726 * that the resize should preserve the window if possible, and should not be skipped
727 * even if the bounds is unchanged. Usually used to force a resizing when a drag action
728 * is ending.
729 * @hide
730 */
731 public static final int RESIZE_MODE_USER_FORCED =
732 RESIZE_MODE_PRESERVE_WINDOW | RESIZE_MODE_FORCED;
Chong Zhang87b21722015-09-21 15:39:51 -0700733
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700734 /** @hide */
735 public int getFrontActivityScreenCompatMode() {
736 try {
737 return ActivityManagerNative.getDefault().getFrontActivityScreenCompatMode();
738 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700739 throw e.rethrowFromSystemServer();
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700740 }
741 }
742
Dianne Hackborndf9799f2011-05-12 15:16:33 -0700743 /** @hide */
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700744 public void setFrontActivityScreenCompatMode(int mode) {
745 try {
746 ActivityManagerNative.getDefault().setFrontActivityScreenCompatMode(mode);
747 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700748 throw e.rethrowFromSystemServer();
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700749 }
750 }
751
Dianne Hackborndf9799f2011-05-12 15:16:33 -0700752 /** @hide */
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700753 public int getPackageScreenCompatMode(String packageName) {
754 try {
755 return ActivityManagerNative.getDefault().getPackageScreenCompatMode(packageName);
756 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700757 throw e.rethrowFromSystemServer();
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700758 }
759 }
760
Dianne Hackborndf9799f2011-05-12 15:16:33 -0700761 /** @hide */
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700762 public void setPackageScreenCompatMode(String packageName, int mode) {
763 try {
764 ActivityManagerNative.getDefault().setPackageScreenCompatMode(packageName, mode);
765 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700766 throw e.rethrowFromSystemServer();
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700767 }
768 }
769
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700770 /** @hide */
771 public boolean getPackageAskScreenCompat(String packageName) {
772 try {
773 return ActivityManagerNative.getDefault().getPackageAskScreenCompat(packageName);
774 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700775 throw e.rethrowFromSystemServer();
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700776 }
777 }
778
779 /** @hide */
780 public void setPackageAskScreenCompat(String packageName, boolean ask) {
781 try {
782 ActivityManagerNative.getDefault().setPackageAskScreenCompat(packageName, ask);
783 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700784 throw e.rethrowFromSystemServer();
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700785 }
786 }
787
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700788 /**
Dianne Hackborn2c6c5e62009-10-08 17:55:49 -0700789 * Return the approximate per-application memory class of the current
790 * device. This gives you an idea of how hard a memory limit you should
791 * impose on your application to let the overall system work best. The
792 * returned value is in megabytes; the baseline Android memory class is
793 * 16 (which happens to be the Java heap limit of those devices); some
794 * device with more memory may return 24 or even higher numbers.
795 */
796 public int getMemoryClass() {
797 return staticGetMemoryClass();
798 }
Stefan Kuhne16045c22015-06-05 07:18:06 -0700799
Dianne Hackborn2c6c5e62009-10-08 17:55:49 -0700800 /** @hide */
801 static public int staticGetMemoryClass() {
802 // Really brain dead right now -- just take this from the configured
803 // vm heap size, and assume it is in megabytes and thus ends with "m".
Dianne Hackborn7ad33c82011-03-08 15:53:25 -0800804 String vmHeapSize = SystemProperties.get("dalvik.vm.heapgrowthlimit", "");
Dianne Hackbornde398512011-01-18 18:45:21 -0800805 if (vmHeapSize != null && !"".equals(vmHeapSize)) {
806 return Integer.parseInt(vmHeapSize.substring(0, vmHeapSize.length()-1));
807 }
808 return staticGetLargeMemoryClass();
Dianne Hackborn4e24aac2010-12-23 11:43:46 -0800809 }
Stefan Kuhne16045c22015-06-05 07:18:06 -0700810
Dianne Hackborn4e24aac2010-12-23 11:43:46 -0800811 /**
812 * Return the approximate per-application memory class of the current
813 * device when an application is running with a large heap. This is the
814 * space available for memory-intensive applications; most applications
815 * should not need this amount of memory, and should instead stay with the
816 * {@link #getMemoryClass()} limit. The returned value is in megabytes.
817 * This may be the same size as {@link #getMemoryClass()} on memory
818 * constrained devices, or it may be significantly larger on devices with
819 * a large amount of available RAM.
Dianne Hackborn3b81bc12011-01-15 11:50:52 -0800820 *
821 * <p>The is the size of the application's Dalvik heap if it has
822 * specified <code>android:largeHeap="true"</code> in its manifest.
Dianne Hackborn4e24aac2010-12-23 11:43:46 -0800823 */
824 public int getLargeMemoryClass() {
825 return staticGetLargeMemoryClass();
826 }
Stefan Kuhne16045c22015-06-05 07:18:06 -0700827
Dianne Hackborn4e24aac2010-12-23 11:43:46 -0800828 /** @hide */
829 static public int staticGetLargeMemoryClass() {
830 // Really brain dead right now -- just take this from the configured
831 // vm heap size, and assume it is in megabytes and thus ends with "m".
Dianne Hackborn2c6c5e62009-10-08 17:55:49 -0700832 String vmHeapSize = SystemProperties.get("dalvik.vm.heapsize", "16m");
Dianne Hackborn852975d2014-08-22 17:42:43 -0700833 return Integer.parseInt(vmHeapSize.substring(0, vmHeapSize.length() - 1));
Dianne Hackborn2c6c5e62009-10-08 17:55:49 -0700834 }
Dianne Hackbornb4e12492013-06-26 15:08:19 -0700835
836 /**
837 * Returns true if this is a low-RAM device. Exactly whether a device is low-RAM
838 * is ultimately up to the device configuration, but currently it generally means
839 * something in the class of a 512MB device with about a 800x480 or less screen.
840 * This is mostly intended to be used by apps to determine whether they should turn
841 * off certain features that require more RAM.
842 */
843 public boolean isLowRamDevice() {
844 return isLowRamDeviceStatic();
845 }
846
847 /** @hide */
848 public static boolean isLowRamDeviceStatic() {
Christopher Tate2f61f912013-08-20 13:55:50 -0700849 return "true".equals(SystemProperties.get("ro.config.low_ram", "false"));
Dianne Hackbornb4e12492013-06-26 15:08:19 -0700850 }
851
Dianne Hackborn2c6c5e62009-10-08 17:55:49 -0700852 /**
Dianne Hackbornb3756322011-08-12 13:58:13 -0700853 * Used by persistent processes to determine if they are running on a
854 * higher-end device so should be okay using hardware drawing acceleration
855 * (which tends to consume a lot more RAM).
856 * @hide
857 */
Jeff Brown98365d72012-08-19 20:30:52 -0700858 static public boolean isHighEndGfx() {
Dianne Hackbornb4e12492013-06-26 15:08:19 -0700859 return !isLowRamDeviceStatic() &&
860 !Resources.getSystem().getBoolean(com.android.internal.R.bool.config_avoidGfxAccel);
Dianne Hackborn49d228b32011-08-24 17:37:31 -0700861 }
862
863 /**
Dianne Hackborn852975d2014-08-22 17:42:43 -0700864 * Return the maximum number of recents entries that we will maintain and show.
865 * @hide
866 */
867 static public int getMaxRecentTasksStatic() {
868 if (gMaxRecentTasks < 0) {
869 return gMaxRecentTasks = isLowRamDeviceStatic() ? 50 : 100;
870 }
871 return gMaxRecentTasks;
872 }
873
874 /**
875 * Return the default limit on the number of recents that an app can make.
876 * @hide
877 */
878 static public int getDefaultAppRecentsLimitStatic() {
879 return getMaxRecentTasksStatic() / 6;
880 }
881
882 /**
883 * Return the maximum limit on the number of recents that an app can make.
884 * @hide
885 */
886 static public int getMaxAppRecentsLimitStatic() {
887 return getMaxRecentTasksStatic() / 2;
888 }
889
890 /**
Wale Ogunwalefb1c8642016-03-02 08:28:08 -0800891 * Returns true if the system supports at least one form of multi-window.
892 * E.g. freeform, split-screen, picture-in-picture.
893 * @hide
894 */
895 static public boolean supportsMultiWindow() {
896 return !isLowRamDeviceStatic()
897 && Resources.getSystem().getBoolean(
898 com.android.internal.R.bool.config_supportsMultiWindow);
899 }
900
901 /**
Winson Chung1147c402014-05-14 11:05:00 -0700902 * Information you can set and retrieve about the current activity within the recent task list.
Winson Chung03a9bae2014-05-02 09:56:12 -0700903 */
Winson Chunga449dc02014-05-16 11:15:04 -0700904 public static class TaskDescription implements Parcelable {
Craig Mautner648f69b2014-09-18 14:16:26 -0700905 /** @hide */
906 public static final String ATTR_TASKDESCRIPTION_PREFIX = "task_description_";
907 private static final String ATTR_TASKDESCRIPTIONLABEL =
908 ATTR_TASKDESCRIPTION_PREFIX + "label";
Winson Chung1af8eda2016-02-05 17:55:56 +0000909 private static final String ATTR_TASKDESCRIPTIONCOLOR_PRIMARY =
Craig Mautner648f69b2014-09-18 14:16:26 -0700910 ATTR_TASKDESCRIPTION_PREFIX + "color";
Winson Chung1af8eda2016-02-05 17:55:56 +0000911 private static final String ATTR_TASKDESCRIPTIONCOLOR_BACKGROUND =
912 ATTR_TASKDESCRIPTION_PREFIX + "colorBackground";
Craig Mautner648f69b2014-09-18 14:16:26 -0700913 private static final String ATTR_TASKDESCRIPTIONICONFILENAME =
914 ATTR_TASKDESCRIPTION_PREFIX + "icon_filename";
915
Winson Chunga449dc02014-05-16 11:15:04 -0700916 private String mLabel;
917 private Bitmap mIcon;
Craig Mautner648f69b2014-09-18 14:16:26 -0700918 private String mIconFilename;
Winson Chunga449dc02014-05-16 11:15:04 -0700919 private int mColorPrimary;
Winson Chung1af8eda2016-02-05 17:55:56 +0000920 private int mColorBackground;
Winson Chung03a9bae2014-05-02 09:56:12 -0700921
922 /**
Winson Chunga449dc02014-05-16 11:15:04 -0700923 * Creates the TaskDescription to the specified values.
Winson Chung03a9bae2014-05-02 09:56:12 -0700924 *
Winson Chunga449dc02014-05-16 11:15:04 -0700925 * @param label A label and description of the current state of this task.
926 * @param icon An icon that represents the current state of this task.
Winson Chung1af8eda2016-02-05 17:55:56 +0000927 * @param colorPrimary A color to override the theme's primary color. This color must be
928 * opaque.
Winson Chung03a9bae2014-05-02 09:56:12 -0700929 */
Winson Chunga449dc02014-05-16 11:15:04 -0700930 public TaskDescription(String label, Bitmap icon, int colorPrimary) {
Winson Chung1af8eda2016-02-05 17:55:56 +0000931 this(label, icon, null, colorPrimary, 0);
Winson Chunga449dc02014-05-16 11:15:04 -0700932 if ((colorPrimary != 0) && (Color.alpha(colorPrimary) != 255)) {
933 throw new RuntimeException("A TaskDescription's primary color should be opaque");
934 }
Craig Mautner648f69b2014-09-18 14:16:26 -0700935 }
936
Winson Chung03a9bae2014-05-02 09:56:12 -0700937 /**
Winson Chunga449dc02014-05-16 11:15:04 -0700938 * Creates the TaskDescription to the specified values.
Winson Chung03a9bae2014-05-02 09:56:12 -0700939 *
940 * @param label A label and description of the current state of this activity.
941 * @param icon An icon that represents the current state of this activity.
942 */
Winson Chunga449dc02014-05-16 11:15:04 -0700943 public TaskDescription(String label, Bitmap icon) {
Winson Chung1af8eda2016-02-05 17:55:56 +0000944 this(label, icon, null, 0, 0);
Winson Chung03a9bae2014-05-02 09:56:12 -0700945 }
946
947 /**
Winson Chunga449dc02014-05-16 11:15:04 -0700948 * Creates the TaskDescription to the specified values.
Winson Chung03a9bae2014-05-02 09:56:12 -0700949 *
950 * @param label A label and description of the current state of this activity.
951 */
Winson Chunga449dc02014-05-16 11:15:04 -0700952 public TaskDescription(String label) {
Winson Chung1af8eda2016-02-05 17:55:56 +0000953 this(label, null, null, 0, 0);
Winson Chung03a9bae2014-05-02 09:56:12 -0700954 }
955
Winson Chunga449dc02014-05-16 11:15:04 -0700956 /**
957 * Creates an empty TaskDescription.
958 */
959 public TaskDescription() {
Winson Chung1af8eda2016-02-05 17:55:56 +0000960 this(null, null, null, 0, 0);
961 }
962
963 /** @hide */
964 public TaskDescription(String label, Bitmap icon, String iconFilename, int colorPrimary,
965 int colorBackground) {
966 mLabel = label;
967 mIcon = icon;
968 mIconFilename = iconFilename;
969 mColorPrimary = colorPrimary;
970 mColorBackground = colorBackground;
Winson Chung03a9bae2014-05-02 09:56:12 -0700971 }
972
Winson Chunga449dc02014-05-16 11:15:04 -0700973 /**
974 * Creates a copy of another TaskDescription.
975 */
976 public TaskDescription(TaskDescription td) {
Winsonb6403152016-02-23 13:32:09 -0800977 copyFrom(td);
978 }
979
980 /**
981 * Copies this the values from another TaskDescription.
982 * @hide
983 */
984 public void copyFrom(TaskDescription other) {
985 mLabel = other.mLabel;
986 mIcon = other.mIcon;
987 mIconFilename = other.mIconFilename;
988 mColorPrimary = other.mColorPrimary;
989 mColorBackground = other.mColorBackground;
Winson Chunga449dc02014-05-16 11:15:04 -0700990 }
991
992 private TaskDescription(Parcel source) {
Winson Chung03a9bae2014-05-02 09:56:12 -0700993 readFromParcel(source);
994 }
995
996 /**
Winson Chung2cb86c72014-06-25 12:03:30 -0700997 * Sets the label for this task description.
998 * @hide
999 */
1000 public void setLabel(String label) {
1001 mLabel = label;
1002 }
1003
1004 /**
1005 * Sets the primary color for this task description.
1006 * @hide
1007 */
1008 public void setPrimaryColor(int primaryColor) {
Winson Chungae12dae2014-09-29 14:21:26 -07001009 // Ensure that the given color is valid
1010 if ((primaryColor != 0) && (Color.alpha(primaryColor) != 255)) {
1011 throw new RuntimeException("A TaskDescription's primary color should be opaque");
1012 }
1013 mColorPrimary = primaryColor;
Winson Chung2cb86c72014-06-25 12:03:30 -07001014 }
1015
1016 /**
Winson Chung1af8eda2016-02-05 17:55:56 +00001017 * Sets the background color for this task description.
1018 * @hide
1019 */
1020 public void setBackgroundColor(int backgroundColor) {
1021 // Ensure that the given color is valid
1022 if ((backgroundColor != 0) && (Color.alpha(backgroundColor) != 255)) {
1023 throw new RuntimeException("A TaskDescription's background color should be opaque");
1024 }
1025 mColorBackground = backgroundColor;
1026 }
1027
1028 /**
Winson Chung2cb86c72014-06-25 12:03:30 -07001029 * Sets the icon for this task description.
1030 * @hide
1031 */
1032 public void setIcon(Bitmap icon) {
1033 mIcon = icon;
1034 }
1035
1036 /**
Craig Mautner648f69b2014-09-18 14:16:26 -07001037 * Moves the icon bitmap reference from an actual Bitmap to a file containing the
1038 * bitmap.
1039 * @hide
1040 */
1041 public void setIconFilename(String iconFilename) {
1042 mIconFilename = iconFilename;
1043 mIcon = null;
1044 }
1045
1046 /**
Winson Chunga449dc02014-05-16 11:15:04 -07001047 * @return The label and description of the current state of this task.
Winson Chung03a9bae2014-05-02 09:56:12 -07001048 */
Winson Chunga449dc02014-05-16 11:15:04 -07001049 public String getLabel() {
1050 return mLabel;
1051 }
1052
1053 /**
1054 * @return The icon that represents the current state of this task.
1055 */
1056 public Bitmap getIcon() {
Craig Mautner648f69b2014-09-18 14:16:26 -07001057 if (mIcon != null) {
1058 return mIcon;
1059 }
Suprabh Shukla23593142015-11-03 17:31:15 -08001060 return loadTaskDescriptionIcon(mIconFilename, UserHandle.myUserId());
Craig Mautner648f69b2014-09-18 14:16:26 -07001061 }
1062
1063 /** @hide */
1064 public String getIconFilename() {
1065 return mIconFilename;
Winson Chunga449dc02014-05-16 11:15:04 -07001066 }
1067
Jorim Jaggibdd4b202014-09-26 18:29:07 +02001068 /** @hide */
1069 public Bitmap getInMemoryIcon() {
1070 return mIcon;
1071 }
1072
1073 /** @hide */
Suprabh Shukla23593142015-11-03 17:31:15 -08001074 public static Bitmap loadTaskDescriptionIcon(String iconFilename, int userId) {
Jorim Jaggibdd4b202014-09-26 18:29:07 +02001075 if (iconFilename != null) {
1076 try {
Winson Chung1af8eda2016-02-05 17:55:56 +00001077 return ActivityManagerNative.getDefault().getTaskDescriptionIcon(iconFilename,
1078 userId);
Jorim Jaggibdd4b202014-09-26 18:29:07 +02001079 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07001080 throw e.rethrowFromSystemServer();
Jorim Jaggibdd4b202014-09-26 18:29:07 +02001081 }
1082 }
1083 return null;
1084 }
1085
Winson Chunga449dc02014-05-16 11:15:04 -07001086 /**
1087 * @return The color override on the theme's primary color.
1088 */
1089 public int getPrimaryColor() {
1090 return mColorPrimary;
Winson Chung03a9bae2014-05-02 09:56:12 -07001091 }
1092
Winson Chung1af8eda2016-02-05 17:55:56 +00001093 /**
1094 * @return The background color.
1095 * @hide
1096 */
1097 public int getBackgroundColor() {
1098 return mColorBackground;
1099 }
1100
Craig Mautner648f69b2014-09-18 14:16:26 -07001101 /** @hide */
1102 public void saveToXml(XmlSerializer out) throws IOException {
1103 if (mLabel != null) {
1104 out.attribute(null, ATTR_TASKDESCRIPTIONLABEL, mLabel);
1105 }
1106 if (mColorPrimary != 0) {
Winson Chung1af8eda2016-02-05 17:55:56 +00001107 out.attribute(null, ATTR_TASKDESCRIPTIONCOLOR_PRIMARY,
1108 Integer.toHexString(mColorPrimary));
1109 }
1110 if (mColorBackground != 0) {
1111 out.attribute(null, ATTR_TASKDESCRIPTIONCOLOR_BACKGROUND,
1112 Integer.toHexString(mColorBackground));
Craig Mautner648f69b2014-09-18 14:16:26 -07001113 }
1114 if (mIconFilename != null) {
1115 out.attribute(null, ATTR_TASKDESCRIPTIONICONFILENAME, mIconFilename);
1116 }
1117 }
1118
1119 /** @hide */
1120 public void restoreFromXml(String attrName, String attrValue) {
1121 if (ATTR_TASKDESCRIPTIONLABEL.equals(attrName)) {
1122 setLabel(attrValue);
Winson Chung1af8eda2016-02-05 17:55:56 +00001123 } else if (ATTR_TASKDESCRIPTIONCOLOR_PRIMARY.equals(attrName)) {
Craig Mautner648f69b2014-09-18 14:16:26 -07001124 setPrimaryColor((int) Long.parseLong(attrValue, 16));
Winson Chung1af8eda2016-02-05 17:55:56 +00001125 } else if (ATTR_TASKDESCRIPTIONCOLOR_BACKGROUND.equals(attrName)) {
1126 setBackgroundColor((int) Long.parseLong(attrValue, 16));
Craig Mautner648f69b2014-09-18 14:16:26 -07001127 } else if (ATTR_TASKDESCRIPTIONICONFILENAME.equals(attrName)) {
1128 setIconFilename(attrValue);
1129 }
1130 }
1131
Winson Chung03a9bae2014-05-02 09:56:12 -07001132 @Override
1133 public int describeContents() {
1134 return 0;
1135 }
1136
1137 @Override
1138 public void writeToParcel(Parcel dest, int flags) {
Winson Chunga449dc02014-05-16 11:15:04 -07001139 if (mLabel == null) {
Winson Chung03a9bae2014-05-02 09:56:12 -07001140 dest.writeInt(0);
1141 } else {
1142 dest.writeInt(1);
Winson Chunga449dc02014-05-16 11:15:04 -07001143 dest.writeString(mLabel);
Winson Chung03a9bae2014-05-02 09:56:12 -07001144 }
Winson Chunga449dc02014-05-16 11:15:04 -07001145 if (mIcon == null) {
1146 dest.writeInt(0);
1147 } else {
1148 dest.writeInt(1);
1149 mIcon.writeToParcel(dest, 0);
1150 }
1151 dest.writeInt(mColorPrimary);
Winson Chung1af8eda2016-02-05 17:55:56 +00001152 dest.writeInt(mColorBackground);
Craig Mautner648f69b2014-09-18 14:16:26 -07001153 if (mIconFilename == null) {
1154 dest.writeInt(0);
1155 } else {
1156 dest.writeInt(1);
1157 dest.writeString(mIconFilename);
1158 }
Winson Chung03a9bae2014-05-02 09:56:12 -07001159 }
1160
1161 public void readFromParcel(Parcel source) {
Winson Chunga449dc02014-05-16 11:15:04 -07001162 mLabel = source.readInt() > 0 ? source.readString() : null;
1163 mIcon = source.readInt() > 0 ? Bitmap.CREATOR.createFromParcel(source) : null;
1164 mColorPrimary = source.readInt();
Winson Chung1af8eda2016-02-05 17:55:56 +00001165 mColorBackground = source.readInt();
Craig Mautner648f69b2014-09-18 14:16:26 -07001166 mIconFilename = source.readInt() > 0 ? source.readString() : null;
Winson Chung03a9bae2014-05-02 09:56:12 -07001167 }
1168
Winson Chunga449dc02014-05-16 11:15:04 -07001169 public static final Creator<TaskDescription> CREATOR
1170 = new Creator<TaskDescription>() {
1171 public TaskDescription createFromParcel(Parcel source) {
1172 return new TaskDescription(source);
Winson Chung03a9bae2014-05-02 09:56:12 -07001173 }
Winson Chunga449dc02014-05-16 11:15:04 -07001174 public TaskDescription[] newArray(int size) {
1175 return new TaskDescription[size];
Winson Chung03a9bae2014-05-02 09:56:12 -07001176 }
1177 };
1178
1179 @Override
1180 public String toString() {
Winson Chunga449dc02014-05-16 11:15:04 -07001181 return "TaskDescription Label: " + mLabel + " Icon: " + mIcon +
Winson Chung1af8eda2016-02-05 17:55:56 +00001182 " IconFilename: " + mIconFilename + " colorPrimary: " + mColorPrimary +
1183 " colorBackground: " + mColorBackground;
Winson Chung03a9bae2014-05-02 09:56:12 -07001184 }
1185 }
1186
1187 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001188 * Information you can retrieve about tasks that the user has most recently
1189 * started or visited.
1190 */
1191 public static class RecentTaskInfo implements Parcelable {
1192 /**
1193 * If this task is currently running, this is the identifier for it.
1194 * If it is not running, this will be -1.
1195 */
1196 public int id;
1197
1198 /**
Dianne Hackbornd94df452011-02-16 18:53:31 -08001199 * The true identifier of this task, valid even if it is not running.
1200 */
1201 public int persistentId;
Stefan Kuhne16045c22015-06-05 07:18:06 -07001202
Dianne Hackbornd94df452011-02-16 18:53:31 -08001203 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001204 * The original Intent used to launch the task. You can use this
1205 * Intent to re-launch the task (if it is no longer running) or bring
1206 * the current task to the front.
1207 */
1208 public Intent baseIntent;
1209
1210 /**
1211 * If this task was started from an alias, this is the actual
1212 * activity component that was initially started; the component of
1213 * the baseIntent in this case is the name of the actual activity
1214 * implementation that the alias referred to. Otherwise, this is null.
1215 */
1216 public ComponentName origActivity;
Dianne Hackbornd2835932010-12-13 16:28:46 -08001217
1218 /**
James Cook4d0ef042015-07-09 14:28:23 -07001219 * The actual activity component that started the task.
1220 * @hide
1221 */
1222 @Nullable
1223 public ComponentName realActivity;
1224
1225 /**
Dianne Hackbornd2835932010-12-13 16:28:46 -08001226 * Description of the task's last state.
1227 */
1228 public CharSequence description;
Craig Mautner6d90fed2013-05-22 15:03:10 -07001229
1230 /**
1231 * The id of the ActivityStack this Task was on most recently.
Craig Mautner27030522013-08-26 12:25:36 -07001232 * @hide
Craig Mautner6d90fed2013-05-22 15:03:10 -07001233 */
1234 public int stackId;
1235
Kenny Guy82326a92014-03-17 17:16:06 +00001236 /**
Craig Mautner2fbd7542014-03-21 09:34:07 -07001237 * The id of the user the task was running as.
Kenny Guy82326a92014-03-17 17:16:06 +00001238 * @hide
1239 */
1240 public int userId;
1241
Craig Mautner2fbd7542014-03-21 09:34:07 -07001242 /**
Winson Chungffa2ec62014-07-03 15:54:42 -07001243 * The first time this task was active.
1244 * @hide
1245 */
1246 public long firstActiveTime;
1247
1248 /**
Winson Chungf1fbd772014-06-24 18:06:58 -07001249 * The last time this task was active.
1250 * @hide
1251 */
1252 public long lastActiveTime;
1253
1254 /**
Winson Chung03a9bae2014-05-02 09:56:12 -07001255 * The recent activity values for the highest activity in the stack to have set the values.
Winson Chunga449dc02014-05-16 11:15:04 -07001256 * {@link Activity#setTaskDescription(android.app.ActivityManager.TaskDescription)}.
Craig Mautner2fbd7542014-03-21 09:34:07 -07001257 */
Winson Chunga449dc02014-05-16 11:15:04 -07001258 public TaskDescription taskDescription;
Craig Mautner2fbd7542014-03-21 09:34:07 -07001259
Craig Mautnera228ae92014-07-09 05:44:55 -07001260 /**
1261 * Task affiliation for grouping with other tasks.
Craig Mautnera228ae92014-07-09 05:44:55 -07001262 */
1263 public int affiliatedTaskId;
1264
Winson Chungec396d62014-08-06 17:08:00 -07001265 /**
1266 * Task affiliation color of the source task with the affiliated task id.
1267 *
1268 * @hide
1269 */
1270 public int affiliatedTaskColor;
1271
Wale Ogunwale6035e012015-04-14 15:54:10 -07001272 /**
1273 * The component launched as the first activity in the task.
1274 * This can be considered the "application" of this task.
1275 */
1276 public ComponentName baseActivity;
1277
1278 /**
1279 * The activity component at the top of the history stack of the task.
1280 * This is what the user is currently doing.
1281 */
1282 public ComponentName topActivity;
1283
1284 /**
1285 * Number of activities in this task.
1286 */
1287 public int numActivities;
1288
Winson2dd76942015-11-02 09:20:01 -08001289 /**
1290 * The bounds of the task.
1291 * @hide
1292 */
1293 public Rect bounds;
1294
Wale Ogunwale21b60582016-01-27 12:34:16 -08001295 /**
1296 * True if the task can go in the docked stack.
1297 * @hide
1298 */
1299 public boolean isDockable;
1300
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001301 public RecentTaskInfo() {
1302 }
1303
Craig Mautner6d90fed2013-05-22 15:03:10 -07001304 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001305 public int describeContents() {
1306 return 0;
1307 }
1308
Craig Mautner6d90fed2013-05-22 15:03:10 -07001309 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001310 public void writeToParcel(Parcel dest, int flags) {
1311 dest.writeInt(id);
Dianne Hackbornd94df452011-02-16 18:53:31 -08001312 dest.writeInt(persistentId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001313 if (baseIntent != null) {
1314 dest.writeInt(1);
1315 baseIntent.writeToParcel(dest, 0);
1316 } else {
1317 dest.writeInt(0);
1318 }
1319 ComponentName.writeToParcel(origActivity, dest);
James Cook4d0ef042015-07-09 14:28:23 -07001320 ComponentName.writeToParcel(realActivity, dest);
Dianne Hackbornd2835932010-12-13 16:28:46 -08001321 TextUtils.writeToParcel(description, dest,
1322 Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
Winson Chunga449dc02014-05-16 11:15:04 -07001323 if (taskDescription != null) {
Craig Mautner2fbd7542014-03-21 09:34:07 -07001324 dest.writeInt(1);
Winson Chunga449dc02014-05-16 11:15:04 -07001325 taskDescription.writeToParcel(dest, 0);
Winson Chung03a9bae2014-05-02 09:56:12 -07001326 } else {
1327 dest.writeInt(0);
Craig Mautner2fbd7542014-03-21 09:34:07 -07001328 }
Craig Mautner6d90fed2013-05-22 15:03:10 -07001329 dest.writeInt(stackId);
Kenny Guy82326a92014-03-17 17:16:06 +00001330 dest.writeInt(userId);
Winson Chungffa2ec62014-07-03 15:54:42 -07001331 dest.writeLong(firstActiveTime);
Winson Chungf1fbd772014-06-24 18:06:58 -07001332 dest.writeLong(lastActiveTime);
Craig Mautnera228ae92014-07-09 05:44:55 -07001333 dest.writeInt(affiliatedTaskId);
Winson Chungec396d62014-08-06 17:08:00 -07001334 dest.writeInt(affiliatedTaskColor);
Wale Ogunwale6035e012015-04-14 15:54:10 -07001335 ComponentName.writeToParcel(baseActivity, dest);
1336 ComponentName.writeToParcel(topActivity, dest);
1337 dest.writeInt(numActivities);
Winson2dd76942015-11-02 09:20:01 -08001338 if (bounds != null) {
1339 dest.writeInt(1);
1340 bounds.writeToParcel(dest, 0);
1341 } else {
1342 dest.writeInt(0);
1343 }
Wale Ogunwale21b60582016-01-27 12:34:16 -08001344 dest.writeInt(isDockable ? 1 : 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001345 }
1346
1347 public void readFromParcel(Parcel source) {
1348 id = source.readInt();
Dianne Hackbornd94df452011-02-16 18:53:31 -08001349 persistentId = source.readInt();
Craig Mautner688b5102014-03-27 16:55:03 -07001350 baseIntent = source.readInt() > 0 ? Intent.CREATOR.createFromParcel(source) : null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001351 origActivity = ComponentName.readFromParcel(source);
James Cook4d0ef042015-07-09 14:28:23 -07001352 realActivity = ComponentName.readFromParcel(source);
Dianne Hackbornd2835932010-12-13 16:28:46 -08001353 description = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
Winson Chunga449dc02014-05-16 11:15:04 -07001354 taskDescription = source.readInt() > 0 ?
1355 TaskDescription.CREATOR.createFromParcel(source) : null;
Craig Mautner6d90fed2013-05-22 15:03:10 -07001356 stackId = source.readInt();
Kenny Guy82326a92014-03-17 17:16:06 +00001357 userId = source.readInt();
Winson Chungffa2ec62014-07-03 15:54:42 -07001358 firstActiveTime = source.readLong();
Winson Chungf1fbd772014-06-24 18:06:58 -07001359 lastActiveTime = source.readLong();
Craig Mautnera228ae92014-07-09 05:44:55 -07001360 affiliatedTaskId = source.readInt();
Winson Chungec396d62014-08-06 17:08:00 -07001361 affiliatedTaskColor = source.readInt();
Wale Ogunwale6035e012015-04-14 15:54:10 -07001362 baseActivity = ComponentName.readFromParcel(source);
1363 topActivity = ComponentName.readFromParcel(source);
1364 numActivities = source.readInt();
Winson2dd76942015-11-02 09:20:01 -08001365 bounds = source.readInt() > 0 ?
1366 Rect.CREATOR.createFromParcel(source) : null;
Wale Ogunwale21b60582016-01-27 12:34:16 -08001367 isDockable = source.readInt() == 1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001368 }
Craig Mautner6d90fed2013-05-22 15:03:10 -07001369
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001370 public static final Creator<RecentTaskInfo> CREATOR
1371 = new Creator<RecentTaskInfo>() {
1372 public RecentTaskInfo createFromParcel(Parcel source) {
1373 return new RecentTaskInfo(source);
1374 }
1375 public RecentTaskInfo[] newArray(int size) {
1376 return new RecentTaskInfo[size];
1377 }
1378 };
1379
1380 private RecentTaskInfo(Parcel source) {
1381 readFromParcel(source);
1382 }
1383 }
1384
1385 /**
1386 * Flag for use with {@link #getRecentTasks}: return all tasks, even those
1387 * that have set their
1388 * {@link android.content.Intent#FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS} flag.
1389 */
1390 public static final int RECENT_WITH_EXCLUDED = 0x0001;
Kenny Guy82326a92014-03-17 17:16:06 +00001391
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001392 /**
Dianne Hackbornd2835932010-12-13 16:28:46 -08001393 * Provides a list that does not contain any
Dianne Hackborn53d9264d2010-04-13 12:49:14 -07001394 * recent tasks that currently are not available to the user.
1395 */
1396 public static final int RECENT_IGNORE_UNAVAILABLE = 0x0002;
Dianne Hackbornd2835932010-12-13 16:28:46 -08001397
1398 /**
Kenny Guy2a764942014-04-02 13:29:20 +01001399 * Provides a list that contains recent tasks for all
1400 * profiles of a user.
Kenny Guy82326a92014-03-17 17:16:06 +00001401 * @hide
1402 */
Kenny Guy2a764942014-04-02 13:29:20 +01001403 public static final int RECENT_INCLUDE_PROFILES = 0x0004;
Kenny Guy82326a92014-03-17 17:16:06 +00001404
1405 /**
Winson Chunga4ccb862014-08-22 15:26:27 -07001406 * Ignores all tasks that are on the home stack.
1407 * @hide
1408 */
1409 public static final int RECENT_IGNORE_HOME_STACK_TASKS = 0x0008;
1410
1411 /**
Winson Chung0583d3d2015-12-18 10:03:12 -05001412 * Ignores all tasks that are on the docked stack.
1413 * @hide
1414 */
1415 public static final int RECENT_INGORE_DOCKED_STACK_TASKS = 0x0010;
1416
1417 /**
1418 * Ignores all tasks that are on the pinned stack.
1419 * @hide
1420 */
1421 public static final int RECENT_INGORE_PINNED_STACK_TASKS = 0x0020;
1422
1423 /**
Dianne Hackborna25a8b22014-05-30 12:30:35 -07001424 * <p></p>Return a list of the tasks that the user has recently launched, with
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001425 * the most recent being first and older ones after in order.
Dianne Hackbornc5bf7582012-04-25 19:12:07 -07001426 *
1427 * <p><b>Note: this method is only intended for debugging and presenting
1428 * task management user interfaces</b>. This should never be used for
1429 * core logic in an application, such as deciding between different
1430 * behaviors based on the information found here. Such uses are
1431 * <em>not</em> supported, and will likely break in the future. For
1432 * example, if multiple applications can be actively running at the
1433 * same time, assumptions made about the meaning of the data here for
1434 * purposes of control flow will be incorrect.</p>
1435 *
Dianne Hackborn955d8d62014-10-07 20:17:19 -07001436 * @deprecated As of {@link android.os.Build.VERSION_CODES#LOLLIPOP}, this method is
Dianne Hackborn2d7576b2014-10-03 16:26:04 -07001437 * no longer available to third party applications: the introduction of
Dianne Hackborna25a8b22014-05-30 12:30:35 -07001438 * document-centric recents means
1439 * it can leak personal information to the caller. For backwards compatibility,
1440 * it will still return a small subset of its data: at least the caller's
1441 * own tasks (though see {@link #getAppTasks()} for the correct supported
1442 * way to retrieve that information), and possibly some other tasks
1443 * such as home that are known to not be sensitive.
1444 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001445 * @param maxNum The maximum number of entries to return in the list. The
1446 * actual number returned may be smaller, depending on how many tasks the
1447 * user has started and the maximum number the system can remember.
Dianne Hackbornd2835932010-12-13 16:28:46 -08001448 * @param flags Information about what to return. May be any combination
Dianne Hackborn805fd7e2011-01-16 18:30:29 -08001449 * of {@link #RECENT_WITH_EXCLUDED} and {@link #RECENT_IGNORE_UNAVAILABLE}.
Stefan Kuhne16045c22015-06-05 07:18:06 -07001450 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001451 * @return Returns a list of RecentTaskInfo records describing each of
1452 * the recent tasks.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001453 */
Dianne Hackborna25a8b22014-05-30 12:30:35 -07001454 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001455 public List<RecentTaskInfo> getRecentTasks(int maxNum, int flags)
1456 throws SecurityException {
1457 try {
1458 return ActivityManagerNative.getDefault().getRecentTasks(maxNum,
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07001459 flags, UserHandle.myUserId());
Amith Yamasani82644082012-08-03 13:09:11 -07001460 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07001461 throw e.rethrowFromSystemServer();
Amith Yamasani82644082012-08-03 13:09:11 -07001462 }
1463 }
1464
1465 /**
1466 * Same as {@link #getRecentTasks(int, int)} but returns the recent tasks for a
1467 * specific user. It requires holding
1468 * the {@link android.Manifest.permission#INTERACT_ACROSS_USERS_FULL} permission.
1469 * @param maxNum The maximum number of entries to return in the list. The
1470 * actual number returned may be smaller, depending on how many tasks the
1471 * user has started and the maximum number the system can remember.
1472 * @param flags Information about what to return. May be any combination
1473 * of {@link #RECENT_WITH_EXCLUDED} and {@link #RECENT_IGNORE_UNAVAILABLE}.
1474 *
1475 * @return Returns a list of RecentTaskInfo records describing each of
Vadim Tryshev35605752015-08-31 13:28:08 -07001476 * the recent tasks. Most recently activated tasks go first.
Amith Yamasani82644082012-08-03 13:09:11 -07001477 *
Amith Yamasani82644082012-08-03 13:09:11 -07001478 * @hide
1479 */
1480 public List<RecentTaskInfo> getRecentTasksForUser(int maxNum, int flags, int userId)
1481 throws SecurityException {
1482 try {
1483 return ActivityManagerNative.getDefault().getRecentTasks(maxNum,
1484 flags, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001485 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07001486 throw e.rethrowFromSystemServer();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001487 }
1488 }
1489
1490 /**
1491 * Information you can retrieve about a particular task that is currently
1492 * "running" in the system. Note that a running task does not mean the
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001493 * given task actually has a process it is actively running in; it simply
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001494 * means that the user has gone to it and never closed it, but currently
1495 * the system may have killed its process and is only holding on to its
1496 * last state in order to restart it when the user returns.
1497 */
1498 public static class RunningTaskInfo implements Parcelable {
1499 /**
1500 * A unique identifier for this task.
1501 */
1502 public int id;
1503
1504 /**
Winson5510f6c2015-10-27 12:11:26 -07001505 * The stack that currently contains this task.
1506 * @hide
1507 */
1508 public int stackId;
1509
1510 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001511 * The component launched as the first activity in the task. This can
1512 * be considered the "application" of this task.
1513 */
1514 public ComponentName baseActivity;
1515
1516 /**
1517 * The activity component at the top of the history stack of the task.
1518 * This is what the user is currently doing.
1519 */
1520 public ComponentName topActivity;
1521
1522 /**
Dianne Hackborn805fd7e2011-01-16 18:30:29 -08001523 * Thumbnail representation of the task's current state. Currently
1524 * always null.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001525 */
1526 public Bitmap thumbnail;
1527
1528 /**
1529 * Description of the task's current state.
1530 */
1531 public CharSequence description;
1532
1533 /**
1534 * Number of activities in this task.
1535 */
1536 public int numActivities;
1537
1538 /**
1539 * Number of activities that are currently running (not stopped
1540 * and persisted) in this task.
1541 */
1542 public int numRunning;
1543
Craig Mautnerc0fd8052013-09-19 11:20:17 -07001544 /**
1545 * Last time task was run. For sorting.
1546 * @hide
1547 */
1548 public long lastActiveTime;
1549
Wale Ogunwale21b60582016-01-27 12:34:16 -08001550 /**
1551 * True if the task can go in the docked stack.
1552 * @hide
1553 */
1554 public boolean isDockable;
1555
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001556 public RunningTaskInfo() {
1557 }
1558
1559 public int describeContents() {
1560 return 0;
1561 }
1562
1563 public void writeToParcel(Parcel dest, int flags) {
1564 dest.writeInt(id);
Winson5510f6c2015-10-27 12:11:26 -07001565 dest.writeInt(stackId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001566 ComponentName.writeToParcel(baseActivity, dest);
1567 ComponentName.writeToParcel(topActivity, dest);
1568 if (thumbnail != null) {
1569 dest.writeInt(1);
1570 thumbnail.writeToParcel(dest, 0);
1571 } else {
1572 dest.writeInt(0);
1573 }
1574 TextUtils.writeToParcel(description, dest,
1575 Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
1576 dest.writeInt(numActivities);
1577 dest.writeInt(numRunning);
Jorim Jaggiaa6c5742016-03-01 14:10:14 +01001578 dest.writeInt(isDockable ? 1 : 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001579 }
1580
1581 public void readFromParcel(Parcel source) {
1582 id = source.readInt();
Winson5510f6c2015-10-27 12:11:26 -07001583 stackId = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001584 baseActivity = ComponentName.readFromParcel(source);
1585 topActivity = ComponentName.readFromParcel(source);
1586 if (source.readInt() != 0) {
1587 thumbnail = Bitmap.CREATOR.createFromParcel(source);
1588 } else {
1589 thumbnail = null;
1590 }
1591 description = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
1592 numActivities = source.readInt();
1593 numRunning = source.readInt();
Jorim Jaggiaa6c5742016-03-01 14:10:14 +01001594 isDockable = source.readInt() != 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001595 }
Stefan Kuhne16045c22015-06-05 07:18:06 -07001596
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001597 public static final Creator<RunningTaskInfo> CREATOR = new Creator<RunningTaskInfo>() {
1598 public RunningTaskInfo createFromParcel(Parcel source) {
1599 return new RunningTaskInfo(source);
1600 }
1601 public RunningTaskInfo[] newArray(int size) {
1602 return new RunningTaskInfo[size];
1603 }
1604 };
1605
1606 private RunningTaskInfo(Parcel source) {
1607 readFromParcel(source);
1608 }
1609 }
Winson Chung1147c402014-05-14 11:05:00 -07001610
1611 /**
1612 * Get the list of tasks associated with the calling application.
1613 *
1614 * @return The list of tasks associated with the application making this call.
1615 * @throws SecurityException
1616 */
1617 public List<ActivityManager.AppTask> getAppTasks() {
1618 ArrayList<AppTask> tasks = new ArrayList<AppTask>();
1619 List<IAppTask> appTasks;
1620 try {
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001621 appTasks = ActivityManagerNative.getDefault().getAppTasks(mContext.getPackageName());
Winson Chung1147c402014-05-14 11:05:00 -07001622 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07001623 throw e.rethrowFromSystemServer();
Winson Chung1147c402014-05-14 11:05:00 -07001624 }
1625 int numAppTasks = appTasks.size();
1626 for (int i = 0; i < numAppTasks; i++) {
1627 tasks.add(new AppTask(appTasks.get(i)));
1628 }
1629 return tasks;
1630 }
1631
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001632 /**
Winson Chung48a10a52014-08-27 14:36:51 -07001633 * Return the current design dimensions for {@link AppTask} thumbnails, for use
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001634 * with {@link #addAppTask}.
1635 */
Winson Chung48a10a52014-08-27 14:36:51 -07001636 public Size getAppTaskThumbnailSize() {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001637 synchronized (this) {
1638 ensureAppTaskThumbnailSizeLocked();
Winson Chung48a10a52014-08-27 14:36:51 -07001639 return new Size(mAppTaskThumbnailSize.x, mAppTaskThumbnailSize.y);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001640 }
1641 }
1642
1643 private void ensureAppTaskThumbnailSizeLocked() {
1644 if (mAppTaskThumbnailSize == null) {
1645 try {
1646 mAppTaskThumbnailSize = ActivityManagerNative.getDefault().getAppTaskThumbnailSize();
1647 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07001648 throw e.rethrowFromSystemServer();
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001649 }
1650 }
1651 }
1652
1653 /**
1654 * Add a new {@link AppTask} for the calling application. This will create a new
1655 * recents entry that is added to the <b>end</b> of all existing recents.
1656 *
1657 * @param activity The activity that is adding the entry. This is used to help determine
1658 * the context that the new recents entry will be in.
1659 * @param intent The Intent that describes the recents entry. This is the same Intent that
1660 * you would have used to launch the activity for it. In generally you will want to set
1661 * both {@link Intent#FLAG_ACTIVITY_NEW_DOCUMENT} and
1662 * {@link Intent#FLAG_ACTIVITY_RETAIN_IN_RECENTS}; the latter is required since this recents
1663 * entry will exist without an activity, so it doesn't make sense to not retain it when
1664 * its activity disappears. The given Intent here also must have an explicit ComponentName
1665 * set on it.
1666 * @param description Optional additional description information.
1667 * @param thumbnail Thumbnail to use for the recents entry. Should be the size given by
Winson Chung48a10a52014-08-27 14:36:51 -07001668 * {@link #getAppTaskThumbnailSize()}. If the bitmap is not that exact size, it will be
1669 * recreated in your process, probably in a way you don't like, before the recents entry
1670 * is added.
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001671 *
1672 * @return Returns the task id of the newly added app task, or -1 if the add failed. The
1673 * most likely cause of failure is that there is no more room for more tasks for your app.
1674 */
1675 public int addAppTask(@NonNull Activity activity, @NonNull Intent intent,
1676 @Nullable TaskDescription description, @NonNull Bitmap thumbnail) {
1677 Point size;
1678 synchronized (this) {
1679 ensureAppTaskThumbnailSizeLocked();
1680 size = mAppTaskThumbnailSize;
1681 }
1682 final int tw = thumbnail.getWidth();
1683 final int th = thumbnail.getHeight();
1684 if (tw != size.x || th != size.y) {
1685 Bitmap bm = Bitmap.createBitmap(size.x, size.y, thumbnail.getConfig());
1686
1687 // Use ScaleType.CENTER_CROP, except we leave the top edge at the top.
1688 float scale;
1689 float dx = 0, dy = 0;
1690 if (tw * size.x > size.y * th) {
1691 scale = (float) size.x / (float) th;
1692 dx = (size.y - tw * scale) * 0.5f;
1693 } else {
1694 scale = (float) size.y / (float) tw;
1695 dy = (size.x - th * scale) * 0.5f;
1696 }
1697 Matrix matrix = new Matrix();
1698 matrix.setScale(scale, scale);
1699 matrix.postTranslate((int) (dx + 0.5f), 0);
1700
1701 Canvas canvas = new Canvas(bm);
1702 canvas.drawBitmap(thumbnail, matrix, null);
1703 canvas.setBitmap(null);
1704
1705 thumbnail = bm;
1706 }
1707 if (description == null) {
1708 description = new TaskDescription();
1709 }
1710 try {
1711 return ActivityManagerNative.getDefault().addAppTask(activity.getActivityToken(),
1712 intent, description, thumbnail);
1713 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07001714 throw e.rethrowFromSystemServer();
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001715 }
1716 }
1717
1718 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001719 * Return a list of the tasks that are currently running, with
1720 * the most recent being first and older ones after in order. Note that
1721 * "running" does not mean any of the task's code is currently loaded or
1722 * activity -- the task may have been frozen by the system, so that it
1723 * can be restarted in its previous state when next brought to the
1724 * foreground.
Jim Miller0b2a6d02010-07-13 18:01:29 -07001725 *
Dianne Hackbornc5bf7582012-04-25 19:12:07 -07001726 * <p><b>Note: this method is only intended for debugging and presenting
1727 * task management user interfaces</b>. This should never be used for
1728 * core logic in an application, such as deciding between different
1729 * behaviors based on the information found here. Such uses are
1730 * <em>not</em> supported, and will likely break in the future. For
1731 * example, if multiple applications can be actively running at the
1732 * same time, assumptions made about the meaning of the data here for
1733 * purposes of control flow will be incorrect.</p>
1734 *
Dianne Hackborn955d8d62014-10-07 20:17:19 -07001735 * @deprecated As of {@link android.os.Build.VERSION_CODES#LOLLIPOP}, this method
Dianne Hackborna25a8b22014-05-30 12:30:35 -07001736 * is no longer available to third party
1737 * applications: the introduction of document-centric recents means
1738 * it can leak person information to the caller. For backwards compatibility,
1739 * it will still retu rn a small subset of its data: at least the caller's
1740 * own tasks, and possibly some other tasks
1741 * such as home that are known to not be sensitive.
1742 *
Jim Miller0b2a6d02010-07-13 18:01:29 -07001743 * @param maxNum The maximum number of entries to return in the list. The
1744 * actual number returned may be smaller, depending on how many tasks the
1745 * user has started.
1746 *
1747 * @return Returns a list of RunningTaskInfo records describing each of
1748 * the running tasks.
Jim Miller0b2a6d02010-07-13 18:01:29 -07001749 */
Dianne Hackborna25a8b22014-05-30 12:30:35 -07001750 @Deprecated
Jim Miller0b2a6d02010-07-13 18:01:29 -07001751 public List<RunningTaskInfo> getRunningTasks(int maxNum)
1752 throws SecurityException {
Dianne Hackborn09233282014-04-30 11:33:59 -07001753 try {
1754 return ActivityManagerNative.getDefault().getTasks(maxNum, 0);
1755 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07001756 throw e.rethrowFromSystemServer();
Dianne Hackborn09233282014-04-30 11:33:59 -07001757 }
Jim Miller0b2a6d02010-07-13 18:01:29 -07001758 }
1759
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001760 /**
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001761 * Completely remove the given task.
1762 *
1763 * @param taskId Identifier of the task to be removed.
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001764 * @return Returns true if the given task was found and removed.
1765 *
1766 * @hide
1767 */
Wale Ogunwaled54b5782014-10-23 15:55:23 -07001768 public boolean removeTask(int taskId) throws SecurityException {
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001769 try {
Wale Ogunwaled54b5782014-10-23 15:55:23 -07001770 return ActivityManagerNative.getDefault().removeTask(taskId);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001771 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07001772 throw e.rethrowFromSystemServer();
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001773 }
1774 }
1775
Winsonc809cbb2015-11-02 12:06:15 -08001776 /**
1777 * Metadata related to the {@link TaskThumbnail}.
1778 *
1779 * @hide
1780 */
1781 public static class TaskThumbnailInfo implements Parcelable {
1782 /** @hide */
1783 public static final String ATTR_TASK_THUMBNAILINFO_PREFIX = "task_thumbnailinfo_";
1784 private static final String ATTR_TASK_WIDTH =
1785 ATTR_TASK_THUMBNAILINFO_PREFIX + "task_width";
1786 private static final String ATTR_TASK_HEIGHT =
1787 ATTR_TASK_THUMBNAILINFO_PREFIX + "task_height";
1788 private static final String ATTR_SCREEN_ORIENTATION =
1789 ATTR_TASK_THUMBNAILINFO_PREFIX + "screen_orientation";
1790
1791 public int taskWidth;
1792 public int taskHeight;
1793 public int screenOrientation;
1794
1795 public TaskThumbnailInfo() {
1796 // Do nothing
1797 }
1798
1799 private TaskThumbnailInfo(Parcel source) {
1800 readFromParcel(source);
1801 }
1802
Winsonc6a2da02015-11-11 18:11:59 -08001803 /**
1804 * Resets this info state to the initial state.
1805 * @hide
1806 */
1807 public void reset() {
1808 taskWidth = 0;
1809 taskHeight = 0;
1810 screenOrientation = 0;
1811 }
1812
Winsonc809cbb2015-11-02 12:06:15 -08001813 /** @hide */
1814 public void saveToXml(XmlSerializer out) throws IOException {
1815 out.attribute(null, ATTR_TASK_WIDTH, Integer.toString(taskWidth));
1816 out.attribute(null, ATTR_TASK_HEIGHT, Integer.toString(taskHeight));
1817 out.attribute(null, ATTR_SCREEN_ORIENTATION, Integer.toString(screenOrientation));
1818 }
1819
1820 /** @hide */
1821 public void restoreFromXml(String attrName, String attrValue) {
1822 if (ATTR_TASK_WIDTH.equals(attrName)) {
1823 taskWidth = Integer.parseInt(attrValue);
1824 } else if (ATTR_TASK_HEIGHT.equals(attrName)) {
1825 taskHeight = Integer.parseInt(attrValue);
1826 } else if (ATTR_SCREEN_ORIENTATION.equals(attrName)) {
1827 screenOrientation = Integer.parseInt(attrValue);
1828 }
1829 }
1830
1831 public int describeContents() {
1832 return 0;
1833 }
1834
1835 public void writeToParcel(Parcel dest, int flags) {
1836 dest.writeInt(taskWidth);
1837 dest.writeInt(taskHeight);
1838 dest.writeInt(screenOrientation);
1839 }
1840
1841 public void readFromParcel(Parcel source) {
1842 taskWidth = source.readInt();
1843 taskHeight = source.readInt();
1844 screenOrientation = source.readInt();
1845 }
1846
1847 public static final Creator<TaskThumbnailInfo> CREATOR = new Creator<TaskThumbnailInfo>() {
1848 public TaskThumbnailInfo createFromParcel(Parcel source) {
1849 return new TaskThumbnailInfo(source);
1850 }
1851 public TaskThumbnailInfo[] newArray(int size) {
1852 return new TaskThumbnailInfo[size];
1853 }
1854 };
1855 }
1856
Dianne Hackbornd94df452011-02-16 18:53:31 -08001857 /** @hide */
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001858 public static class TaskThumbnail implements Parcelable {
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001859 public Bitmap mainThumbnail;
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001860 public ParcelFileDescriptor thumbnailFileDescriptor;
Winsonc809cbb2015-11-02 12:06:15 -08001861 public TaskThumbnailInfo thumbnailInfo;
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001862
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001863 public TaskThumbnail() {
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001864 }
1865
Winsonc809cbb2015-11-02 12:06:15 -08001866 private TaskThumbnail(Parcel source) {
1867 readFromParcel(source);
1868 }
1869
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001870 public int describeContents() {
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001871 if (thumbnailFileDescriptor != null) {
1872 return thumbnailFileDescriptor.describeContents();
1873 }
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001874 return 0;
1875 }
1876
1877 public void writeToParcel(Parcel dest, int flags) {
1878 if (mainThumbnail != null) {
1879 dest.writeInt(1);
Dianne Hackborn852975d2014-08-22 17:42:43 -07001880 mainThumbnail.writeToParcel(dest, flags);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001881 } else {
1882 dest.writeInt(0);
1883 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001884 if (thumbnailFileDescriptor != null) {
1885 dest.writeInt(1);
Dianne Hackborn852975d2014-08-22 17:42:43 -07001886 thumbnailFileDescriptor.writeToParcel(dest, flags);
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001887 } else {
1888 dest.writeInt(0);
1889 }
Winsonc809cbb2015-11-02 12:06:15 -08001890 if (thumbnailInfo != null) {
1891 dest.writeInt(1);
1892 thumbnailInfo.writeToParcel(dest, flags);
1893 } else {
1894 dest.writeInt(0);
1895 }
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001896 }
1897
1898 public void readFromParcel(Parcel source) {
1899 if (source.readInt() != 0) {
1900 mainThumbnail = Bitmap.CREATOR.createFromParcel(source);
1901 } else {
1902 mainThumbnail = null;
1903 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001904 if (source.readInt() != 0) {
1905 thumbnailFileDescriptor = ParcelFileDescriptor.CREATOR.createFromParcel(source);
1906 } else {
1907 thumbnailFileDescriptor = null;
1908 }
Winsonc809cbb2015-11-02 12:06:15 -08001909 if (source.readInt() != 0) {
1910 thumbnailInfo = TaskThumbnailInfo.CREATOR.createFromParcel(source);
1911 } else {
1912 thumbnailInfo = null;
1913 }
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001914 }
1915
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001916 public static final Creator<TaskThumbnail> CREATOR = new Creator<TaskThumbnail>() {
1917 public TaskThumbnail createFromParcel(Parcel source) {
1918 return new TaskThumbnail(source);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001919 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001920 public TaskThumbnail[] newArray(int size) {
1921 return new TaskThumbnail[size];
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001922 }
1923 };
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001924 }
1925
1926 /** @hide */
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001927 public TaskThumbnail getTaskThumbnail(int id) throws SecurityException {
Dianne Hackbornd94df452011-02-16 18:53:31 -08001928 try {
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001929 return ActivityManagerNative.getDefault().getTaskThumbnail(id);
Dianne Hackborn15491c62012-09-19 10:59:14 -07001930 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07001931 throw e.rethrowFromSystemServer();
Dianne Hackborn15491c62012-09-19 10:59:14 -07001932 }
1933 }
1934
Winson Chung303e1ff2014-03-07 15:06:19 -08001935 /** @hide */
1936 public boolean isInHomeStack(int taskId) {
1937 try {
1938 return ActivityManagerNative.getDefault().isInHomeStack(taskId);
1939 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07001940 throw e.rethrowFromSystemServer();
Winson Chung303e1ff2014-03-07 15:06:19 -08001941 }
1942 }
1943
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001944 /**
Dianne Hackborn621e17d2010-11-22 15:59:56 -08001945 * Flag for {@link #moveTaskToFront(int, int)}: also move the "home"
1946 * activity along with the task, so it is positioned immediately behind
1947 * the task.
1948 */
1949 public static final int MOVE_TASK_WITH_HOME = 0x00000001;
1950
1951 /**
Dianne Hackbornd94df452011-02-16 18:53:31 -08001952 * Flag for {@link #moveTaskToFront(int, int)}: don't count this as a
1953 * user-instigated action, so the current activity will not receive a
1954 * hint that the user is leaving.
1955 */
1956 public static final int MOVE_TASK_NO_USER_ACTION = 0x00000002;
1957
1958 /**
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001959 * Equivalent to calling {@link #moveTaskToFront(int, int, Bundle)}
1960 * with a null options argument.
1961 *
1962 * @param taskId The identifier of the task to be moved, as found in
1963 * {@link RunningTaskInfo} or {@link RecentTaskInfo}.
1964 * @param flags Additional operational flags, 0 or more of
Craig Mautnerecbfe252013-03-28 11:58:25 -07001965 * {@link #MOVE_TASK_WITH_HOME}, {@link #MOVE_TASK_NO_USER_ACTION}.
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001966 */
1967 public void moveTaskToFront(int taskId, int flags) {
1968 moveTaskToFront(taskId, flags, null);
1969 }
1970
1971 /**
Dianne Hackborn621e17d2010-11-22 15:59:56 -08001972 * Ask that the task associated with a given task ID be moved to the
1973 * front of the stack, so it is now visible to the user. Requires that
1974 * the caller hold permission {@link android.Manifest.permission#REORDER_TASKS}
1975 * or a SecurityException will be thrown.
1976 *
1977 * @param taskId The identifier of the task to be moved, as found in
1978 * {@link RunningTaskInfo} or {@link RecentTaskInfo}.
1979 * @param flags Additional operational flags, 0 or more of
Craig Mautnerecbfe252013-03-28 11:58:25 -07001980 * {@link #MOVE_TASK_WITH_HOME}, {@link #MOVE_TASK_NO_USER_ACTION}.
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001981 * @param options Additional options for the operation, either null or
1982 * as per {@link Context#startActivity(Intent, android.os.Bundle)
1983 * Context.startActivity(Intent, Bundle)}.
Dianne Hackborn621e17d2010-11-22 15:59:56 -08001984 */
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001985 public void moveTaskToFront(int taskId, int flags, Bundle options) {
Dianne Hackborn621e17d2010-11-22 15:59:56 -08001986 try {
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001987 ActivityManagerNative.getDefault().moveTaskToFront(taskId, flags, options);
Dianne Hackborn621e17d2010-11-22 15:59:56 -08001988 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07001989 throw e.rethrowFromSystemServer();
Dianne Hackborn621e17d2010-11-22 15:59:56 -08001990 }
1991 }
1992
1993 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001994 * Information you can retrieve about a particular Service that is
1995 * currently running in the system.
1996 */
1997 public static class RunningServiceInfo implements Parcelable {
1998 /**
1999 * The service component.
2000 */
2001 public ComponentName service;
2002
2003 /**
2004 * If non-zero, this is the process the service is running in.
2005 */
2006 public int pid;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002007
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002008 /**
Dianne Hackborn3025ef32009-08-31 21:31:47 -07002009 * The UID that owns this service.
2010 */
2011 public int uid;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002012
Dianne Hackborn3025ef32009-08-31 21:31:47 -07002013 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002014 * The name of the process this service runs in.
2015 */
2016 public String process;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002017
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002018 /**
2019 * Set to true if the service has asked to run as a foreground process.
2020 */
2021 public boolean foreground;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002022
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002023 /**
Dianne Hackborn3025ef32009-08-31 21:31:47 -07002024 * The time when the service was first made active, either by someone
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07002025 * starting or binding to it. This
2026 * is in units of {@link android.os.SystemClock#elapsedRealtime()}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002027 */
2028 public long activeSince;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002029
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002030 /**
2031 * Set to true if this service has been explicitly started.
2032 */
2033 public boolean started;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002034
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002035 /**
2036 * Number of clients connected to the service.
2037 */
2038 public int clientCount;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002039
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002040 /**
2041 * Number of times the service's process has crashed while the service
2042 * is running.
2043 */
2044 public int crashCount;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002045
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002046 /**
2047 * The time when there was last activity in the service (either
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07002048 * explicit requests to start it or clients binding to it). This
2049 * is in units of {@link android.os.SystemClock#uptimeMillis()}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002050 */
2051 public long lastActivityTime;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002052
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002053 /**
2054 * If non-zero, this service is not currently running, but scheduled to
2055 * restart at the given time.
2056 */
2057 public long restarting;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002058
Dianne Hackborn3025ef32009-08-31 21:31:47 -07002059 /**
2060 * Bit for {@link #flags}: set if this service has been
2061 * explicitly started.
2062 */
2063 public static final int FLAG_STARTED = 1<<0;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002064
Dianne Hackborn3025ef32009-08-31 21:31:47 -07002065 /**
2066 * Bit for {@link #flags}: set if the service has asked to
2067 * run as a foreground process.
2068 */
2069 public static final int FLAG_FOREGROUND = 1<<1;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002070
Dianne Hackborn3025ef32009-08-31 21:31:47 -07002071 /**
2072 * Bit for {@link #flags): set if the service is running in a
2073 * core system process.
2074 */
2075 public static final int FLAG_SYSTEM_PROCESS = 1<<2;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002076
Dianne Hackborn3025ef32009-08-31 21:31:47 -07002077 /**
2078 * Bit for {@link #flags): set if the service is running in a
2079 * persistent process.
2080 */
2081 public static final int FLAG_PERSISTENT_PROCESS = 1<<3;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002082
Dianne Hackborn3025ef32009-08-31 21:31:47 -07002083 /**
2084 * Running flags.
2085 */
2086 public int flags;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002087
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07002088 /**
2089 * For special services that are bound to by system code, this is
2090 * the package that holds the binding.
2091 */
2092 public String clientPackage;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002093
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07002094 /**
2095 * For special services that are bound to by system code, this is
2096 * a string resource providing a user-visible label for who the
2097 * client is.
2098 */
2099 public int clientLabel;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002100
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002101 public RunningServiceInfo() {
2102 }
2103
2104 public int describeContents() {
2105 return 0;
2106 }
2107
2108 public void writeToParcel(Parcel dest, int flags) {
2109 ComponentName.writeToParcel(service, dest);
2110 dest.writeInt(pid);
Dianne Hackborn3025ef32009-08-31 21:31:47 -07002111 dest.writeInt(uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002112 dest.writeString(process);
2113 dest.writeInt(foreground ? 1 : 0);
2114 dest.writeLong(activeSince);
2115 dest.writeInt(started ? 1 : 0);
2116 dest.writeInt(clientCount);
2117 dest.writeInt(crashCount);
2118 dest.writeLong(lastActivityTime);
2119 dest.writeLong(restarting);
Dianne Hackborn3025ef32009-08-31 21:31:47 -07002120 dest.writeInt(this.flags);
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07002121 dest.writeString(clientPackage);
2122 dest.writeInt(clientLabel);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002123 }
2124
2125 public void readFromParcel(Parcel source) {
2126 service = ComponentName.readFromParcel(source);
2127 pid = source.readInt();
Dianne Hackborn3025ef32009-08-31 21:31:47 -07002128 uid = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002129 process = source.readString();
2130 foreground = source.readInt() != 0;
2131 activeSince = source.readLong();
2132 started = source.readInt() != 0;
2133 clientCount = source.readInt();
2134 crashCount = source.readInt();
2135 lastActivityTime = source.readLong();
2136 restarting = source.readLong();
Dianne Hackborn3025ef32009-08-31 21:31:47 -07002137 flags = source.readInt();
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07002138 clientPackage = source.readString();
2139 clientLabel = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002140 }
Stefan Kuhne16045c22015-06-05 07:18:06 -07002141
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002142 public static final Creator<RunningServiceInfo> CREATOR = new Creator<RunningServiceInfo>() {
2143 public RunningServiceInfo createFromParcel(Parcel source) {
2144 return new RunningServiceInfo(source);
2145 }
2146 public RunningServiceInfo[] newArray(int size) {
2147 return new RunningServiceInfo[size];
2148 }
2149 };
2150
2151 private RunningServiceInfo(Parcel source) {
2152 readFromParcel(source);
2153 }
2154 }
2155
2156 /**
2157 * Return a list of the services that are currently running.
Dianne Hackbornc5bf7582012-04-25 19:12:07 -07002158 *
2159 * <p><b>Note: this method is only intended for debugging or implementing
2160 * service management type user interfaces.</b></p>
2161 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002162 * @param maxNum The maximum number of entries to return in the list. The
2163 * actual number returned may be smaller, depending on how many services
2164 * are running.
Stefan Kuhne16045c22015-06-05 07:18:06 -07002165 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002166 * @return Returns a list of RunningServiceInfo records describing each of
2167 * the running tasks.
2168 */
2169 public List<RunningServiceInfo> getRunningServices(int maxNum)
2170 throws SecurityException {
2171 try {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002172 return ActivityManagerNative.getDefault()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002173 .getServices(maxNum, 0);
2174 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07002175 throw e.rethrowFromSystemServer();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002176 }
2177 }
Stefan Kuhne16045c22015-06-05 07:18:06 -07002178
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002179 /**
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07002180 * Returns a PendingIntent you can start to show a control panel for the
2181 * given running service. If the service does not have a control panel,
2182 * null is returned.
2183 */
2184 public PendingIntent getRunningServiceControlPanel(ComponentName service)
2185 throws SecurityException {
2186 try {
2187 return ActivityManagerNative.getDefault()
2188 .getRunningServiceControlPanel(service);
2189 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07002190 throw e.rethrowFromSystemServer();
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07002191 }
2192 }
Stefan Kuhne16045c22015-06-05 07:18:06 -07002193
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07002194 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002195 * Information you can retrieve about the available memory through
2196 * {@link ActivityManager#getMemoryInfo}.
2197 */
2198 public static class MemoryInfo implements Parcelable {
2199 /**
Dianne Hackborn59325eb2012-05-09 18:45:20 -07002200 * The available memory on the system. This number should not
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002201 * be considered absolute: due to the nature of the kernel, a significant
2202 * portion of this memory is actually in use and needed for the overall
2203 * system to run well.
2204 */
2205 public long availMem;
Dianne Hackborn59325eb2012-05-09 18:45:20 -07002206
2207 /**
2208 * The total memory accessible by the kernel. This is basically the
2209 * RAM size of the device, not including below-kernel fixed allocations
2210 * like DMA buffers, RAM for the baseband CPU, etc.
2211 */
2212 public long totalMem;
2213
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002214 /**
2215 * The threshold of {@link #availMem} at which we consider memory to be
2216 * low and start killing background services and other non-extraneous
2217 * processes.
2218 */
2219 public long threshold;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002220
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002221 /**
2222 * Set to true if the system considers itself to currently be in a low
2223 * memory situation.
2224 */
2225 public boolean lowMemory;
2226
Dianne Hackborn7d608422011-08-07 16:24:18 -07002227 /** @hide */
2228 public long hiddenAppThreshold;
2229 /** @hide */
2230 public long secondaryServerThreshold;
2231 /** @hide */
2232 public long visibleAppThreshold;
2233 /** @hide */
2234 public long foregroundAppThreshold;
2235
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002236 public MemoryInfo() {
2237 }
2238
2239 public int describeContents() {
2240 return 0;
2241 }
2242
2243 public void writeToParcel(Parcel dest, int flags) {
2244 dest.writeLong(availMem);
Dianne Hackborn59325eb2012-05-09 18:45:20 -07002245 dest.writeLong(totalMem);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002246 dest.writeLong(threshold);
2247 dest.writeInt(lowMemory ? 1 : 0);
Dianne Hackborn7d608422011-08-07 16:24:18 -07002248 dest.writeLong(hiddenAppThreshold);
2249 dest.writeLong(secondaryServerThreshold);
2250 dest.writeLong(visibleAppThreshold);
2251 dest.writeLong(foregroundAppThreshold);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002252 }
Stefan Kuhne16045c22015-06-05 07:18:06 -07002253
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002254 public void readFromParcel(Parcel source) {
2255 availMem = source.readLong();
Dianne Hackborn59325eb2012-05-09 18:45:20 -07002256 totalMem = source.readLong();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002257 threshold = source.readLong();
2258 lowMemory = source.readInt() != 0;
Dianne Hackborn7d608422011-08-07 16:24:18 -07002259 hiddenAppThreshold = source.readLong();
2260 secondaryServerThreshold = source.readLong();
2261 visibleAppThreshold = source.readLong();
2262 foregroundAppThreshold = source.readLong();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002263 }
2264
2265 public static final Creator<MemoryInfo> CREATOR
2266 = new Creator<MemoryInfo>() {
2267 public MemoryInfo createFromParcel(Parcel source) {
2268 return new MemoryInfo(source);
2269 }
2270 public MemoryInfo[] newArray(int size) {
2271 return new MemoryInfo[size];
2272 }
2273 };
2274
2275 private MemoryInfo(Parcel source) {
2276 readFromParcel(source);
2277 }
2278 }
2279
Dianne Hackbornc5bf7582012-04-25 19:12:07 -07002280 /**
2281 * Return general information about the memory state of the system. This
2282 * can be used to help decide how to manage your own memory, though note
2283 * that polling is not recommended and
2284 * {@link android.content.ComponentCallbacks2#onTrimMemory(int)
2285 * ComponentCallbacks2.onTrimMemory(int)} is the preferred way to do this.
2286 * Also see {@link #getMyMemoryState} for how to retrieve the current trim
2287 * level of your process as needed, which gives a better hint for how to
2288 * manage its memory.
2289 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002290 public void getMemoryInfo(MemoryInfo outInfo) {
2291 try {
2292 ActivityManagerNative.getDefault().getMemoryInfo(outInfo);
2293 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07002294 throw e.rethrowFromSystemServer();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002295 }
2296 }
Craig Mautner967212c2013-04-13 21:10:58 -07002297
Craig Mautner5ff12102013-05-24 12:50:15 -07002298 /**
Craig Mautner967212c2013-04-13 21:10:58 -07002299 * Information you can retrieve about an ActivityStack in the system.
2300 * @hide
2301 */
2302 public static class StackInfo implements Parcelable {
2303 public int stackId;
Craig Mautnered6649f2013-12-02 14:08:25 -08002304 public Rect bounds = new Rect();
Craig Mautner967212c2013-04-13 21:10:58 -07002305 public int[] taskIds;
2306 public String[] taskNames;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07002307 public Rect[] taskBounds;
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08002308 public int[] taskUserIds;
Craig Mautnered6649f2013-12-02 14:08:25 -08002309 public int displayId;
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08002310 public int userId;
Craig Mautner967212c2013-04-13 21:10:58 -07002311
Craig Mautner967212c2013-04-13 21:10:58 -07002312 @Override
2313 public int describeContents() {
2314 return 0;
2315 }
2316
2317 @Override
2318 public void writeToParcel(Parcel dest, int flags) {
2319 dest.writeInt(stackId);
2320 dest.writeInt(bounds.left);
2321 dest.writeInt(bounds.top);
2322 dest.writeInt(bounds.right);
2323 dest.writeInt(bounds.bottom);
2324 dest.writeIntArray(taskIds);
2325 dest.writeStringArray(taskNames);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07002326 final int boundsCount = taskBounds == null ? 0 : taskBounds.length;
2327 dest.writeInt(boundsCount);
2328 for (int i = 0; i < boundsCount; i++) {
2329 dest.writeInt(taskBounds[i].left);
2330 dest.writeInt(taskBounds[i].top);
2331 dest.writeInt(taskBounds[i].right);
2332 dest.writeInt(taskBounds[i].bottom);
2333 }
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08002334 dest.writeIntArray(taskUserIds);
Craig Mautnered6649f2013-12-02 14:08:25 -08002335 dest.writeInt(displayId);
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08002336 dest.writeInt(userId);
Craig Mautner967212c2013-04-13 21:10:58 -07002337 }
2338
2339 public void readFromParcel(Parcel source) {
2340 stackId = source.readInt();
2341 bounds = new Rect(
2342 source.readInt(), source.readInt(), source.readInt(), source.readInt());
2343 taskIds = source.createIntArray();
2344 taskNames = source.createStringArray();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07002345 final int boundsCount = source.readInt();
2346 if (boundsCount > 0) {
2347 taskBounds = new Rect[boundsCount];
2348 for (int i = 0; i < boundsCount; i++) {
2349 taskBounds[i] = new Rect();
2350 taskBounds[i].set(
2351 source.readInt(), source.readInt(), source.readInt(), source.readInt());
2352 }
2353 } else {
2354 taskBounds = null;
2355 }
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08002356 taskUserIds = source.createIntArray();
Craig Mautnered6649f2013-12-02 14:08:25 -08002357 displayId = source.readInt();
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08002358 userId = source.readInt();
Craig Mautner967212c2013-04-13 21:10:58 -07002359 }
2360
2361 public static final Creator<StackInfo> CREATOR = new Creator<StackInfo>() {
2362 @Override
2363 public StackInfo createFromParcel(Parcel source) {
2364 return new StackInfo(source);
2365 }
2366 @Override
2367 public StackInfo[] newArray(int size) {
2368 return new StackInfo[size];
2369 }
2370 };
2371
Craig Mautner5ff12102013-05-24 12:50:15 -07002372 public StackInfo() {
2373 }
2374
Craig Mautner967212c2013-04-13 21:10:58 -07002375 private StackInfo(Parcel source) {
2376 readFromParcel(source);
2377 }
2378
Craig Mautner5ff12102013-05-24 12:50:15 -07002379 public String toString(String prefix) {
Craig Mautner967212c2013-04-13 21:10:58 -07002380 StringBuilder sb = new StringBuilder(256);
Craig Mautner5ff12102013-05-24 12:50:15 -07002381 sb.append(prefix); sb.append("Stack id="); sb.append(stackId);
Craig Mautnered6649f2013-12-02 14:08:25 -08002382 sb.append(" bounds="); sb.append(bounds.toShortString());
2383 sb.append(" displayId="); sb.append(displayId);
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08002384 sb.append(" userId="); sb.append(userId);
Craig Mautnered6649f2013-12-02 14:08:25 -08002385 sb.append("\n");
Craig Mautner5ff12102013-05-24 12:50:15 -07002386 prefix = prefix + " ";
Craig Mautner967212c2013-04-13 21:10:58 -07002387 for (int i = 0; i < taskIds.length; ++i) {
2388 sb.append(prefix); sb.append("taskId="); sb.append(taskIds[i]);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07002389 sb.append(": "); sb.append(taskNames[i]);
2390 if (taskBounds != null) {
2391 sb.append(" bounds="); sb.append(taskBounds[i].toShortString());
2392 }
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08002393 sb.append(" userId=").append(taskUserIds[i]);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07002394 sb.append("\n");
Craig Mautner967212c2013-04-13 21:10:58 -07002395 }
2396 return sb.toString();
2397 }
Craig Mautner5ff12102013-05-24 12:50:15 -07002398
2399 @Override
2400 public String toString() {
2401 return toString("");
2402 }
Craig Mautner967212c2013-04-13 21:10:58 -07002403 }
2404
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002405 /**
2406 * @hide
2407 */
2408 public boolean clearApplicationUserData(String packageName, IPackageDataObserver observer) {
2409 try {
Stefan Kuhne16045c22015-06-05 07:18:06 -07002410 return ActivityManagerNative.getDefault().clearApplicationUserData(packageName,
Dianne Hackborn41203752012-08-31 14:05:51 -07002411 observer, UserHandle.myUserId());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002412 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07002413 throw e.rethrowFromSystemServer();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002414 }
2415 }
Christopher Tatea3664242013-06-26 15:00:18 -07002416
2417 /**
2418 * Permits an application to erase its own data from disk. This is equivalent to
Dianne Hackbornebc15ef2013-10-09 17:36:57 -07002419 * the user choosing to clear the app's data from within the device settings UI. It
2420 * erases all dynamic data associated with the app -- its private data and data in its
2421 * private area on external storage -- but does not remove the installed application
2422 * itself, nor any OBB files.
Christopher Tatea3664242013-06-26 15:00:18 -07002423 *
2424 * @return {@code true} if the application successfully requested that the application's
2425 * data be erased; {@code false} otherwise.
2426 */
2427 public boolean clearApplicationUserData() {
2428 return clearApplicationUserData(mContext.getPackageName(), null);
2429 }
2430
Felipe Lemef3fa0f82016-01-07 12:08:19 -08002431
2432 /**
2433 * Permits an application to get the persistent URI permissions granted to another.
2434 *
2435 * <p>Typically called by Settings.
2436 *
2437 * @param packageName application to look for the granted permissions
2438 * @return list of granted URI permissions
2439 *
2440 * @hide
2441 */
2442 public ParceledListSlice<UriPermission> getGrantedUriPermissions(String packageName) {
2443 try {
2444 return ActivityManagerNative.getDefault().getGrantedUriPermissions(packageName,
2445 UserHandle.myUserId());
2446 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07002447 throw e.rethrowFromSystemServer();
Felipe Lemef3fa0f82016-01-07 12:08:19 -08002448 }
2449 }
2450
2451 /**
2452 * Permits an application to clear the persistent URI permissions granted to another.
2453 *
2454 * <p>Typically called by Settings.
2455 *
2456 * @param packageName application to clear its granted permissions
2457 *
2458 * @hide
2459 */
2460 public void clearGrantedUriPermissions(String packageName) {
2461 try {
2462 ActivityManagerNative.getDefault().clearGrantedUriPermissions(packageName,
2463 UserHandle.myUserId());
2464 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07002465 throw e.rethrowFromSystemServer();
Felipe Lemef3fa0f82016-01-07 12:08:19 -08002466 }
2467 }
2468
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002469 /**
2470 * Information you can retrieve about any processes that are in an error condition.
2471 */
2472 public static class ProcessErrorStateInfo implements Parcelable {
2473 /**
2474 * Condition codes
2475 */
2476 public static final int NO_ERROR = 0;
2477 public static final int CRASHED = 1;
2478 public static final int NOT_RESPONDING = 2;
2479
2480 /**
2481 * The condition that the process is in.
2482 */
2483 public int condition;
2484
2485 /**
2486 * The process name in which the crash or error occurred.
2487 */
2488 public String processName;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002489
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002490 /**
2491 * The pid of this process; 0 if none
2492 */
2493 public int pid;
2494
2495 /**
2496 * The kernel user-ID that has been assigned to this process;
2497 * currently this is not a unique ID (multiple applications can have
2498 * the same uid).
2499 */
2500 public int uid;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002501
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002502 /**
Dan Egnor60d87622009-12-16 16:32:58 -08002503 * The activity name associated with the error, if known. May be null.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002504 */
2505 public String tag;
2506
2507 /**
2508 * A short message describing the error condition.
2509 */
2510 public String shortMsg;
2511
2512 /**
2513 * A long message describing the error condition.
2514 */
2515 public String longMsg;
2516
2517 /**
Dan Egnorb7f03672009-12-09 16:22:32 -08002518 * The stack trace where the error originated. May be null.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002519 */
Dan Egnorb7f03672009-12-09 16:22:32 -08002520 public String stackTrace;
2521
2522 /**
2523 * to be deprecated: This value will always be null.
2524 */
2525 public byte[] crashData = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002526
2527 public ProcessErrorStateInfo() {
2528 }
2529
Craig Mautner5ff12102013-05-24 12:50:15 -07002530 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002531 public int describeContents() {
2532 return 0;
2533 }
2534
Craig Mautner5ff12102013-05-24 12:50:15 -07002535 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002536 public void writeToParcel(Parcel dest, int flags) {
2537 dest.writeInt(condition);
2538 dest.writeString(processName);
2539 dest.writeInt(pid);
2540 dest.writeInt(uid);
2541 dest.writeString(tag);
2542 dest.writeString(shortMsg);
2543 dest.writeString(longMsg);
Dan Egnorb7f03672009-12-09 16:22:32 -08002544 dest.writeString(stackTrace);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002545 }
Craig Mautner5ff12102013-05-24 12:50:15 -07002546
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002547 public void readFromParcel(Parcel source) {
2548 condition = source.readInt();
2549 processName = source.readString();
2550 pid = source.readInt();
2551 uid = source.readInt();
2552 tag = source.readString();
2553 shortMsg = source.readString();
2554 longMsg = source.readString();
Dan Egnorb7f03672009-12-09 16:22:32 -08002555 stackTrace = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002556 }
Stefan Kuhne16045c22015-06-05 07:18:06 -07002557
2558 public static final Creator<ProcessErrorStateInfo> CREATOR =
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002559 new Creator<ProcessErrorStateInfo>() {
2560 public ProcessErrorStateInfo createFromParcel(Parcel source) {
2561 return new ProcessErrorStateInfo(source);
2562 }
2563 public ProcessErrorStateInfo[] newArray(int size) {
2564 return new ProcessErrorStateInfo[size];
2565 }
2566 };
2567
2568 private ProcessErrorStateInfo(Parcel source) {
2569 readFromParcel(source);
2570 }
2571 }
Stefan Kuhne16045c22015-06-05 07:18:06 -07002572
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002573 /**
Stefan Kuhne16045c22015-06-05 07:18:06 -07002574 * Returns a list of any processes that are currently in an error condition. The result
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002575 * will be null if all processes are running properly at this time.
Stefan Kuhne16045c22015-06-05 07:18:06 -07002576 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002577 * @return Returns a list of ProcessErrorStateInfo records, or null if there are no
2578 * current error conditions (it will not return an empty list). This list ordering is not
2579 * specified.
2580 */
2581 public List<ProcessErrorStateInfo> getProcessesInErrorState() {
2582 try {
2583 return ActivityManagerNative.getDefault().getProcessesInErrorState();
2584 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07002585 throw e.rethrowFromSystemServer();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002586 }
2587 }
2588
2589 /**
2590 * Information you can retrieve about a running process.
2591 */
Stefan Kuhne16045c22015-06-05 07:18:06 -07002592 public static class RunningAppProcessInfo implements Parcelable {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002593 /**
2594 * The name of the process that this object is associated with
2595 */
2596 public String processName;
2597
2598 /**
2599 * The pid of this process; 0 if none
2600 */
2601 public int pid;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002602
Dianne Hackborneb034652009-09-07 00:49:58 -07002603 /**
2604 * The user id of this process.
2605 */
2606 public int uid;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002607
Dianne Hackbornbaf42c62010-06-24 11:23:39 -07002608 /**
2609 * All packages that have been loaded into the process.
2610 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002611 public String pkgList[];
Stefan Kuhne16045c22015-06-05 07:18:06 -07002612
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002613 /**
Dianne Hackborn482566e2010-09-03 12:51:28 -07002614 * Constant for {@link #flags}: this is an app that is unable to
2615 * correctly save its state when going to the background,
2616 * so it can not be killed while in the background.
2617 * @hide
Dianne Hackbornbaf42c62010-06-24 11:23:39 -07002618 */
Dianne Hackborn482566e2010-09-03 12:51:28 -07002619 public static final int FLAG_CANT_SAVE_STATE = 1<<0;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002620
Dianne Hackbornbaf42c62010-06-24 11:23:39 -07002621 /**
Dianne Hackborn42499172010-10-15 18:45:07 -07002622 * Constant for {@link #flags}: this process is associated with a
2623 * persistent system app.
2624 * @hide
2625 */
2626 public static final int FLAG_PERSISTENT = 1<<1;
2627
2628 /**
Dianne Hackborn0c380492012-08-20 17:23:30 -07002629 * Constant for {@link #flags}: this process is associated with a
2630 * persistent system app.
2631 * @hide
2632 */
2633 public static final int FLAG_HAS_ACTIVITIES = 1<<2;
2634
2635 /**
Dianne Hackbornbaf42c62010-06-24 11:23:39 -07002636 * Flags of information. May be any of
Dianne Hackborn482566e2010-09-03 12:51:28 -07002637 * {@link #FLAG_CANT_SAVE_STATE}.
2638 * @hide
Dianne Hackbornbaf42c62010-06-24 11:23:39 -07002639 */
2640 public int flags;
Dianne Hackborn27ff9132012-03-06 14:57:58 -08002641
2642 /**
2643 * Last memory trim level reported to the process: corresponds to
2644 * the values supplied to {@link android.content.ComponentCallbacks2#onTrimMemory(int)
2645 * ComponentCallbacks2.onTrimMemory(int)}.
2646 */
2647 public int lastTrimLevel;
2648
Dianne Hackbornbaf42c62010-06-24 11:23:39 -07002649 /**
Dianne Hackborn1e383822015-04-10 14:02:33 -07002650 * Constant for {@link #importance}: This process is running the
2651 * foreground UI; that is, it is the thing currently at the top of the screen
2652 * that the user is interacting with.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002653 */
2654 public static final int IMPORTANCE_FOREGROUND = 100;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002655
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002656 /**
Dianne Hackborn1e383822015-04-10 14:02:33 -07002657 * Constant for {@link #importance}: This process is running a foreground
2658 * service, for example to perform music playback even while the user is
2659 * not immediately in the app. This generally indicates that the process
2660 * is doing something the user actively cares about.
2661 */
2662 public static final int IMPORTANCE_FOREGROUND_SERVICE = 125;
2663
2664 /**
2665 * Constant for {@link #importance}: This process is running the foreground
2666 * UI, but the device is asleep so it is not visible to the user. This means
2667 * the user is not really aware of the process, because they can not see or
2668 * interact with it, but it is quite important because it what they expect to
2669 * return to once unlocking the device.
2670 */
2671 public static final int IMPORTANCE_TOP_SLEEPING = 150;
2672
2673 /**
2674 * Constant for {@link #importance}: This process is running something
Dianne Hackborn32907cf2010-06-10 17:50:20 -07002675 * that is actively visible to the user, though not in the immediate
Dianne Hackborn1e383822015-04-10 14:02:33 -07002676 * foreground. This may be running a window that is behind the current
2677 * foreground (so paused and with its state saved, not interacting with
2678 * the user, but visible to them to some degree); it may also be running
2679 * other services under the system's control that it inconsiders important.
Dianne Hackborn860755f2010-06-03 18:47:52 -07002680 */
Dianne Hackborn32907cf2010-06-10 17:50:20 -07002681 public static final int IMPORTANCE_VISIBLE = 200;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002682
Dianne Hackborn860755f2010-06-03 18:47:52 -07002683 /**
Dianne Hackborn1e383822015-04-10 14:02:33 -07002684 * Constant for {@link #importance}: This process is not something the user
2685 * is directly aware of, but is otherwise perceptable to them to some degree.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002686 */
Dianne Hackborn32907cf2010-06-10 17:50:20 -07002687 public static final int IMPORTANCE_PERCEPTIBLE = 130;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002688
Dianne Hackborn32907cf2010-06-10 17:50:20 -07002689 /**
Dianne Hackborn1e383822015-04-10 14:02:33 -07002690 * Constant for {@link #importance}: This process is running an
Dianne Hackborn5383f502010-10-22 12:59:20 -07002691 * application that can not save its state, and thus can't be killed
2692 * while in the background.
2693 * @hide
Dianne Hackborn32907cf2010-06-10 17:50:20 -07002694 */
Dianne Hackborn5383f502010-10-22 12:59:20 -07002695 public static final int IMPORTANCE_CANT_SAVE_STATE = 170;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002696
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002697 /**
Dianne Hackborn1e383822015-04-10 14:02:33 -07002698 * Constant for {@link #importance}: This process is contains services
2699 * that should remain running. These are background services apps have
2700 * started, not something the user is aware of, so they may be killed by
2701 * the system relatively freely (though it is generally desired that they
2702 * stay running as long as they want to).
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002703 */
2704 public static final int IMPORTANCE_SERVICE = 300;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002705
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002706 /**
Dianne Hackborn1e383822015-04-10 14:02:33 -07002707 * Constant for {@link #importance}: This process process contains
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002708 * background code that is expendable.
2709 */
2710 public static final int IMPORTANCE_BACKGROUND = 400;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002711
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002712 /**
Dianne Hackborn1e383822015-04-10 14:02:33 -07002713 * Constant for {@link #importance}: This process is empty of any
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002714 * actively running code.
2715 */
2716 public static final int IMPORTANCE_EMPTY = 500;
Dianne Hackbornfee756f2014-07-16 17:31:10 -07002717
2718 /**
Dianne Hackborn1e383822015-04-10 14:02:33 -07002719 * Constant for {@link #importance}: This process does not exist.
Dianne Hackbornfee756f2014-07-16 17:31:10 -07002720 */
2721 public static final int IMPORTANCE_GONE = 1000;
2722
2723 /** @hide */
2724 public static int procStateToImportance(int procState) {
Dianne Hackborn1e383822015-04-10 14:02:33 -07002725 if (procState == PROCESS_STATE_NONEXISTENT) {
2726 return IMPORTANCE_GONE;
2727 } else if (procState >= PROCESS_STATE_HOME) {
2728 return IMPORTANCE_BACKGROUND;
2729 } else if (procState >= PROCESS_STATE_SERVICE) {
2730 return IMPORTANCE_SERVICE;
2731 } else if (procState > PROCESS_STATE_HEAVY_WEIGHT) {
2732 return IMPORTANCE_CANT_SAVE_STATE;
2733 } else if (procState >= PROCESS_STATE_IMPORTANT_BACKGROUND) {
2734 return IMPORTANCE_PERCEPTIBLE;
2735 } else if (procState >= PROCESS_STATE_IMPORTANT_FOREGROUND) {
2736 return IMPORTANCE_VISIBLE;
2737 } else if (procState >= PROCESS_STATE_TOP_SLEEPING) {
2738 return IMPORTANCE_TOP_SLEEPING;
2739 } else if (procState >= PROCESS_STATE_FOREGROUND_SERVICE) {
2740 return IMPORTANCE_FOREGROUND_SERVICE;
Dianne Hackbornfee756f2014-07-16 17:31:10 -07002741 } else {
Dianne Hackborn1e383822015-04-10 14:02:33 -07002742 return IMPORTANCE_FOREGROUND;
Dianne Hackbornfee756f2014-07-16 17:31:10 -07002743 }
2744 }
2745
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002746 /**
2747 * The relative importance level that the system places on this
2748 * process. May be one of {@link #IMPORTANCE_FOREGROUND},
2749 * {@link #IMPORTANCE_VISIBLE}, {@link #IMPORTANCE_SERVICE},
2750 * {@link #IMPORTANCE_BACKGROUND}, or {@link #IMPORTANCE_EMPTY}. These
2751 * constants are numbered so that "more important" values are always
2752 * smaller than "less important" values.
2753 */
2754 public int importance;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002755
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002756 /**
2757 * An additional ordering within a particular {@link #importance}
2758 * category, providing finer-grained information about the relative
2759 * utility of processes within a category. This number means nothing
2760 * except that a smaller values are more recently used (and thus
2761 * more important). Currently an LRU value is only maintained for
2762 * the {@link #IMPORTANCE_BACKGROUND} category, though others may
2763 * be maintained in the future.
2764 */
2765 public int lru;
Dianne Hackborn27ff9132012-03-06 14:57:58 -08002766
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07002767 /**
2768 * Constant for {@link #importanceReasonCode}: nothing special has
2769 * been specified for the reason for this level.
2770 */
2771 public static final int REASON_UNKNOWN = 0;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002772
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07002773 /**
2774 * Constant for {@link #importanceReasonCode}: one of the application's
2775 * content providers is being used by another process. The pid of
2776 * the client process is in {@link #importanceReasonPid} and the
2777 * target provider in this process is in
2778 * {@link #importanceReasonComponent}.
2779 */
2780 public static final int REASON_PROVIDER_IN_USE = 1;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002781
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07002782 /**
2783 * Constant for {@link #importanceReasonCode}: one of the application's
2784 * content providers is being used by another process. The pid of
2785 * the client process is in {@link #importanceReasonPid} and the
2786 * target provider in this process is in
2787 * {@link #importanceReasonComponent}.
2788 */
2789 public static final int REASON_SERVICE_IN_USE = 2;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002790
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07002791 /**
2792 * The reason for {@link #importance}, if any.
2793 */
2794 public int importanceReasonCode;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002795
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07002796 /**
2797 * For the specified values of {@link #importanceReasonCode}, this
2798 * is the process ID of the other process that is a client of this
2799 * process. This will be 0 if no other process is using this one.
2800 */
2801 public int importanceReasonPid;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002802
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07002803 /**
2804 * For the specified values of {@link #importanceReasonCode}, this
2805 * is the name of the component that is being used in this process.
2806 */
2807 public ComponentName importanceReasonComponent;
Stefan Kuhne16045c22015-06-05 07:18:06 -07002808
Dianne Hackborn905577f2011-09-07 18:31:28 -07002809 /**
Dianne Hackborncbfd23e2013-06-11 14:26:53 -07002810 * When {@link #importanceReasonPid} is non-0, this is the importance
Dianne Hackborn905577f2011-09-07 18:31:28 -07002811 * of the other pid. @hide
2812 */
2813 public int importanceReasonImportance;
2814
Dianne Hackborn684bf342014-04-29 17:56:57 -07002815 /**
2816 * Current process state, as per PROCESS_STATE_* constants.
2817 * @hide
2818 */
2819 public int processState;
2820
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002821 public RunningAppProcessInfo() {
2822 importance = IMPORTANCE_FOREGROUND;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07002823 importanceReasonCode = REASON_UNKNOWN;
Dianne Hackborn684bf342014-04-29 17:56:57 -07002824 processState = PROCESS_STATE_IMPORTANT_FOREGROUND;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002825 }
Stefan Kuhne16045c22015-06-05 07:18:06 -07002826
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002827 public RunningAppProcessInfo(String pProcessName, int pPid, String pArr[]) {
2828 processName = pProcessName;
2829 pid = pPid;
2830 pkgList = pArr;
2831 }
2832
2833 public int describeContents() {
2834 return 0;
2835 }
2836
2837 public void writeToParcel(Parcel dest, int flags) {
2838 dest.writeString(processName);
2839 dest.writeInt(pid);
Dianne Hackborneb034652009-09-07 00:49:58 -07002840 dest.writeInt(uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002841 dest.writeStringArray(pkgList);
Dianne Hackbornbaf42c62010-06-24 11:23:39 -07002842 dest.writeInt(this.flags);
Dianne Hackborn27ff9132012-03-06 14:57:58 -08002843 dest.writeInt(lastTrimLevel);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002844 dest.writeInt(importance);
2845 dest.writeInt(lru);
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07002846 dest.writeInt(importanceReasonCode);
2847 dest.writeInt(importanceReasonPid);
2848 ComponentName.writeToParcel(importanceReasonComponent, dest);
Dianne Hackborn905577f2011-09-07 18:31:28 -07002849 dest.writeInt(importanceReasonImportance);
Dianne Hackborn684bf342014-04-29 17:56:57 -07002850 dest.writeInt(processState);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002851 }
2852
2853 public void readFromParcel(Parcel source) {
2854 processName = source.readString();
2855 pid = source.readInt();
Dianne Hackborneb034652009-09-07 00:49:58 -07002856 uid = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002857 pkgList = source.readStringArray();
Dianne Hackbornbaf42c62010-06-24 11:23:39 -07002858 flags = source.readInt();
Dianne Hackborn27ff9132012-03-06 14:57:58 -08002859 lastTrimLevel = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002860 importance = source.readInt();
2861 lru = source.readInt();
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07002862 importanceReasonCode = source.readInt();
2863 importanceReasonPid = source.readInt();
2864 importanceReasonComponent = ComponentName.readFromParcel(source);
Dianne Hackborn905577f2011-09-07 18:31:28 -07002865 importanceReasonImportance = source.readInt();
Dianne Hackborn684bf342014-04-29 17:56:57 -07002866 processState = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002867 }
2868
Stefan Kuhne16045c22015-06-05 07:18:06 -07002869 public static final Creator<RunningAppProcessInfo> CREATOR =
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002870 new Creator<RunningAppProcessInfo>() {
2871 public RunningAppProcessInfo createFromParcel(Parcel source) {
2872 return new RunningAppProcessInfo(source);
2873 }
2874 public RunningAppProcessInfo[] newArray(int size) {
2875 return new RunningAppProcessInfo[size];
2876 }
2877 };
2878
2879 private RunningAppProcessInfo(Parcel source) {
2880 readFromParcel(source);
2881 }
2882 }
Stefan Kuhne16045c22015-06-05 07:18:06 -07002883
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002884 /**
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -07002885 * Returns a list of application processes installed on external media
2886 * that are running on the device.
2887 *
Dianne Hackbornc5bf7582012-04-25 19:12:07 -07002888 * <p><b>Note: this method is only intended for debugging or building
2889 * a user-facing process management UI.</b></p>
2890 *
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -07002891 * @return Returns a list of ApplicationInfo records, or null if none
2892 * This list ordering is not specified.
2893 * @hide
2894 */
2895 public List<ApplicationInfo> getRunningExternalApplications() {
2896 try {
2897 return ActivityManagerNative.getDefault().getRunningExternalApplications();
2898 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07002899 throw e.rethrowFromSystemServer();
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -07002900 }
2901 }
2902
2903 /**
Stefan Kuhne16045c22015-06-05 07:18:06 -07002904 * Sets the memory trim mode for a process and schedules a memory trim operation.
2905 *
2906 * <p><b>Note: this method is only intended for testing framework.</b></p>
2907 *
2908 * @return Returns true if successful.
2909 * @hide
2910 */
2911 public boolean setProcessMemoryTrimLevel(String process, int userId, int level) {
2912 try {
2913 return ActivityManagerNative.getDefault().setProcessMemoryTrimLevel(process, userId,
2914 level);
2915 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07002916 throw e.rethrowFromSystemServer();
Stefan Kuhne16045c22015-06-05 07:18:06 -07002917 }
2918 }
2919
2920 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002921 * Returns a list of application processes that are running on the device.
Dianne Hackbornc5bf7582012-04-25 19:12:07 -07002922 *
2923 * <p><b>Note: this method is only intended for debugging or building
2924 * a user-facing process management UI.</b></p>
2925 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002926 * @return Returns a list of RunningAppProcessInfo records, or null if there are no
2927 * running processes (it will not return an empty list). This list ordering is not
2928 * specified.
2929 */
2930 public List<RunningAppProcessInfo> getRunningAppProcesses() {
2931 try {
2932 return ActivityManagerNative.getDefault().getRunningAppProcesses();
2933 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07002934 throw e.rethrowFromSystemServer();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002935 }
2936 }
Dianne Hackborn27ff9132012-03-06 14:57:58 -08002937
2938 /**
Dianne Hackborn1e383822015-04-10 14:02:33 -07002939 * Return the importance of a given package name, based on the processes that are
2940 * currently running. The return value is one of the importance constants defined
2941 * in {@link RunningAppProcessInfo}, giving you the highest importance of all the
2942 * processes that this package has code running inside of. If there are no processes
2943 * running its code, {@link RunningAppProcessInfo#IMPORTANCE_GONE} is returned.
Jeff Sharkeyf85ac772015-05-13 12:52:06 -07002944 * @hide
Dianne Hackborn1e383822015-04-10 14:02:33 -07002945 */
Dianne Hackbornb7258942015-05-13 15:10:24 -07002946 @SystemApi
Dianne Hackborn1e383822015-04-10 14:02:33 -07002947 public int getPackageImportance(String packageName) {
2948 try {
Adam Lesinskic30454c2015-06-24 13:24:35 -07002949 int procState = ActivityManagerNative.getDefault().getPackageProcessState(packageName,
2950 mContext.getOpPackageName());
Dianne Hackborn1e383822015-04-10 14:02:33 -07002951 return RunningAppProcessInfo.procStateToImportance(procState);
2952 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07002953 throw e.rethrowFromSystemServer();
Dianne Hackborn1e383822015-04-10 14:02:33 -07002954 }
2955 }
2956
2957 /**
Dianne Hackborn27ff9132012-03-06 14:57:58 -08002958 * Return global memory state information for the calling process. This
2959 * does not fill in all fields of the {@link RunningAppProcessInfo}. The
2960 * only fields that will be filled in are
2961 * {@link RunningAppProcessInfo#pid},
2962 * {@link RunningAppProcessInfo#uid},
2963 * {@link RunningAppProcessInfo#lastTrimLevel},
2964 * {@link RunningAppProcessInfo#importance},
2965 * {@link RunningAppProcessInfo#lru}, and
2966 * {@link RunningAppProcessInfo#importanceReasonCode}.
2967 */
2968 static public void getMyMemoryState(RunningAppProcessInfo outState) {
2969 try {
2970 ActivityManagerNative.getDefault().getMyMemoryState(outState);
2971 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07002972 throw e.rethrowFromSystemServer();
Dianne Hackborn27ff9132012-03-06 14:57:58 -08002973 }
2974 }
2975
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002976 /**
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -07002977 * Return information about the memory usage of one or more processes.
Dianne Hackbornc5bf7582012-04-25 19:12:07 -07002978 *
2979 * <p><b>Note: this method is only intended for debugging or building
2980 * a user-facing process management UI.</b></p>
2981 *
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -07002982 * @param pids The pids of the processes whose memory usage is to be
2983 * retrieved.
2984 * @return Returns an array of memory information, one for each
2985 * requested pid.
2986 */
2987 public Debug.MemoryInfo[] getProcessMemoryInfo(int[] pids) {
2988 try {
2989 return ActivityManagerNative.getDefault().getProcessMemoryInfo(pids);
2990 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07002991 throw e.rethrowFromSystemServer();
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -07002992 }
2993 }
Stefan Kuhne16045c22015-06-05 07:18:06 -07002994
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -07002995 /**
Dianne Hackborn03abb812010-01-04 18:43:19 -08002996 * @deprecated This is now just a wrapper for
2997 * {@link #killBackgroundProcesses(String)}; the previous behavior here
2998 * is no longer available to applications because it allows them to
2999 * break other applications by removing their alarms, stopping their
3000 * services, etc.
3001 */
3002 @Deprecated
3003 public void restartPackage(String packageName) {
3004 killBackgroundProcesses(packageName);
3005 }
Stefan Kuhne16045c22015-06-05 07:18:06 -07003006
Dianne Hackborn03abb812010-01-04 18:43:19 -08003007 /**
3008 * Have the system immediately kill all background processes associated
3009 * with the given package. This is the same as the kernel killing those
3010 * processes to reclaim memory; the system will take care of restarting
3011 * these processes in the future as needed.
Stefan Kuhne16045c22015-06-05 07:18:06 -07003012 *
Dianne Hackborn03abb812010-01-04 18:43:19 -08003013 * <p>You must hold the permission
3014 * {@link android.Manifest.permission#KILL_BACKGROUND_PROCESSES} to be able to
3015 * call this method.
Stefan Kuhne16045c22015-06-05 07:18:06 -07003016 *
Dianne Hackborn03abb812010-01-04 18:43:19 -08003017 * @param packageName The name of the package whose processes are to
3018 * be killed.
3019 */
3020 public void killBackgroundProcesses(String packageName) {
3021 try {
Dianne Hackborn1676c852012-09-10 14:52:30 -07003022 ActivityManagerNative.getDefault().killBackgroundProcesses(packageName,
3023 UserHandle.myUserId());
Dianne Hackborn03abb812010-01-04 18:43:19 -08003024 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003025 throw e.rethrowFromSystemServer();
Dianne Hackborn03abb812010-01-04 18:43:19 -08003026 }
3027 }
Svet Ganov019d2302015-05-04 11:07:38 -07003028
3029 /**
3030 * Kills the specified UID.
3031 * @param uid The UID to kill.
3032 * @param reason The reason for the kill.
3033 *
3034 * @hide
3035 */
Svet Ganov019d2302015-05-04 11:07:38 -07003036 @RequiresPermission(Manifest.permission.KILL_UID)
3037 public void killUid(int uid, String reason) {
3038 try {
Svetoslavaa41add2015-08-06 15:03:55 -07003039 ActivityManagerNative.getDefault().killUid(UserHandle.getAppId(uid),
3040 UserHandle.getUserId(uid), reason);
Svet Ganov019d2302015-05-04 11:07:38 -07003041 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003042 throw e.rethrowFromSystemServer();
Svet Ganov019d2302015-05-04 11:07:38 -07003043 }
3044 }
3045
Dianne Hackborn03abb812010-01-04 18:43:19 -08003046 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003047 * Have the system perform a force stop of everything associated with
3048 * the given application package. All processes that share its uid
3049 * will be killed, all services it has running stopped, all activities
3050 * removed, etc. In addition, a {@link Intent#ACTION_PACKAGE_RESTARTED}
3051 * broadcast will be sent, so that any of its registered alarms can
3052 * be stopped, notifications removed, etc.
Stefan Kuhne16045c22015-06-05 07:18:06 -07003053 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003054 * <p>You must hold the permission
Dianne Hackborn03abb812010-01-04 18:43:19 -08003055 * {@link android.Manifest.permission#FORCE_STOP_PACKAGES} to be able to
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003056 * call this method.
Stefan Kuhne16045c22015-06-05 07:18:06 -07003057 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003058 * @param packageName The name of the package to be stopped.
Zoltan Szatmary-Ban0bec95d2014-09-23 17:27:17 +01003059 * @param userId The user for which the running package is to be stopped.
Stefan Kuhne16045c22015-06-05 07:18:06 -07003060 *
Dianne Hackborn03abb812010-01-04 18:43:19 -08003061 * @hide This is not available to third party applications due to
3062 * it allowing them to break other applications by stopping their
3063 * services, removing their alarms, etc.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003064 */
Zoltan Szatmary-Ban0bec95d2014-09-23 17:27:17 +01003065 public void forceStopPackageAsUser(String packageName, int userId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003066 try {
Zoltan Szatmary-Ban0bec95d2014-09-23 17:27:17 +01003067 ActivityManagerNative.getDefault().forceStopPackage(packageName, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003068 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003069 throw e.rethrowFromSystemServer();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003070 }
3071 }
Zoltan Szatmary-Ban0bec95d2014-09-23 17:27:17 +01003072
3073 /**
3074 * @see #forceStopPackageAsUser(String, int)
3075 * @hide
3076 */
3077 public void forceStopPackage(String packageName) {
3078 forceStopPackageAsUser(packageName, UserHandle.myUserId());
3079 }
3080
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003081 /**
3082 * Get the device configuration attributes.
3083 */
3084 public ConfigurationInfo getDeviceConfigurationInfo() {
3085 try {
3086 return ActivityManagerNative.getDefault().getDeviceConfigurationInfo();
3087 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003088 throw e.rethrowFromSystemServer();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003089 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003090 }
Kenny Root5ef44b72011-01-26 17:22:20 -08003091
3092 /**
3093 * Get the preferred density of icons for the launcher. This is used when
3094 * custom drawables are created (e.g., for shortcuts).
3095 *
3096 * @return density in terms of DPI
3097 */
3098 public int getLauncherLargeIconDensity() {
3099 final Resources res = mContext.getResources();
3100 final int density = res.getDisplayMetrics().densityDpi;
Dianne Hackbornd96e3df2012-01-25 15:12:23 -08003101 final int sw = res.getConfiguration().smallestScreenWidthDp;
Kenny Root5ef44b72011-01-26 17:22:20 -08003102
Dianne Hackbornd96e3df2012-01-25 15:12:23 -08003103 if (sw < 600) {
3104 // Smaller than approx 7" tablets, use the regular icon size.
Kenny Root5ef44b72011-01-26 17:22:20 -08003105 return density;
3106 }
3107
3108 switch (density) {
3109 case DisplayMetrics.DENSITY_LOW:
3110 return DisplayMetrics.DENSITY_MEDIUM;
3111 case DisplayMetrics.DENSITY_MEDIUM:
3112 return DisplayMetrics.DENSITY_HIGH;
Dianne Hackbornd0356a12012-04-26 19:03:12 -07003113 case DisplayMetrics.DENSITY_TV:
3114 return DisplayMetrics.DENSITY_XHIGH;
Kenny Root5ef44b72011-01-26 17:22:20 -08003115 case DisplayMetrics.DENSITY_HIGH:
3116 return DisplayMetrics.DENSITY_XHIGH;
3117 case DisplayMetrics.DENSITY_XHIGH:
Dianne Hackbornd96e3df2012-01-25 15:12:23 -08003118 return DisplayMetrics.DENSITY_XXHIGH;
3119 case DisplayMetrics.DENSITY_XXHIGH:
3120 return DisplayMetrics.DENSITY_XHIGH * 2;
Kenny Root5ef44b72011-01-26 17:22:20 -08003121 default:
Dianne Hackbornd96e3df2012-01-25 15:12:23 -08003122 // The density is some abnormal value. Return some other
3123 // abnormal value that is a reasonable scaling of it.
Dianne Hackbornd0356a12012-04-26 19:03:12 -07003124 return (int)((density*1.5f)+.5f);
Kenny Root5ef44b72011-01-26 17:22:20 -08003125 }
3126 }
3127
3128 /**
3129 * Get the preferred launcher icon size. This is used when custom drawables
3130 * are created (e.g., for shortcuts).
3131 *
3132 * @return dimensions of square icons in terms of pixels
3133 */
3134 public int getLauncherLargeIconSize() {
Craig Mautner2fbd7542014-03-21 09:34:07 -07003135 return getLauncherLargeIconSizeInner(mContext);
3136 }
3137
3138 static int getLauncherLargeIconSizeInner(Context context) {
3139 final Resources res = context.getResources();
Kenny Root5ef44b72011-01-26 17:22:20 -08003140 final int size = res.getDimensionPixelSize(android.R.dimen.app_icon_size);
Dianne Hackbornd96e3df2012-01-25 15:12:23 -08003141 final int sw = res.getConfiguration().smallestScreenWidthDp;
Kenny Root5ef44b72011-01-26 17:22:20 -08003142
Dianne Hackbornd96e3df2012-01-25 15:12:23 -08003143 if (sw < 600) {
3144 // Smaller than approx 7" tablets, use the regular icon size.
Kenny Root5ef44b72011-01-26 17:22:20 -08003145 return size;
3146 }
3147
3148 final int density = res.getDisplayMetrics().densityDpi;
3149
3150 switch (density) {
3151 case DisplayMetrics.DENSITY_LOW:
3152 return (size * DisplayMetrics.DENSITY_MEDIUM) / DisplayMetrics.DENSITY_LOW;
3153 case DisplayMetrics.DENSITY_MEDIUM:
3154 return (size * DisplayMetrics.DENSITY_HIGH) / DisplayMetrics.DENSITY_MEDIUM;
Dianne Hackbornd0356a12012-04-26 19:03:12 -07003155 case DisplayMetrics.DENSITY_TV:
3156 return (size * DisplayMetrics.DENSITY_XHIGH) / DisplayMetrics.DENSITY_HIGH;
Kenny Root5ef44b72011-01-26 17:22:20 -08003157 case DisplayMetrics.DENSITY_HIGH:
3158 return (size * DisplayMetrics.DENSITY_XHIGH) / DisplayMetrics.DENSITY_HIGH;
3159 case DisplayMetrics.DENSITY_XHIGH:
Dianne Hackbornd96e3df2012-01-25 15:12:23 -08003160 return (size * DisplayMetrics.DENSITY_XXHIGH) / DisplayMetrics.DENSITY_XHIGH;
3161 case DisplayMetrics.DENSITY_XXHIGH:
3162 return (size * DisplayMetrics.DENSITY_XHIGH*2) / DisplayMetrics.DENSITY_XXHIGH;
Kenny Root5ef44b72011-01-26 17:22:20 -08003163 default:
Dianne Hackbornd96e3df2012-01-25 15:12:23 -08003164 // The density is some abnormal value. Return some other
3165 // abnormal value that is a reasonable scaling of it.
Dianne Hackbornd0356a12012-04-26 19:03:12 -07003166 return (int)((size*1.5f) + .5f);
Kenny Root5ef44b72011-01-26 17:22:20 -08003167 }
3168 }
3169
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08003170 /**
3171 * Returns "true" if the user interface is currently being messed with
3172 * by a monkey.
3173 */
3174 public static boolean isUserAMonkey() {
3175 try {
3176 return ActivityManagerNative.getDefault().isUserAMonkey();
3177 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003178 throw e.rethrowFromSystemServer();
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08003179 }
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08003180 }
Brett Chabot3b4fcbc2011-01-09 13:41:02 -08003181
3182 /**
3183 * Returns "true" if device is running in a test harness.
3184 */
3185 public static boolean isRunningInTestHarness() {
3186 return SystemProperties.getBoolean("ro.test_harness", false);
3187 }
Peter Visontay8d224ca2011-02-18 16:39:19 +00003188
3189 /**
3190 * Returns the launch count of each installed package.
3191 *
3192 * @hide
3193 */
Adam Lesinski0debc9a2014-07-16 19:09:13 -07003194 /*public Map<String, Integer> getAllPackageLaunchCounts() {
Peter Visontay8d224ca2011-02-18 16:39:19 +00003195 try {
3196 IUsageStats usageStatsService = IUsageStats.Stub.asInterface(
3197 ServiceManager.getService("usagestats"));
3198 if (usageStatsService == null) {
3199 return new HashMap<String, Integer>();
3200 }
3201
Dianne Hackborne22b3b12014-05-07 18:06:44 -07003202 UsageStats.PackageStats[] allPkgUsageStats = usageStatsService.getAllPkgUsageStats(
3203 ActivityThread.currentPackageName());
Peter Visontaybfcda392011-03-02 18:53:37 +00003204 if (allPkgUsageStats == null) {
3205 return new HashMap<String, Integer>();
3206 }
3207
Peter Visontay8d224ca2011-02-18 16:39:19 +00003208 Map<String, Integer> launchCounts = new HashMap<String, Integer>();
Dianne Hackborne22b3b12014-05-07 18:06:44 -07003209 for (UsageStats.PackageStats pkgUsageStats : allPkgUsageStats) {
3210 launchCounts.put(pkgUsageStats.getPackageName(), pkgUsageStats.getLaunchCount());
Peter Visontay8d224ca2011-02-18 16:39:19 +00003211 }
3212
3213 return launchCounts;
3214 } catch (RemoteException e) {
3215 Log.w(TAG, "Could not query launch counts", e);
3216 return new HashMap<String, Integer>();
3217 }
Adam Lesinski0debc9a2014-07-16 19:09:13 -07003218 }*/
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003219
Dianne Hackborn5320eb82012-05-18 12:05:04 -07003220 /** @hide */
3221 public static int checkComponentPermission(String permission, int uid,
3222 int owningUid, boolean exported) {
3223 // Root, system server get to do everything.
Svetoslavc6d1c342015-02-26 14:44:43 -08003224 final int appId = UserHandle.getAppId(uid);
3225 if (appId == Process.ROOT_UID || appId == Process.SYSTEM_UID) {
Dianne Hackborn5320eb82012-05-18 12:05:04 -07003226 return PackageManager.PERMISSION_GRANTED;
3227 }
3228 // Isolated processes don't get any permissions.
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07003229 if (UserHandle.isIsolated(uid)) {
Dianne Hackborn5320eb82012-05-18 12:05:04 -07003230 return PackageManager.PERMISSION_DENIED;
3231 }
3232 // If there is a uid that owns whatever is being accessed, it has
3233 // blanket access to it regardless of the permissions it requires.
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07003234 if (owningUid >= 0 && UserHandle.isSameApp(uid, owningUid)) {
Dianne Hackborn5320eb82012-05-18 12:05:04 -07003235 return PackageManager.PERMISSION_GRANTED;
3236 }
3237 // If the target is not exported, then nobody else can get to it.
3238 if (!exported) {
Dianne Hackbornbe4c1d72013-09-09 09:44:05 -07003239 /*
3240 RuntimeException here = new RuntimeException("here");
3241 here.fillInStackTrace();
3242 Slog.w(TAG, "Permission denied: checkComponentPermission() owningUid=" + owningUid,
3243 here);
3244 */
Dianne Hackborn5320eb82012-05-18 12:05:04 -07003245 return PackageManager.PERMISSION_DENIED;
3246 }
3247 if (permission == null) {
3248 return PackageManager.PERMISSION_GRANTED;
3249 }
3250 try {
3251 return AppGlobals.getPackageManager()
3252 .checkUidPermission(permission, uid);
3253 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003254 throw e.rethrowFromSystemServer();
Dianne Hackborn5320eb82012-05-18 12:05:04 -07003255 }
Dianne Hackborn5320eb82012-05-18 12:05:04 -07003256 }
3257
Dianne Hackborn7d19e022012-08-07 19:12:33 -07003258 /** @hide */
3259 public static int checkUidPermission(String permission, int uid) {
3260 try {
3261 return AppGlobals.getPackageManager()
3262 .checkUidPermission(permission, uid);
3263 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003264 throw e.rethrowFromSystemServer();
Dianne Hackborn7d19e022012-08-07 19:12:33 -07003265 }
Dianne Hackborn7d19e022012-08-07 19:12:33 -07003266 }
3267
Dianne Hackbornd7d28e62013-02-12 14:59:53 -08003268 /**
3269 * @hide
3270 * Helper for dealing with incoming user arguments to system service calls.
3271 * Takes care of checking permissions and converting USER_CURRENT to the
3272 * actual current user.
3273 *
3274 * @param callingPid The pid of the incoming call, as per Binder.getCallingPid().
3275 * @param callingUid The uid of the incoming call, as per Binder.getCallingUid().
3276 * @param userId The user id argument supplied by the caller -- this is the user
3277 * they want to run as.
3278 * @param allowAll If true, we will allow USER_ALL. This means you must be prepared
3279 * to get a USER_ALL returned and deal with it correctly. If false,
3280 * an exception will be thrown if USER_ALL is supplied.
3281 * @param requireFull If true, the caller must hold
3282 * {@link android.Manifest.permission#INTERACT_ACROSS_USERS_FULL} to be able to run as a
3283 * different user than their current process; otherwise they must hold
3284 * {@link android.Manifest.permission#INTERACT_ACROSS_USERS}.
3285 * @param name Optional textual name of the incoming call; only for generating error messages.
3286 * @param callerPackage Optional package name of caller; only for error messages.
3287 *
3288 * @return Returns the user ID that the call should run as. Will always be a concrete
3289 * user number, unless <var>allowAll</var> is true in which case it could also be
3290 * USER_ALL.
3291 */
Dianne Hackborn41203752012-08-31 14:05:51 -07003292 public static int handleIncomingUser(int callingPid, int callingUid, int userId,
3293 boolean allowAll, boolean requireFull, String name, String callerPackage) {
3294 if (UserHandle.getUserId(callingUid) == userId) {
3295 return userId;
3296 }
3297 try {
3298 return ActivityManagerNative.getDefault().handleIncomingUser(callingPid,
3299 callingUid, userId, allowAll, requireFull, name, callerPackage);
3300 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003301 throw e.rethrowFromSystemServer();
Dianne Hackborn41203752012-08-31 14:05:51 -07003302 }
3303 }
3304
Amith Yamasani0e8d7d62014-09-03 13:17:28 -07003305 /**
3306 * Gets the userId of the current foreground user. Requires system permissions.
3307 * @hide
3308 */
3309 @SystemApi
Dianne Hackborn41203752012-08-31 14:05:51 -07003310 public static int getCurrentUser() {
3311 UserInfo ui;
3312 try {
3313 ui = ActivityManagerNative.getDefault().getCurrentUser();
3314 return ui != null ? ui.id : 0;
3315 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003316 throw e.rethrowFromSystemServer();
Dianne Hackborn41203752012-08-31 14:05:51 -07003317 }
3318 }
3319
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003320 /**
Stefan Kuhne16045c22015-06-05 07:18:06 -07003321 * @param userid the user's id. Zero indicates the default user.
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003322 * @hide
3323 */
3324 public boolean switchUser(int userid) {
3325 try {
3326 return ActivityManagerNative.getDefault().switchUser(userid);
3327 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003328 throw e.rethrowFromSystemServer();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003329 }
3330 }
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07003331
Fyodor Kupolovb5690bc32016-03-02 17:50:58 -08003332 /**
3333 * Logs out current current foreground user by switching to the system user and stopping the
3334 * user being switched from.
3335 * @hide
3336 */
3337 public static void logoutCurrentUser() {
3338 int currentUser = ActivityManager.getCurrentUser();
3339 if (currentUser != UserHandle.USER_SYSTEM) {
3340 try {
3341 ActivityManagerNative.getDefault().switchUser(UserHandle.USER_SYSTEM);
3342 ActivityManagerNative.getDefault().stopUser(currentUser, /* force= */ false, null);
3343 } catch (RemoteException e) {
3344 e.rethrowFromSystemServer();
3345 }
3346 }
3347 }
3348
Jeff Sharkeye17ac152015-11-06 22:40:29 -08003349 /** {@hide} */
3350 public static final int FLAG_OR_STOPPED = 1 << 0;
3351 /** {@hide} */
Jeff Sharkey8924e872015-11-30 12:52:10 -07003352 public static final int FLAG_AND_LOCKED = 1 << 1;
Jeff Sharkey0825ab22015-12-02 13:04:49 -07003353 /** {@hide} */
3354 public static final int FLAG_AND_UNLOCKED = 1 << 2;
Jeff Sharkeye17ac152015-11-06 22:40:29 -08003355
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07003356 /**
3357 * Return whether the given user is actively running. This means that
3358 * the user is in the "started" state, not "stopped" -- it is currently
3359 * allowed to run code through scheduled alarms, receiving broadcasts,
3360 * etc. A started user may be either the current foreground user or a
3361 * background user; the result here does not distinguish between the two.
3362 * @param userid the user's id. Zero indicates the default user.
3363 * @hide
3364 */
Jeff Sharkey9d8a1042015-12-03 17:56:20 -07003365 public boolean isUserRunning(int userId) {
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07003366 try {
Jeff Sharkey9d8a1042015-12-03 17:56:20 -07003367 return ActivityManagerNative.getDefault().isUserRunning(userId, 0);
3368 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003369 throw e.rethrowFromSystemServer();
Jeff Sharkey9d8a1042015-12-03 17:56:20 -07003370 }
3371 }
3372
3373 /** {@hide} */
3374 public boolean isUserRunningAndLocked(int userId) {
3375 try {
3376 return ActivityManagerNative.getDefault().isUserRunning(userId,
3377 ActivityManager.FLAG_AND_LOCKED);
3378 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003379 throw e.rethrowFromSystemServer();
Jeff Sharkey9d8a1042015-12-03 17:56:20 -07003380 }
3381 }
3382
3383 /** {@hide} */
3384 public boolean isUserRunningAndUnlocked(int userId) {
3385 try {
3386 return ActivityManagerNative.getDefault().isUserRunning(userId,
3387 ActivityManager.FLAG_AND_UNLOCKED);
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07003388 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003389 throw e.rethrowFromSystemServer();
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07003390 }
3391 }
Dianne Hackborncbfd23e2013-06-11 14:26:53 -07003392
Ruben Brunke24b9a62016-02-16 21:38:24 -08003393 /** {@hide} */
3394 public boolean isVrModePackageEnabled(ComponentName component) {
3395 try {
3396 return ActivityManagerNative.getDefault().isVrModePackageEnabled(component);
3397 } catch (RemoteException e) {
3398 throw e.rethrowFromSystemServer();
3399 }
3400 }
3401
Dianne Hackborncbfd23e2013-06-11 14:26:53 -07003402 /**
3403 * Perform a system dump of various state associated with the given application
3404 * package name. This call blocks while the dump is being performed, so should
3405 * not be done on a UI thread. The data will be written to the given file
3406 * descriptor as text. An application must hold the
3407 * {@link android.Manifest.permission#DUMP} permission to make this call.
Dianne Hackbornebc15ef2013-10-09 17:36:57 -07003408 * @param fd The file descriptor that the dump should be written to. The file
3409 * descriptor is <em>not</em> closed by this function; the caller continues to
3410 * own it.
Dianne Hackborncbfd23e2013-06-11 14:26:53 -07003411 * @param packageName The name of the package that is to be dumped.
3412 */
3413 public void dumpPackageState(FileDescriptor fd, String packageName) {
3414 dumpPackageStateStatic(fd, packageName);
3415 }
3416
3417 /**
3418 * @hide
3419 */
3420 public static void dumpPackageStateStatic(FileDescriptor fd, String packageName) {
3421 FileOutputStream fout = new FileOutputStream(fd);
Dianne Hackborn8c841092013-06-24 13:46:13 -07003422 PrintWriter pw = new FastPrintWriter(fout);
Dianne Hackbornab4a81b2014-10-09 17:59:38 -07003423 dumpService(pw, fd, "package", new String[] { packageName });
3424 pw.println();
Dianne Hackborndaa0d5c2013-11-06 16:30:29 -08003425 dumpService(pw, fd, Context.ACTIVITY_SERVICE, new String[] {
3426 "-a", "package", packageName });
Dianne Hackborncbfd23e2013-06-11 14:26:53 -07003427 pw.println();
Dianne Hackbornab4a81b2014-10-09 17:59:38 -07003428 dumpService(pw, fd, "meminfo", new String[] { "--local", "--package", packageName });
Dianne Hackborndaa0d5c2013-11-06 16:30:29 -08003429 pw.println();
Dianne Hackbornab4a81b2014-10-09 17:59:38 -07003430 dumpService(pw, fd, ProcessStats.SERVICE_NAME, new String[] { packageName });
Dianne Hackborncbfd23e2013-06-11 14:26:53 -07003431 pw.println();
Dianne Hackborn904a8572013-06-28 18:12:31 -07003432 dumpService(pw, fd, "usagestats", new String[] { "--packages", packageName });
3433 pw.println();
Dianne Hackborn8c841092013-06-24 13:46:13 -07003434 dumpService(pw, fd, BatteryStats.SERVICE_NAME, new String[] { packageName });
Dianne Hackborncbfd23e2013-06-11 14:26:53 -07003435 pw.flush();
3436 }
3437
3438 private static void dumpService(PrintWriter pw, FileDescriptor fd, String name, String[] args) {
3439 pw.print("DUMP OF SERVICE "); pw.print(name); pw.println(":");
3440 IBinder service = ServiceManager.checkService(name);
3441 if (service == null) {
3442 pw.println(" (Service not found)");
3443 return;
3444 }
3445 TransferPipe tp = null;
3446 try {
3447 pw.flush();
3448 tp = new TransferPipe();
3449 tp.setBufferPrefix(" ");
Dianne Hackborndaa0d5c2013-11-06 16:30:29 -08003450 service.dumpAsync(tp.getWriteFd().getFileDescriptor(), args);
Dianne Hackbornab4a81b2014-10-09 17:59:38 -07003451 tp.go(fd, 10000);
Dianne Hackborncbfd23e2013-06-11 14:26:53 -07003452 } catch (Throwable e) {
3453 if (tp != null) {
3454 tp.kill();
3455 }
3456 pw.println("Failure dumping service:");
3457 e.printStackTrace(pw);
3458 }
3459 }
Craig Mautneraea74a52014-03-08 14:23:10 -08003460
3461 /**
Dianne Hackbornd59a5d52015-04-04 14:52:14 -07003462 * Request that the system start watching for the calling process to exceed a pss
Dianne Hackborn17f69352015-07-17 18:04:14 -07003463 * size as given here. Once called, the system will look for any occasions where it
Dianne Hackbornd59a5d52015-04-04 14:52:14 -07003464 * sees the associated process with a larger pss size and, when this happens, automatically
3465 * pull a heap dump from it and allow the user to share the data. Note that this request
3466 * continues running even if the process is killed and restarted. To remove the watch,
3467 * use {@link #clearWatchHeapLimit()}.
3468 *
Dianne Hackbornece0f4f2015-06-11 13:29:01 -07003469 * <p>This API only work if the calling process has been marked as
3470 * {@link ApplicationInfo#FLAG_DEBUGGABLE} or this is running on a debuggable
3471 * (userdebug or eng) build.</p>
Dianne Hackbornd59a5d52015-04-04 14:52:14 -07003472 *
3473 * <p>Callers can optionally implement {@link #ACTION_REPORT_HEAP_LIMIT} to directly
3474 * handle heap limit reports themselves.</p>
3475 *
3476 * @param pssSize The size in bytes to set the limit at.
3477 */
3478 public void setWatchHeapLimit(long pssSize) {
3479 try {
3480 ActivityManagerNative.getDefault().setDumpHeapDebugLimit(null, 0, pssSize,
3481 mContext.getPackageName());
3482 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003483 throw e.rethrowFromSystemServer();
Dianne Hackbornd59a5d52015-04-04 14:52:14 -07003484 }
3485 }
3486
3487 /**
3488 * Action an app can implement to handle reports from {@link #setWatchHeapLimit(long)}.
3489 * If your package has an activity handling this action, it will be launched with the
3490 * heap data provided to it the same way as {@link Intent#ACTION_SEND}. Note that to
3491 * match the activty must support this action and a MIME type of "*&#47;*".
3492 */
3493 public static final String ACTION_REPORT_HEAP_LIMIT = "android.app.action.REPORT_HEAP_LIMIT";
3494
3495 /**
3496 * Clear a heap watch limit previously set by {@link #setWatchHeapLimit(long)}.
3497 */
3498 public void clearWatchHeapLimit() {
3499 try {
3500 ActivityManagerNative.getDefault().setDumpHeapDebugLimit(null, 0, 0, null);
3501 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003502 throw e.rethrowFromSystemServer();
Dianne Hackbornd59a5d52015-04-04 14:52:14 -07003503 }
3504 }
3505
3506 /**
Craig Mautneraea74a52014-03-08 14:23:10 -08003507 * @hide
3508 */
3509 public void startLockTaskMode(int taskId) {
3510 try {
3511 ActivityManagerNative.getDefault().startLockTaskMode(taskId);
3512 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003513 throw e.rethrowFromSystemServer();
Craig Mautneraea74a52014-03-08 14:23:10 -08003514 }
3515 }
3516
3517 /**
3518 * @hide
3519 */
3520 public void stopLockTaskMode() {
3521 try {
3522 ActivityManagerNative.getDefault().stopLockTaskMode();
3523 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003524 throw e.rethrowFromSystemServer();
Craig Mautneraea74a52014-03-08 14:23:10 -08003525 }
3526 }
3527
3528 /**
Jason Monk386c94f2014-07-14 16:42:24 -04003529 * Return whether currently in lock task mode. When in this mode
3530 * no new tasks can be created or switched to.
3531 *
3532 * @see Activity#startLockTask()
Benjamin Franz43261142015-02-11 15:59:44 +00003533 *
3534 * @deprecated Use {@link #getLockTaskModeState} instead.
Craig Mautneraea74a52014-03-08 14:23:10 -08003535 */
3536 public boolean isInLockTaskMode() {
Benjamin Franz43261142015-02-11 15:59:44 +00003537 return getLockTaskModeState() != LOCK_TASK_MODE_NONE;
3538 }
3539
3540 /**
3541 * Return the current state of task locking. The three possible outcomes
3542 * are {@link #LOCK_TASK_MODE_NONE}, {@link #LOCK_TASK_MODE_LOCKED}
3543 * and {@link #LOCK_TASK_MODE_PINNED}.
3544 *
3545 * @see Activity#startLockTask()
3546 */
3547 public int getLockTaskModeState() {
Craig Mautneraea74a52014-03-08 14:23:10 -08003548 try {
Benjamin Franz43261142015-02-11 15:59:44 +00003549 return ActivityManagerNative.getDefault().getLockTaskModeState();
Craig Mautneraea74a52014-03-08 14:23:10 -08003550 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003551 throw e.rethrowFromSystemServer();
Craig Mautneraea74a52014-03-08 14:23:10 -08003552 }
3553 }
Winson Chung1147c402014-05-14 11:05:00 -07003554
3555 /**
3556 * The AppTask allows you to manage your own application's tasks.
3557 * See {@link android.app.ActivityManager#getAppTasks()}
3558 */
3559 public static class AppTask {
3560 private IAppTask mAppTaskImpl;
3561
3562 /** @hide */
3563 public AppTask(IAppTask task) {
3564 mAppTaskImpl = task;
3565 }
3566
3567 /**
3568 * Finishes all activities in this task and removes it from the recent tasks list.
3569 */
3570 public void finishAndRemoveTask() {
3571 try {
3572 mAppTaskImpl.finishAndRemoveTask();
3573 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003574 throw e.rethrowFromSystemServer();
Winson Chung1147c402014-05-14 11:05:00 -07003575 }
3576 }
3577
3578 /**
3579 * Get the RecentTaskInfo associated with this task.
3580 *
3581 * @return The RecentTaskInfo for this task, or null if the task no longer exists.
3582 */
3583 public RecentTaskInfo getTaskInfo() {
3584 try {
3585 return mAppTaskImpl.getTaskInfo();
3586 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003587 throw e.rethrowFromSystemServer();
Winson Chung1147c402014-05-14 11:05:00 -07003588 }
3589 }
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07003590
3591 /**
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003592 * Bring this task to the foreground. If it contains activities, they will be
3593 * brought to the foreground with it and their instances re-created if needed.
3594 * If it doesn't contain activities, the root activity of the task will be
3595 * re-launched.
3596 */
3597 public void moveToFront() {
3598 try {
3599 mAppTaskImpl.moveToFront();
3600 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003601 throw e.rethrowFromSystemServer();
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003602 }
3603 }
3604
3605 /**
3606 * Start an activity in this task. Brings the task to the foreground. If this task
Dianne Hackborna4e102e2014-09-04 22:52:27 -07003607 * is not currently active (that is, its id < 0), then a new activity for the given
3608 * Intent will be launched as the root of the task and the task brought to the
3609 * foreground. Otherwise, if this task is currently active and the Intent does not specify
3610 * an activity to launch in a new task, then a new activity for the given Intent will
3611 * be launched on top of the task and the task brought to the foreground. If this
3612 * task is currently active and the Intent specifies {@link Intent#FLAG_ACTIVITY_NEW_TASK}
3613 * or would otherwise be launched in to a new task, then the activity not launched but
3614 * this task be brought to the foreground and a new intent delivered to the top
3615 * activity if appropriate.
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003616 *
Dianne Hackborna4e102e2014-09-04 22:52:27 -07003617 * <p>In other words, you generally want to use an Intent here that does not specify
3618 * {@link Intent#FLAG_ACTIVITY_NEW_TASK} or {@link Intent#FLAG_ACTIVITY_NEW_DOCUMENT},
3619 * and let the system do the right thing.</p>
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003620 *
3621 * @param intent The Intent describing the new activity to be launched on the task.
3622 * @param options Optional launch options.
Dianne Hackborna4e102e2014-09-04 22:52:27 -07003623 *
3624 * @see Activity#startActivity(android.content.Intent, android.os.Bundle)
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003625 */
3626 public void startActivity(Context context, Intent intent, Bundle options) {
3627 ActivityThread thread = ActivityThread.currentActivityThread();
3628 thread.getInstrumentation().execStartActivityFromAppTask(context,
3629 thread.getApplicationThread(), mAppTaskImpl, intent, options);
3630 }
3631
3632 /**
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07003633 * Modify the {@link Intent#FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS} flag in the root
3634 * Intent of this AppTask.
3635 *
3636 * @param exclude If true, {@link Intent#FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS} will
3637 * be set; otherwise, it will be cleared.
3638 */
3639 public void setExcludeFromRecents(boolean exclude) {
3640 try {
3641 mAppTaskImpl.setExcludeFromRecents(exclude);
3642 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -07003643 throw e.rethrowFromSystemServer();
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07003644 }
3645 }
Winson Chung1147c402014-05-14 11:05:00 -07003646 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003647}