ActivityManager.java revision a4fa8d5bd4fcdde51cd4d0ada6a99a5ebc302a88
1/*
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
19import android.Manifest;
20import android.annotation.DrawableRes;
21import android.annotation.IntDef;
22import android.annotation.NonNull;
23import android.annotation.Nullable;
24import android.annotation.RequiresPermission;
25import android.annotation.SystemApi;
26import android.annotation.SystemService;
27import android.annotation.TestApi;
28import android.content.ComponentName;
29import android.content.Context;
30import android.content.Intent;
31import android.content.pm.ActivityInfo;
32import android.content.pm.ApplicationInfo;
33import android.content.pm.ConfigurationInfo;
34import android.content.pm.IPackageDataObserver;
35import android.content.pm.PackageManager;
36import android.content.pm.ParceledListSlice;
37import android.content.pm.UserInfo;
38import android.content.res.Configuration;
39import android.content.res.Resources;
40import android.graphics.Bitmap;
41import android.graphics.Canvas;
42import android.graphics.Color;
43import android.graphics.GraphicBuffer;
44import android.graphics.Matrix;
45import android.graphics.Point;
46import android.graphics.Rect;
47import android.os.BatteryStats;
48import android.os.Binder;
49import android.os.Build;
50import android.os.Build.VERSION_CODES;
51import android.os.Bundle;
52import android.os.Debug;
53import android.os.Handler;
54import android.os.IBinder;
55import android.os.Parcel;
56import android.os.Parcelable;
57import android.os.Process;
58import android.os.RemoteException;
59import android.os.ServiceManager;
60import android.os.SystemProperties;
61import android.os.UserHandle;
62import android.os.WorkSource;
63import android.text.TextUtils;
64import android.util.ArrayMap;
65import android.util.DisplayMetrics;
66import android.util.Singleton;
67import android.util.Size;
68
69import com.android.internal.app.procstats.ProcessStats;
70import com.android.internal.os.RoSystemProperties;
71import com.android.internal.os.TransferPipe;
72import com.android.internal.util.FastPrintWriter;
73import com.android.internal.util.MemInfoReader;
74import com.android.server.LocalServices;
75
76import org.xmlpull.v1.XmlSerializer;
77
78import java.io.FileDescriptor;
79import java.io.FileOutputStream;
80import java.io.IOException;
81import java.io.PrintWriter;
82import java.lang.annotation.Retention;
83import java.lang.annotation.RetentionPolicy;
84import java.util.ArrayList;
85import java.util.List;
86
87/**
88 * <p>
89 * This class gives information about, and interacts
90 * with, activities, services, and the containing
91 * process.
92 * </p>
93 *
94 * <p>
95 * A number of the methods in this class are for
96 * debugging or informational purposes and they should
97 * not be used to affect any runtime behavior of
98 * your app. These methods are called out as such in
99 * the method level documentation.
100 * </p>
101 *
102 *<p>
103 * Most application developers should not have the need to
104 * use this class, most of whose methods are for specialized
105 * use cases. However, a few methods are more broadly applicable.
106 * For instance, {@link android.app.ActivityManager#isLowRamDevice() isLowRamDevice()}
107 * enables your app to detect whether it is running on a low-memory device,
108 * and behave accordingly.
109 * {@link android.app.ActivityManager#clearApplicationUserData() clearApplicationUserData()}
110 * is for apps with reset-data functionality.
111 * </p>
112 *
113 * <p>
114 * In some special use cases, where an app interacts with
115 * its Task stack, the app may use the
116 * {@link android.app.ActivityManager.AppTask} and
117 * {@link android.app.ActivityManager.RecentTaskInfo} inner
118 * classes. However, in general, the methods in this class should
119 * be used for testing and debugging purposes only.
120 * </p>
121 */
122@SystemService(Context.ACTIVITY_SERVICE)
123public class ActivityManager {
124    private static String TAG = "ActivityManager";
125
126    private static int gMaxRecentTasks = -1;
127
128    private final Context mContext;
129
130    private static volatile boolean sSystemReady = false;
131
132
133    private static final int FIRST_START_FATAL_ERROR_CODE = -100;
134    private static final int LAST_START_FATAL_ERROR_CODE = -1;
135    private static final int FIRST_START_SUCCESS_CODE = 0;
136    private static final int LAST_START_SUCCESS_CODE = 99;
137    private static final int FIRST_START_NON_FATAL_ERROR_CODE = 100;
138    private static final int LAST_START_NON_FATAL_ERROR_CODE = 199;
139
140    static final class UidObserver extends IUidObserver.Stub {
141        final OnUidImportanceListener mListener;
142        final Context mContext;
143
144        UidObserver(OnUidImportanceListener listener, Context clientContext) {
145            mListener = listener;
146            mContext = clientContext;
147        }
148
149        @Override
150        public void onUidStateChanged(int uid, int procState, long procStateSeq) {
151            mListener.onUidImportance(uid, RunningAppProcessInfo.procStateToImportanceForClient(
152                    procState, mContext));
153        }
154
155        @Override
156        public void onUidGone(int uid, boolean disabled) {
157            mListener.onUidImportance(uid, RunningAppProcessInfo.IMPORTANCE_GONE);
158        }
159
160        @Override
161        public void onUidActive(int uid) {
162        }
163
164        @Override
165        public void onUidIdle(int uid, boolean disabled) {
166        }
167
168        @Override public void onUidCachedChanged(int uid, boolean cached) {
169        }
170    }
171
172    final ArrayMap<OnUidImportanceListener, UidObserver> mImportanceListeners = new ArrayMap<>();
173
174    /**
175     * Defines acceptable types of bugreports.
176     * @hide
177     */
178    @Retention(RetentionPolicy.SOURCE)
179    @IntDef(prefix = { "BUGREPORT_OPTION_" }, value = {
180            BUGREPORT_OPTION_FULL,
181            BUGREPORT_OPTION_INTERACTIVE,
182            BUGREPORT_OPTION_REMOTE,
183            BUGREPORT_OPTION_WEAR,
184            BUGREPORT_OPTION_TELEPHONY,
185            BUGREPORT_OPTION_WIFI
186    })
187    public @interface BugreportMode {}
188    /**
189     * Takes a bugreport without user interference (and hence causing less
190     * interference to the system), but includes all sections.
191     * @hide
192     */
193    public static final int BUGREPORT_OPTION_FULL = 0;
194    /**
195     * Allows user to monitor progress and enter additional data; might not include all
196     * sections.
197     * @hide
198     */
199    public static final int BUGREPORT_OPTION_INTERACTIVE = 1;
200    /**
201     * Takes a bugreport requested remotely by administrator of the Device Owner app,
202     * not the device's user.
203     * @hide
204     */
205    public static final int BUGREPORT_OPTION_REMOTE = 2;
206    /**
207     * Takes a bugreport on a wearable device.
208     * @hide
209     */
210    public static final int BUGREPORT_OPTION_WEAR = 3;
211
212    /**
213     * Takes a lightweight version of bugreport that only includes a few, urgent sections
214     * used to report telephony bugs.
215     * @hide
216     */
217    public static final int BUGREPORT_OPTION_TELEPHONY = 4;
218
219    /**
220     * Takes a lightweight bugreport that only includes a few sections related to Wifi.
221     * @hide
222     */
223    public static final int BUGREPORT_OPTION_WIFI = 5;
224
225    /**
226     * <a href="{@docRoot}guide/topics/manifest/meta-data-element.html">{@code
227     * <meta-data>}</a> name for a 'home' Activity that declares a package that is to be
228     * uninstalled in lieu of the declaring one.  The package named here must be
229     * signed with the same certificate as the one declaring the {@code <meta-data>}.
230     */
231    public static final String META_HOME_ALTERNATE = "android.app.home.alternate";
232
233    // NOTE: Before adding a new start result, please reference the defined ranges to ensure the
234    // result is properly categorized.
235
236    /**
237     * Result for IActivityManager.startVoiceActivity: active session is currently hidden.
238     * @hide
239     */
240    public static final int START_VOICE_HIDDEN_SESSION = FIRST_START_FATAL_ERROR_CODE;
241
242    /**
243     * Result for IActivityManager.startVoiceActivity: active session does not match
244     * the requesting token.
245     * @hide
246     */
247    public static final int START_VOICE_NOT_ACTIVE_SESSION = FIRST_START_FATAL_ERROR_CODE + 1;
248
249    /**
250     * Result for IActivityManager.startActivity: trying to start a background user
251     * activity that shouldn't be displayed for all users.
252     * @hide
253     */
254    public static final int START_NOT_CURRENT_USER_ACTIVITY = FIRST_START_FATAL_ERROR_CODE + 2;
255
256    /**
257     * Result for IActivityManager.startActivity: trying to start an activity under voice
258     * control when that activity does not support the VOICE category.
259     * @hide
260     */
261    public static final int START_NOT_VOICE_COMPATIBLE = FIRST_START_FATAL_ERROR_CODE + 3;
262
263    /**
264     * Result for IActivityManager.startActivity: an error where the
265     * start had to be canceled.
266     * @hide
267     */
268    public static final int START_CANCELED = FIRST_START_FATAL_ERROR_CODE + 4;
269
270    /**
271     * Result for IActivityManager.startActivity: an error where the
272     * thing being started is not an activity.
273     * @hide
274     */
275    public static final int START_NOT_ACTIVITY = FIRST_START_FATAL_ERROR_CODE + 5;
276
277    /**
278     * Result for IActivityManager.startActivity: an error where the
279     * caller does not have permission to start the activity.
280     * @hide
281     */
282    public static final int START_PERMISSION_DENIED = FIRST_START_FATAL_ERROR_CODE + 6;
283
284    /**
285     * Result for IActivityManager.startActivity: an error where the
286     * caller has requested both to forward a result and to receive
287     * a result.
288     * @hide
289     */
290    public static final int START_FORWARD_AND_REQUEST_CONFLICT = FIRST_START_FATAL_ERROR_CODE + 7;
291
292    /**
293     * Result for IActivityManager.startActivity: an error where the
294     * requested class is not found.
295     * @hide
296     */
297    public static final int START_CLASS_NOT_FOUND = FIRST_START_FATAL_ERROR_CODE + 8;
298
299    /**
300     * Result for IActivityManager.startActivity: an error where the
301     * given Intent could not be resolved to an activity.
302     * @hide
303     */
304    public static final int START_INTENT_NOT_RESOLVED = FIRST_START_FATAL_ERROR_CODE + 9;
305
306    /**
307     * Result for IActivityManager.startAssistantActivity: active session is currently hidden.
308     * @hide
309     */
310    public static final int START_ASSISTANT_HIDDEN_SESSION = FIRST_START_FATAL_ERROR_CODE + 10;
311
312    /**
313     * Result for IActivityManager.startAssistantActivity: active session does not match
314     * the requesting token.
315     * @hide
316     */
317    public static final int START_ASSISTANT_NOT_ACTIVE_SESSION = FIRST_START_FATAL_ERROR_CODE + 11;
318
319    /**
320     * Result for IActivityManaqer.startActivity: the activity was started
321     * successfully as normal.
322     * @hide
323     */
324    public static final int START_SUCCESS = FIRST_START_SUCCESS_CODE;
325
326    /**
327     * Result for IActivityManaqer.startActivity: the caller asked that the Intent not
328     * be executed if it is the recipient, and that is indeed the case.
329     * @hide
330     */
331    public static final int START_RETURN_INTENT_TO_CALLER = FIRST_START_SUCCESS_CODE + 1;
332
333    /**
334     * Result for IActivityManaqer.startActivity: activity wasn't really started, but
335     * a task was simply brought to the foreground.
336     * @hide
337     */
338    public static final int START_TASK_TO_FRONT = FIRST_START_SUCCESS_CODE + 2;
339
340    /**
341     * Result for IActivityManaqer.startActivity: activity wasn't really started, but
342     * the given Intent was given to the existing top activity.
343     * @hide
344     */
345    public static final int START_DELIVERED_TO_TOP = FIRST_START_SUCCESS_CODE + 3;
346
347    /**
348     * Result for IActivityManaqer.startActivity: request was canceled because
349     * app switches are temporarily canceled to ensure the user's last request
350     * (such as pressing home) is performed.
351     * @hide
352     */
353    public static final int START_SWITCHES_CANCELED = FIRST_START_NON_FATAL_ERROR_CODE;
354
355    /**
356     * Result for IActivityManaqer.startActivity: a new activity was attempted to be started
357     * while in Lock Task Mode.
358     * @hide
359     */
360    public static final int START_RETURN_LOCK_TASK_MODE_VIOLATION =
361            FIRST_START_NON_FATAL_ERROR_CODE + 1;
362
363    /**
364     * Result for IActivityManaqer.startActivity: a new activity start was aborted. Never returned
365     * externally.
366     * @hide
367     */
368    public static final int START_ABORTED = FIRST_START_NON_FATAL_ERROR_CODE + 2;
369
370    /**
371     * Flag for IActivityManaqer.startActivity: do special start mode where
372     * a new activity is launched only if it is needed.
373     * @hide
374     */
375    public static final int START_FLAG_ONLY_IF_NEEDED = 1<<0;
376
377    /**
378     * Flag for IActivityManaqer.startActivity: launch the app for
379     * debugging.
380     * @hide
381     */
382    public static final int START_FLAG_DEBUG = 1<<1;
383
384    /**
385     * Flag for IActivityManaqer.startActivity: launch the app for
386     * allocation tracking.
387     * @hide
388     */
389    public static final int START_FLAG_TRACK_ALLOCATION = 1<<2;
390
391    /**
392     * Flag for IActivityManaqer.startActivity: launch the app with
393     * native debugging support.
394     * @hide
395     */
396    public static final int START_FLAG_NATIVE_DEBUGGING = 1<<3;
397
398    /**
399     * Result for IActivityManaqer.broadcastIntent: success!
400     * @hide
401     */
402    public static final int BROADCAST_SUCCESS = 0;
403
404    /**
405     * Result for IActivityManaqer.broadcastIntent: attempt to broadcast
406     * a sticky intent without appropriate permission.
407     * @hide
408     */
409    public static final int BROADCAST_STICKY_CANT_HAVE_PERMISSION = -1;
410
411    /**
412     * Result for IActivityManager.broadcastIntent: trying to send a broadcast
413     * to a stopped user. Fail.
414     * @hide
415     */
416    public static final int BROADCAST_FAILED_USER_STOPPED = -2;
417
418    /**
419     * Type for IActivityManaqer.getIntentSender: this PendingIntent is
420     * for a sendBroadcast operation.
421     * @hide
422     */
423    public static final int INTENT_SENDER_BROADCAST = 1;
424
425    /**
426     * Type for IActivityManaqer.getIntentSender: this PendingIntent is
427     * for a startActivity operation.
428     * @hide
429     */
430    public static final int INTENT_SENDER_ACTIVITY = 2;
431
432    /**
433     * Type for IActivityManaqer.getIntentSender: this PendingIntent is
434     * for an activity result operation.
435     * @hide
436     */
437    public static final int INTENT_SENDER_ACTIVITY_RESULT = 3;
438
439    /**
440     * Type for IActivityManaqer.getIntentSender: this PendingIntent is
441     * for a startService operation.
442     * @hide
443     */
444    public static final int INTENT_SENDER_SERVICE = 4;
445
446    /**
447     * Type for IActivityManaqer.getIntentSender: this PendingIntent is
448     * for a startForegroundService operation.
449     * @hide
450     */
451    public static final int INTENT_SENDER_FOREGROUND_SERVICE = 5;
452
453    /** @hide User operation call: success! */
454    public static final int USER_OP_SUCCESS = 0;
455
456    /** @hide User operation call: given user id is not known. */
457    public static final int USER_OP_UNKNOWN_USER = -1;
458
459    /** @hide User operation call: given user id is the current user, can't be stopped. */
460    public static final int USER_OP_IS_CURRENT = -2;
461
462    /** @hide User operation call: system user can't be stopped. */
463    public static final int USER_OP_ERROR_IS_SYSTEM = -3;
464
465    /** @hide User operation call: one of related users cannot be stopped. */
466    public static final int USER_OP_ERROR_RELATED_USERS_CANNOT_STOP = -4;
467
468    /**
469     * @hide
470     * Process states, describing the kind of state a particular process is in.
471     * When updating these, make sure to also check all related references to the
472     * constant in code, and update these arrays:
473     *
474     * @see com.android.internal.app.procstats.ProcessState#PROCESS_STATE_TO_STATE
475     * @see com.android.server.am.ProcessList#sProcStateToProcMem
476     * @see com.android.server.am.ProcessList#sFirstAwakePssTimes
477     * @see com.android.server.am.ProcessList#sSameAwakePssTimes
478     * @see com.android.server.am.ProcessList#sTestFirstPssTimes
479     * @see com.android.server.am.ProcessList#sTestSamePssTimes
480     */
481
482    /** @hide Not a real process state. */
483    public static final int PROCESS_STATE_UNKNOWN = -1;
484
485    /** @hide Process is a persistent system process. */
486    public static final int PROCESS_STATE_PERSISTENT = 0;
487
488    /** @hide Process is a persistent system process and is doing UI. */
489    public static final int PROCESS_STATE_PERSISTENT_UI = 1;
490
491    /** @hide Process is hosting the current top activities.  Note that this covers
492     * all activities that are visible to the user. */
493    public static final int PROCESS_STATE_TOP = 2;
494
495    /** @hide Process is hosting a foreground service. */
496    public static final int PROCESS_STATE_FOREGROUND_SERVICE = 3;
497
498    /** @hide Process is hosting a foreground service due to a system binding. */
499    public static final int PROCESS_STATE_BOUND_FOREGROUND_SERVICE = 4;
500
501    /** @hide Process is important to the user, and something they are aware of. */
502    public static final int PROCESS_STATE_IMPORTANT_FOREGROUND = 5;
503
504    /** @hide Process is important to the user, but not something they are aware of. */
505    public static final int PROCESS_STATE_IMPORTANT_BACKGROUND = 6;
506
507    /** @hide Process is in the background transient so we will try to keep running. */
508    public static final int PROCESS_STATE_TRANSIENT_BACKGROUND = 7;
509
510    /** @hide Process is in the background running a backup/restore operation. */
511    public static final int PROCESS_STATE_BACKUP = 8;
512
513    /** @hide Process is in the background running a service.  Unlike oom_adj, this level
514     * is used for both the normal running in background state and the executing
515     * operations state. */
516    public static final int PROCESS_STATE_SERVICE = 9;
517
518    /** @hide Process is in the background running a receiver.   Note that from the
519     * perspective of oom_adj, receivers run at a higher foreground level, but for our
520     * prioritization here that is not necessary and putting them below services means
521     * many fewer changes in some process states as they receive broadcasts. */
522    public static final int PROCESS_STATE_RECEIVER = 10;
523
524    /** @hide Same as {@link #PROCESS_STATE_TOP} but while device is sleeping. */
525    public static final int PROCESS_STATE_TOP_SLEEPING = 11;
526
527    /** @hide Process is in the background, but it can't restore its state so we want
528     * to try to avoid killing it. */
529    public static final int PROCESS_STATE_HEAVY_WEIGHT = 12;
530
531    /** @hide Process is in the background but hosts the home activity. */
532    public static final int PROCESS_STATE_HOME = 13;
533
534    /** @hide Process is in the background but hosts the last shown activity. */
535    public static final int PROCESS_STATE_LAST_ACTIVITY = 14;
536
537    /** @hide Process is being cached for later use and contains activities. */
538    public static final int PROCESS_STATE_CACHED_ACTIVITY = 15;
539
540    /** @hide Process is being cached for later use and is a client of another cached
541     * process that contains activities. */
542    public static final int PROCESS_STATE_CACHED_ACTIVITY_CLIENT = 16;
543
544    /** @hide Process is being cached for later use and has an activity that corresponds
545     * to an existing recent task. */
546    public static final int PROCESS_STATE_CACHED_RECENT = 17;
547
548    /** @hide Process is being cached for later use and is empty. */
549    public static final int PROCESS_STATE_CACHED_EMPTY = 18;
550
551    /** @hide Process does not exist. */
552    public static final int PROCESS_STATE_NONEXISTENT = 19;
553
554    // NOTE: If PROCESS_STATEs are added, then new fields must be added
555    // to frameworks/base/core/proto/android/app/enums.proto and the following method must
556    // be updated to correctly map between them.
557    // However, if the current ActivityManager values are merely modified, no update should be made
558    // to enums.proto, to which values can only be added but never modified. Note that the proto
559    // versions do NOT have the ordering restrictions of the ActivityManager process state.
560    /**
561     * Maps ActivityManager.PROCESS_STATE_ values to enums.proto ProcessStateEnum value.
562     *
563     * @param amInt a process state of the form ActivityManager.PROCESS_STATE_
564     * @return the value of the corresponding enums.proto ProcessStateEnum value.
565     * @hide
566     */
567    public static final int processStateAmToProto(int amInt) {
568        switch (amInt) {
569            case PROCESS_STATE_UNKNOWN:
570                return AppProtoEnums.PROCESS_STATE_UNKNOWN;
571            case PROCESS_STATE_PERSISTENT:
572                return AppProtoEnums.PROCESS_STATE_PERSISTENT;
573            case PROCESS_STATE_PERSISTENT_UI:
574                return AppProtoEnums.PROCESS_STATE_PERSISTENT_UI;
575            case PROCESS_STATE_TOP:
576                return AppProtoEnums.PROCESS_STATE_TOP;
577            case PROCESS_STATE_FOREGROUND_SERVICE:
578                return AppProtoEnums.PROCESS_STATE_FOREGROUND_SERVICE;
579            case PROCESS_STATE_BOUND_FOREGROUND_SERVICE:
580                return AppProtoEnums.PROCESS_STATE_BOUND_FOREGROUND_SERVICE;
581            case PROCESS_STATE_IMPORTANT_FOREGROUND:
582                return AppProtoEnums.PROCESS_STATE_IMPORTANT_FOREGROUND;
583            case PROCESS_STATE_IMPORTANT_BACKGROUND:
584                return AppProtoEnums.PROCESS_STATE_IMPORTANT_BACKGROUND;
585            case PROCESS_STATE_TRANSIENT_BACKGROUND:
586                return AppProtoEnums.PROCESS_STATE_TRANSIENT_BACKGROUND;
587            case PROCESS_STATE_BACKUP:
588                return AppProtoEnums.PROCESS_STATE_BACKUP;
589            case PROCESS_STATE_SERVICE:
590                return AppProtoEnums.PROCESS_STATE_SERVICE;
591            case PROCESS_STATE_RECEIVER:
592                return AppProtoEnums.PROCESS_STATE_RECEIVER;
593            case PROCESS_STATE_TOP_SLEEPING:
594                return AppProtoEnums.PROCESS_STATE_TOP_SLEEPING;
595            case PROCESS_STATE_HEAVY_WEIGHT:
596                return AppProtoEnums.PROCESS_STATE_HEAVY_WEIGHT;
597            case PROCESS_STATE_HOME:
598                return AppProtoEnums.PROCESS_STATE_HOME;
599            case PROCESS_STATE_LAST_ACTIVITY:
600                return AppProtoEnums.PROCESS_STATE_LAST_ACTIVITY;
601            case PROCESS_STATE_CACHED_ACTIVITY:
602                return AppProtoEnums.PROCESS_STATE_CACHED_ACTIVITY;
603            case PROCESS_STATE_CACHED_ACTIVITY_CLIENT:
604                return AppProtoEnums.PROCESS_STATE_CACHED_ACTIVITY_CLIENT;
605            case PROCESS_STATE_CACHED_RECENT:
606                return AppProtoEnums.PROCESS_STATE_CACHED_RECENT;
607            case PROCESS_STATE_CACHED_EMPTY:
608                return AppProtoEnums.PROCESS_STATE_CACHED_EMPTY;
609            case PROCESS_STATE_NONEXISTENT:
610                return AppProtoEnums.PROCESS_STATE_NONEXISTENT;
611            default:
612                // ActivityManager process state (amInt)
613                // could not be mapped to an AppProtoEnums ProcessState state.
614                return AppProtoEnums.PROCESS_STATE_UNKNOWN_TO_PROTO;
615        }
616    }
617
618    /** @hide The lowest process state number */
619    public static final int MIN_PROCESS_STATE = PROCESS_STATE_PERSISTENT;
620
621    /** @hide The highest process state number */
622    public static final int MAX_PROCESS_STATE = PROCESS_STATE_NONEXISTENT;
623
624    /** @hide Should this process state be considered a background state? */
625    public static final boolean isProcStateBackground(int procState) {
626        return procState >= PROCESS_STATE_TRANSIENT_BACKGROUND;
627    }
628
629    /** @hide requestType for assist context: only basic information. */
630    public static final int ASSIST_CONTEXT_BASIC = 0;
631
632    /** @hide requestType for assist context: generate full AssistStructure. */
633    public static final int ASSIST_CONTEXT_FULL = 1;
634
635    /** @hide requestType for assist context: generate full AssistStructure for autofill. */
636    public static final int ASSIST_CONTEXT_AUTOFILL = 2;
637
638    /** @hide Flag for registerUidObserver: report changes in process state. */
639    public static final int UID_OBSERVER_PROCSTATE = 1<<0;
640
641    /** @hide Flag for registerUidObserver: report uid gone. */
642    public static final int UID_OBSERVER_GONE = 1<<1;
643
644    /** @hide Flag for registerUidObserver: report uid has become idle. */
645    public static final int UID_OBSERVER_IDLE = 1<<2;
646
647    /** @hide Flag for registerUidObserver: report uid has become active. */
648    public static final int UID_OBSERVER_ACTIVE = 1<<3;
649
650    /** @hide Flag for registerUidObserver: report uid cached state has changed. */
651    public static final int UID_OBSERVER_CACHED = 1<<4;
652
653    /** @hide Mode for {@link IActivityManager#isAppStartModeDisabled}: normal free-to-run operation. */
654    public static final int APP_START_MODE_NORMAL = 0;
655
656    /** @hide Mode for {@link IActivityManager#isAppStartModeDisabled}: delay running until later. */
657    public static final int APP_START_MODE_DELAYED = 1;
658
659    /** @hide Mode for {@link IActivityManager#isAppStartModeDisabled}: delay running until later, with
660     * rigid errors (throwing exception). */
661    public static final int APP_START_MODE_DELAYED_RIGID = 2;
662
663    /** @hide Mode for {@link IActivityManager#isAppStartModeDisabled}: disable/cancel pending
664     * launches; this is the mode for ephemeral apps. */
665    public static final int APP_START_MODE_DISABLED = 3;
666
667    /**
668     * Lock task mode is not active.
669     */
670    public static final int LOCK_TASK_MODE_NONE = 0;
671
672    /**
673     * Full lock task mode is active.
674     */
675    public static final int LOCK_TASK_MODE_LOCKED = 1;
676
677    /**
678     * App pinning mode is active.
679     */
680    public static final int LOCK_TASK_MODE_PINNED = 2;
681
682    Point mAppTaskThumbnailSize;
683
684    /*package*/ ActivityManager(Context context, Handler handler) {
685        mContext = context;
686    }
687
688    /**
689     * Returns whether the launch was successful.
690     * @hide
691     */
692    public static final boolean isStartResultSuccessful(int result) {
693        return FIRST_START_SUCCESS_CODE <= result && result <= LAST_START_SUCCESS_CODE;
694    }
695
696    /**
697     * Returns whether the launch result was a fatal error.
698     * @hide
699     */
700    public static final boolean isStartResultFatalError(int result) {
701        return FIRST_START_FATAL_ERROR_CODE <= result && result <= LAST_START_FATAL_ERROR_CODE;
702    }
703
704    /**
705     * Screen compatibility mode: the application most always run in
706     * compatibility mode.
707     * @hide
708     */
709    public static final int COMPAT_MODE_ALWAYS = -1;
710
711    /**
712     * Screen compatibility mode: the application can never run in
713     * compatibility mode.
714     * @hide
715     */
716    public static final int COMPAT_MODE_NEVER = -2;
717
718    /**
719     * Screen compatibility mode: unknown.
720     * @hide
721     */
722    public static final int COMPAT_MODE_UNKNOWN = -3;
723
724    /**
725     * Screen compatibility mode: the application currently has compatibility
726     * mode disabled.
727     * @hide
728     */
729    public static final int COMPAT_MODE_DISABLED = 0;
730
731    /**
732     * Screen compatibility mode: the application currently has compatibility
733     * mode enabled.
734     * @hide
735     */
736    public static final int COMPAT_MODE_ENABLED = 1;
737
738    /**
739     * Screen compatibility mode: request to toggle the application's
740     * compatibility mode.
741     * @hide
742     */
743    public static final int COMPAT_MODE_TOGGLE = 2;
744
745    private static final boolean DEVELOPMENT_FORCE_LOW_RAM =
746            SystemProperties.getBoolean("debug.force_low_ram", false);
747
748    /** @hide */
749    @TestApi
750    public static class StackId {
751
752        private StackId() {
753        }
754
755        /** Invalid stack ID. */
756        public static final int INVALID_STACK_ID = -1;
757
758    }
759
760    /**
761     * Parameter to {@link android.app.IActivityManager#setTaskWindowingModeSplitScreenPrimary}
762     * which specifies the position of the created docked stack at the top half of the screen if
763     * in portrait mode or at the left half of the screen if in landscape mode.
764     * @hide
765     */
766    @TestApi
767    public static final int SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT = 0;
768
769    /**
770     * Parameter to {@link android.app.IActivityManager#setTaskWindowingModeSplitScreenPrimary}
771     * which
772     * specifies the position of the created docked stack at the bottom half of the screen if
773     * in portrait mode or at the right half of the screen if in landscape mode.
774     * @hide
775     */
776    @TestApi
777    public static final int SPLIT_SCREEN_CREATE_MODE_BOTTOM_OR_RIGHT = 1;
778
779    /**
780     * Input parameter to {@link android.app.IActivityManager#resizeTask} which indicates
781     * that the resize doesn't need to preserve the window, and can be skipped if bounds
782     * is unchanged. This mode is used by window manager in most cases.
783     * @hide
784     */
785    public static final int RESIZE_MODE_SYSTEM = 0;
786
787    /**
788     * Input parameter to {@link android.app.IActivityManager#resizeTask} which indicates
789     * that the resize should preserve the window if possible.
790     * @hide
791     */
792    public static final int RESIZE_MODE_PRESERVE_WINDOW   = (0x1 << 0);
793
794    /**
795     * Input parameter to {@link android.app.IActivityManager#resizeTask} which indicates
796     * that the resize should be performed even if the bounds appears unchanged.
797     * @hide
798     */
799    public static final int RESIZE_MODE_FORCED = (0x1 << 1);
800
801    /**
802     * Input parameter to {@link android.app.IActivityManager#resizeTask} used by window
803     * manager during a screen rotation.
804     * @hide
805     */
806    public static final int RESIZE_MODE_SYSTEM_SCREEN_ROTATION = RESIZE_MODE_PRESERVE_WINDOW;
807
808    /**
809     * Input parameter to {@link android.app.IActivityManager#resizeTask} used when the
810     * resize is due to a drag action.
811     * @hide
812     */
813    public static final int RESIZE_MODE_USER = RESIZE_MODE_PRESERVE_WINDOW;
814
815    /**
816     * Input parameter to {@link android.app.IActivityManager#resizeTask} which indicates
817     * that the resize should preserve the window if possible, and should not be skipped
818     * even if the bounds is unchanged. Usually used to force a resizing when a drag action
819     * is ending.
820     * @hide
821     */
822    public static final int RESIZE_MODE_USER_FORCED =
823            RESIZE_MODE_PRESERVE_WINDOW | RESIZE_MODE_FORCED;
824
825    /** @hide */
826    public int getFrontActivityScreenCompatMode() {
827        try {
828            return getService().getFrontActivityScreenCompatMode();
829        } catch (RemoteException e) {
830            throw e.rethrowFromSystemServer();
831        }
832    }
833
834    /** @hide */
835    public void setFrontActivityScreenCompatMode(int mode) {
836        try {
837            getService().setFrontActivityScreenCompatMode(mode);
838        } catch (RemoteException e) {
839            throw e.rethrowFromSystemServer();
840        }
841    }
842
843    /** @hide */
844    public int getPackageScreenCompatMode(String packageName) {
845        try {
846            return getService().getPackageScreenCompatMode(packageName);
847        } catch (RemoteException e) {
848            throw e.rethrowFromSystemServer();
849        }
850    }
851
852    /** @hide */
853    public void setPackageScreenCompatMode(String packageName, int mode) {
854        try {
855            getService().setPackageScreenCompatMode(packageName, mode);
856        } catch (RemoteException e) {
857            throw e.rethrowFromSystemServer();
858        }
859    }
860
861    /** @hide */
862    public boolean getPackageAskScreenCompat(String packageName) {
863        try {
864            return getService().getPackageAskScreenCompat(packageName);
865        } catch (RemoteException e) {
866            throw e.rethrowFromSystemServer();
867        }
868    }
869
870    /** @hide */
871    public void setPackageAskScreenCompat(String packageName, boolean ask) {
872        try {
873            getService().setPackageAskScreenCompat(packageName, ask);
874        } catch (RemoteException e) {
875            throw e.rethrowFromSystemServer();
876        }
877    }
878
879    /**
880     * Return the approximate per-application memory class of the current
881     * device.  This gives you an idea of how hard a memory limit you should
882     * impose on your application to let the overall system work best.  The
883     * returned value is in megabytes; the baseline Android memory class is
884     * 16 (which happens to be the Java heap limit of those devices); some
885     * devices with more memory may return 24 or even higher numbers.
886     */
887    public int getMemoryClass() {
888        return staticGetMemoryClass();
889    }
890
891    /** @hide */
892    static public int staticGetMemoryClass() {
893        // Really brain dead right now -- just take this from the configured
894        // vm heap size, and assume it is in megabytes and thus ends with "m".
895        String vmHeapSize = SystemProperties.get("dalvik.vm.heapgrowthlimit", "");
896        if (vmHeapSize != null && !"".equals(vmHeapSize)) {
897            return Integer.parseInt(vmHeapSize.substring(0, vmHeapSize.length()-1));
898        }
899        return staticGetLargeMemoryClass();
900    }
901
902    /**
903     * Return the approximate per-application memory class of the current
904     * device when an application is running with a large heap.  This is the
905     * space available for memory-intensive applications; most applications
906     * should not need this amount of memory, and should instead stay with the
907     * {@link #getMemoryClass()} limit.  The returned value is in megabytes.
908     * This may be the same size as {@link #getMemoryClass()} on memory
909     * constrained devices, or it may be significantly larger on devices with
910     * a large amount of available RAM.
911     *
912     * <p>This is the size of the application's Dalvik heap if it has
913     * specified <code>android:largeHeap="true"</code> in its manifest.
914     */
915    public int getLargeMemoryClass() {
916        return staticGetLargeMemoryClass();
917    }
918
919    /** @hide */
920    static public int staticGetLargeMemoryClass() {
921        // Really brain dead right now -- just take this from the configured
922        // vm heap size, and assume it is in megabytes and thus ends with "m".
923        String vmHeapSize = SystemProperties.get("dalvik.vm.heapsize", "16m");
924        return Integer.parseInt(vmHeapSize.substring(0, vmHeapSize.length() - 1));
925    }
926
927    /**
928     * Returns true if this is a low-RAM device.  Exactly whether a device is low-RAM
929     * is ultimately up to the device configuration, but currently it generally means
930     * something with 1GB or less of RAM.  This is mostly intended to be used by apps
931     * to determine whether they should turn off certain features that require more RAM.
932     */
933    public boolean isLowRamDevice() {
934        return isLowRamDeviceStatic();
935    }
936
937    /** @hide */
938    public static boolean isLowRamDeviceStatic() {
939        return RoSystemProperties.CONFIG_LOW_RAM ||
940                (Build.IS_DEBUGGABLE && DEVELOPMENT_FORCE_LOW_RAM);
941    }
942
943    /**
944     * Returns true if this is a small battery device. Exactly whether a device is considered to be
945     * small battery is ultimately up to the device configuration, but currently it generally means
946     * something in the class of a device with 1000 mAh or less. This is mostly intended to be used
947     * to determine whether certain features should be altered to account for a drastically smaller
948     * battery.
949     * @hide
950     */
951    public static boolean isSmallBatteryDevice() {
952        return RoSystemProperties.CONFIG_SMALL_BATTERY;
953    }
954
955    /**
956     * Used by persistent processes to determine if they are running on a
957     * higher-end device so should be okay using hardware drawing acceleration
958     * (which tends to consume a lot more RAM).
959     * @hide
960     */
961    static public boolean isHighEndGfx() {
962        return !isLowRamDeviceStatic()
963                && !RoSystemProperties.CONFIG_AVOID_GFX_ACCEL
964                && !Resources.getSystem()
965                        .getBoolean(com.android.internal.R.bool.config_avoidGfxAccel);
966    }
967
968    /**
969     * Return the total number of bytes of RAM this device has.
970     * @hide
971     */
972    @TestApi
973    public long getTotalRam() {
974        MemInfoReader memreader = new MemInfoReader();
975        memreader.readMemInfo();
976        return memreader.getTotalSize();
977    }
978
979    /**
980     * Return the maximum number of recents entries that we will maintain and show.
981     * @hide
982     */
983    static public int getMaxRecentTasksStatic() {
984        if (gMaxRecentTasks < 0) {
985            return gMaxRecentTasks = isLowRamDeviceStatic() ? 36 : 48;
986        }
987        return gMaxRecentTasks;
988    }
989
990    /**
991     * Return the default limit on the number of recents that an app can make.
992     * @hide
993     */
994    static public int getDefaultAppRecentsLimitStatic() {
995        return getMaxRecentTasksStatic() / 6;
996    }
997
998    /**
999     * Return the maximum limit on the number of recents that an app can make.
1000     * @hide
1001     */
1002    static public int getMaxAppRecentsLimitStatic() {
1003        return getMaxRecentTasksStatic() / 2;
1004    }
1005
1006    /**
1007     * Returns true if the system supports at least one form of multi-window.
1008     * E.g. freeform, split-screen, picture-in-picture.
1009     * @hide
1010     */
1011    @TestApi
1012    static public boolean supportsMultiWindow(Context context) {
1013        // On watches, multi-window is used to present essential system UI, and thus it must be
1014        // supported regardless of device memory characteristics.
1015        boolean isWatch = context.getPackageManager().hasSystemFeature(
1016                PackageManager.FEATURE_WATCH);
1017        return (!isLowRamDeviceStatic() || isWatch)
1018                && Resources.getSystem().getBoolean(
1019                    com.android.internal.R.bool.config_supportsMultiWindow);
1020    }
1021
1022    /**
1023     * Returns true if the system supports split screen multi-window.
1024     * @hide
1025     */
1026    @TestApi
1027    static public boolean supportsSplitScreenMultiWindow(Context context) {
1028        return supportsMultiWindow(context)
1029                && Resources.getSystem().getBoolean(
1030                    com.android.internal.R.bool.config_supportsSplitScreenMultiWindow);
1031    }
1032
1033    /** @removed */
1034    @Deprecated
1035    public static int getMaxNumPictureInPictureActions() {
1036        return 3;
1037    }
1038
1039    /**
1040     * Information you can set and retrieve about the current activity within the recent task list.
1041     */
1042    public static class TaskDescription implements Parcelable {
1043        /** @hide */
1044        public static final String ATTR_TASKDESCRIPTION_PREFIX = "task_description_";
1045        private static final String ATTR_TASKDESCRIPTIONLABEL =
1046                ATTR_TASKDESCRIPTION_PREFIX + "label";
1047        private static final String ATTR_TASKDESCRIPTIONCOLOR_PRIMARY =
1048                ATTR_TASKDESCRIPTION_PREFIX + "color";
1049        private static final String ATTR_TASKDESCRIPTIONCOLOR_BACKGROUND =
1050                ATTR_TASKDESCRIPTION_PREFIX + "colorBackground";
1051        private static final String ATTR_TASKDESCRIPTIONICON_FILENAME =
1052                ATTR_TASKDESCRIPTION_PREFIX + "icon_filename";
1053        private static final String ATTR_TASKDESCRIPTIONICON_RESOURCE =
1054                ATTR_TASKDESCRIPTION_PREFIX + "icon_resource";
1055
1056        private String mLabel;
1057        private Bitmap mIcon;
1058        private int mIconRes;
1059        private String mIconFilename;
1060        private int mColorPrimary;
1061        private int mColorBackground;
1062        private int mStatusBarColor;
1063        private int mNavigationBarColor;
1064
1065        /**
1066         * Creates the TaskDescription to the specified values.
1067         *
1068         * @param label A label and description of the current state of this task.
1069         * @param icon An icon that represents the current state of this task.
1070         * @param colorPrimary A color to override the theme's primary color.  This color must be
1071         *                     opaque.
1072         * @deprecated use TaskDescription constructor with icon resource instead
1073         */
1074        @Deprecated
1075        public TaskDescription(String label, Bitmap icon, int colorPrimary) {
1076            this(label, icon, 0, null, colorPrimary, 0, 0, 0);
1077            if ((colorPrimary != 0) && (Color.alpha(colorPrimary) != 255)) {
1078                throw new RuntimeException("A TaskDescription's primary color should be opaque");
1079            }
1080        }
1081
1082        /**
1083         * Creates the TaskDescription to the specified values.
1084         *
1085         * @param label A label and description of the current state of this task.
1086         * @param iconRes A drawable resource of an icon that represents the current state of this
1087         *                activity.
1088         * @param colorPrimary A color to override the theme's primary color.  This color must be
1089         *                     opaque.
1090         */
1091        public TaskDescription(String label, @DrawableRes int iconRes, int colorPrimary) {
1092            this(label, null, iconRes, null, colorPrimary, 0, 0, 0);
1093            if ((colorPrimary != 0) && (Color.alpha(colorPrimary) != 255)) {
1094                throw new RuntimeException("A TaskDescription's primary color should be opaque");
1095            }
1096        }
1097
1098        /**
1099         * Creates the TaskDescription to the specified values.
1100         *
1101         * @param label A label and description of the current state of this activity.
1102         * @param icon An icon that represents the current state of this activity.
1103         * @deprecated use TaskDescription constructor with icon resource instead
1104         */
1105        @Deprecated
1106        public TaskDescription(String label, Bitmap icon) {
1107            this(label, icon, 0, null, 0, 0, 0, 0);
1108        }
1109
1110        /**
1111         * Creates the TaskDescription to the specified values.
1112         *
1113         * @param label A label and description of the current state of this activity.
1114         * @param iconRes A drawable resource of an icon that represents the current state of this
1115         *                activity.
1116         */
1117        public TaskDescription(String label, @DrawableRes int iconRes) {
1118            this(label, null, iconRes, null, 0, 0, 0, 0);
1119        }
1120
1121        /**
1122         * Creates the TaskDescription to the specified values.
1123         *
1124         * @param label A label and description of the current state of this activity.
1125         */
1126        public TaskDescription(String label) {
1127            this(label, null, 0, null, 0, 0, 0, 0);
1128        }
1129
1130        /**
1131         * Creates an empty TaskDescription.
1132         */
1133        public TaskDescription() {
1134            this(null, null, 0, null, 0, 0, 0, 0);
1135        }
1136
1137        /** @hide */
1138        public TaskDescription(String label, Bitmap bitmap, int iconRes, String iconFilename,
1139                int colorPrimary, int colorBackground, int statusBarColor, int navigationBarColor) {
1140            mLabel = label;
1141            mIcon = bitmap;
1142            mIconRes = iconRes;
1143            mIconFilename = iconFilename;
1144            mColorPrimary = colorPrimary;
1145            mColorBackground = colorBackground;
1146            mStatusBarColor = statusBarColor;
1147            mNavigationBarColor = navigationBarColor;
1148        }
1149
1150        /**
1151         * Creates a copy of another TaskDescription.
1152         */
1153        public TaskDescription(TaskDescription td) {
1154            copyFrom(td);
1155        }
1156
1157        /**
1158         * Copies this the values from another TaskDescription.
1159         * @hide
1160         */
1161        public void copyFrom(TaskDescription other) {
1162            mLabel = other.mLabel;
1163            mIcon = other.mIcon;
1164            mIconRes = other.mIconRes;
1165            mIconFilename = other.mIconFilename;
1166            mColorPrimary = other.mColorPrimary;
1167            mColorBackground = other.mColorBackground;
1168            mStatusBarColor = other.mStatusBarColor;
1169            mNavigationBarColor = other.mNavigationBarColor;
1170        }
1171
1172        /**
1173         * Copies this the values from another TaskDescription, but preserves the hidden fields
1174         * if they weren't set on {@code other}
1175         * @hide
1176         */
1177        public void copyFromPreserveHiddenFields(TaskDescription other) {
1178            mLabel = other.mLabel;
1179            mIcon = other.mIcon;
1180            mIconRes = other.mIconRes;
1181            mIconFilename = other.mIconFilename;
1182            mColorPrimary = other.mColorPrimary;
1183            if (other.mColorBackground != 0) {
1184                mColorBackground = other.mColorBackground;
1185            }
1186            if (other.mStatusBarColor != 0) {
1187                mStatusBarColor = other.mStatusBarColor;
1188            }
1189            if (other.mNavigationBarColor != 0) {
1190                mNavigationBarColor = other.mNavigationBarColor;
1191            }
1192        }
1193
1194        private TaskDescription(Parcel source) {
1195            readFromParcel(source);
1196        }
1197
1198        /**
1199         * Sets the label for this task description.
1200         * @hide
1201         */
1202        public void setLabel(String label) {
1203            mLabel = label;
1204        }
1205
1206        /**
1207         * Sets the primary color for this task description.
1208         * @hide
1209         */
1210        public void setPrimaryColor(int primaryColor) {
1211            // Ensure that the given color is valid
1212            if ((primaryColor != 0) && (Color.alpha(primaryColor) != 255)) {
1213                throw new RuntimeException("A TaskDescription's primary color should be opaque");
1214            }
1215            mColorPrimary = primaryColor;
1216        }
1217
1218        /**
1219         * Sets the background color for this task description.
1220         * @hide
1221         */
1222        public void setBackgroundColor(int backgroundColor) {
1223            // Ensure that the given color is valid
1224            if ((backgroundColor != 0) && (Color.alpha(backgroundColor) != 255)) {
1225                throw new RuntimeException("A TaskDescription's background color should be opaque");
1226            }
1227            mColorBackground = backgroundColor;
1228        }
1229
1230        /**
1231         * @hide
1232         */
1233        public void setStatusBarColor(int statusBarColor) {
1234            mStatusBarColor = statusBarColor;
1235        }
1236
1237        /**
1238         * @hide
1239         */
1240        public void setNavigationBarColor(int navigationBarColor) {
1241            mNavigationBarColor = navigationBarColor;
1242        }
1243
1244        /**
1245         * Sets the icon for this task description.
1246         * @hide
1247         */
1248        public void setIcon(Bitmap icon) {
1249            mIcon = icon;
1250        }
1251
1252        /**
1253         * Sets the icon resource for this task description.
1254         * @hide
1255         */
1256        public void setIcon(int iconRes) {
1257            mIconRes = iconRes;
1258        }
1259
1260        /**
1261         * Moves the icon bitmap reference from an actual Bitmap to a file containing the
1262         * bitmap.
1263         * @hide
1264         */
1265        public void setIconFilename(String iconFilename) {
1266            mIconFilename = iconFilename;
1267            mIcon = null;
1268        }
1269
1270        /**
1271         * @return The label and description of the current state of this task.
1272         */
1273        public String getLabel() {
1274            return mLabel;
1275        }
1276
1277        /**
1278         * @return The icon that represents the current state of this task.
1279         */
1280        public Bitmap getIcon() {
1281            if (mIcon != null) {
1282                return mIcon;
1283            }
1284            return loadTaskDescriptionIcon(mIconFilename, UserHandle.myUserId());
1285        }
1286
1287        /** @hide */
1288        @TestApi
1289        public int getIconResource() {
1290            return mIconRes;
1291        }
1292
1293        /** @hide */
1294        @TestApi
1295        public String getIconFilename() {
1296            return mIconFilename;
1297        }
1298
1299        /** @hide */
1300        public Bitmap getInMemoryIcon() {
1301            return mIcon;
1302        }
1303
1304        /** @hide */
1305        public static Bitmap loadTaskDescriptionIcon(String iconFilename, int userId) {
1306            if (iconFilename != null) {
1307                try {
1308                    return getService().getTaskDescriptionIcon(iconFilename,
1309                            userId);
1310                } catch (RemoteException e) {
1311                    throw e.rethrowFromSystemServer();
1312                }
1313            }
1314            return null;
1315        }
1316
1317        /**
1318         * @return The color override on the theme's primary color.
1319         */
1320        public int getPrimaryColor() {
1321            return mColorPrimary;
1322        }
1323
1324        /**
1325         * @return The background color.
1326         * @hide
1327         */
1328        public int getBackgroundColor() {
1329            return mColorBackground;
1330        }
1331
1332        /**
1333         * @hide
1334         */
1335        public int getStatusBarColor() {
1336            return mStatusBarColor;
1337        }
1338
1339        /**
1340         * @hide
1341         */
1342        public int getNavigationBarColor() {
1343            return mNavigationBarColor;
1344        }
1345
1346        /** @hide */
1347        public void saveToXml(XmlSerializer out) throws IOException {
1348            if (mLabel != null) {
1349                out.attribute(null, ATTR_TASKDESCRIPTIONLABEL, mLabel);
1350            }
1351            if (mColorPrimary != 0) {
1352                out.attribute(null, ATTR_TASKDESCRIPTIONCOLOR_PRIMARY,
1353                        Integer.toHexString(mColorPrimary));
1354            }
1355            if (mColorBackground != 0) {
1356                out.attribute(null, ATTR_TASKDESCRIPTIONCOLOR_BACKGROUND,
1357                        Integer.toHexString(mColorBackground));
1358            }
1359            if (mIconFilename != null) {
1360                out.attribute(null, ATTR_TASKDESCRIPTIONICON_FILENAME, mIconFilename);
1361            }
1362            if (mIconRes != 0) {
1363                out.attribute(null, ATTR_TASKDESCRIPTIONICON_RESOURCE, Integer.toString(mIconRes));
1364            }
1365        }
1366
1367        /** @hide */
1368        public void restoreFromXml(String attrName, String attrValue) {
1369            if (ATTR_TASKDESCRIPTIONLABEL.equals(attrName)) {
1370                setLabel(attrValue);
1371            } else if (ATTR_TASKDESCRIPTIONCOLOR_PRIMARY.equals(attrName)) {
1372                setPrimaryColor((int) Long.parseLong(attrValue, 16));
1373            } else if (ATTR_TASKDESCRIPTIONCOLOR_BACKGROUND.equals(attrName)) {
1374                setBackgroundColor((int) Long.parseLong(attrValue, 16));
1375            } else if (ATTR_TASKDESCRIPTIONICON_FILENAME.equals(attrName)) {
1376                setIconFilename(attrValue);
1377            } else if (ATTR_TASKDESCRIPTIONICON_RESOURCE.equals(attrName)) {
1378                setIcon(Integer.parseInt(attrValue, 10));
1379            }
1380        }
1381
1382        @Override
1383        public int describeContents() {
1384            return 0;
1385        }
1386
1387        @Override
1388        public void writeToParcel(Parcel dest, int flags) {
1389            if (mLabel == null) {
1390                dest.writeInt(0);
1391            } else {
1392                dest.writeInt(1);
1393                dest.writeString(mLabel);
1394            }
1395            if (mIcon == null) {
1396                dest.writeInt(0);
1397            } else {
1398                dest.writeInt(1);
1399                mIcon.writeToParcel(dest, 0);
1400            }
1401            dest.writeInt(mIconRes);
1402            dest.writeInt(mColorPrimary);
1403            dest.writeInt(mColorBackground);
1404            dest.writeInt(mStatusBarColor);
1405            dest.writeInt(mNavigationBarColor);
1406            if (mIconFilename == null) {
1407                dest.writeInt(0);
1408            } else {
1409                dest.writeInt(1);
1410                dest.writeString(mIconFilename);
1411            }
1412        }
1413
1414        public void readFromParcel(Parcel source) {
1415            mLabel = source.readInt() > 0 ? source.readString() : null;
1416            mIcon = source.readInt() > 0 ? Bitmap.CREATOR.createFromParcel(source) : null;
1417            mIconRes = source.readInt();
1418            mColorPrimary = source.readInt();
1419            mColorBackground = source.readInt();
1420            mStatusBarColor = source.readInt();
1421            mNavigationBarColor = source.readInt();
1422            mIconFilename = source.readInt() > 0 ? source.readString() : null;
1423        }
1424
1425        public static final Creator<TaskDescription> CREATOR
1426                = new Creator<TaskDescription>() {
1427            public TaskDescription createFromParcel(Parcel source) {
1428                return new TaskDescription(source);
1429            }
1430            public TaskDescription[] newArray(int size) {
1431                return new TaskDescription[size];
1432            }
1433        };
1434
1435        @Override
1436        public String toString() {
1437            return "TaskDescription Label: " + mLabel + " Icon: " + mIcon +
1438                    " IconRes: " + mIconRes + " IconFilename: " + mIconFilename +
1439                    " colorPrimary: " + mColorPrimary + " colorBackground: " + mColorBackground +
1440                    " statusBarColor: " + mColorBackground +
1441                    " navigationBarColor: " + mNavigationBarColor;
1442        }
1443    }
1444
1445    /**
1446     * Information you can retrieve about tasks that the user has most recently
1447     * started or visited.
1448     */
1449    public static class RecentTaskInfo implements Parcelable {
1450        /**
1451         * If this task is currently running, this is the identifier for it.
1452         * If it is not running, this will be -1.
1453         */
1454        public int id;
1455
1456        /**
1457         * The true identifier of this task, valid even if it is not running.
1458         */
1459        public int persistentId;
1460
1461        /**
1462         * The original Intent used to launch the task.  You can use this
1463         * Intent to re-launch the task (if it is no longer running) or bring
1464         * the current task to the front.
1465         */
1466        public Intent baseIntent;
1467
1468        /**
1469         * If this task was started from an alias, this is the actual
1470         * activity component that was initially started; the component of
1471         * the baseIntent in this case is the name of the actual activity
1472         * implementation that the alias referred to.  Otherwise, this is null.
1473         */
1474        public ComponentName origActivity;
1475
1476        /**
1477         * The actual activity component that started the task.
1478         * @hide
1479         */
1480        @Nullable
1481        public ComponentName realActivity;
1482
1483        /**
1484         * Description of the task's last state.
1485         */
1486        public CharSequence description;
1487
1488        /**
1489         * The id of the ActivityStack this Task was on most recently.
1490         * @hide
1491         */
1492        public int stackId;
1493
1494        /**
1495         * The id of the user the task was running as.
1496         * @hide
1497         */
1498        public int userId;
1499
1500        /**
1501         * The first time this task was active.
1502         * @hide
1503         */
1504        public long firstActiveTime;
1505
1506        /**
1507         * The last time this task was active.
1508         * @hide
1509         */
1510        public long lastActiveTime;
1511
1512        /**
1513         * The recent activity values for the highest activity in the stack to have set the values.
1514         * {@link Activity#setTaskDescription(android.app.ActivityManager.TaskDescription)}.
1515         */
1516        public TaskDescription taskDescription;
1517
1518        /**
1519         * Task affiliation for grouping with other tasks.
1520         */
1521        public int affiliatedTaskId;
1522
1523        /**
1524         * Task affiliation color of the source task with the affiliated task id.
1525         *
1526         * @hide
1527         */
1528        public int affiliatedTaskColor;
1529
1530        /**
1531         * The component launched as the first activity in the task.
1532         * This can be considered the "application" of this task.
1533         */
1534        public ComponentName baseActivity;
1535
1536        /**
1537         * The activity component at the top of the history stack of the task.
1538         * This is what the user is currently doing.
1539         */
1540        public ComponentName topActivity;
1541
1542        /**
1543         * Number of activities in this task.
1544         */
1545        public int numActivities;
1546
1547        /**
1548         * The bounds of the task.
1549         * @hide
1550         */
1551        public Rect bounds;
1552
1553        /**
1554         * True if the task can go in the docked stack.
1555         * @hide
1556         */
1557        public boolean supportsSplitScreenMultiWindow;
1558
1559        /**
1560         * The resize mode of the task. See {@link ActivityInfo#resizeMode}.
1561         * @hide
1562         */
1563        public int resizeMode;
1564
1565        /**
1566         * The current configuration this task is in.
1567         * @hide
1568         */
1569        final public Configuration configuration = new Configuration();
1570
1571        public RecentTaskInfo() {
1572        }
1573
1574        @Override
1575        public int describeContents() {
1576            return 0;
1577        }
1578
1579        @Override
1580        public void writeToParcel(Parcel dest, int flags) {
1581            dest.writeInt(id);
1582            dest.writeInt(persistentId);
1583            if (baseIntent != null) {
1584                dest.writeInt(1);
1585                baseIntent.writeToParcel(dest, 0);
1586            } else {
1587                dest.writeInt(0);
1588            }
1589            ComponentName.writeToParcel(origActivity, dest);
1590            ComponentName.writeToParcel(realActivity, dest);
1591            TextUtils.writeToParcel(description, dest,
1592                    Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
1593            if (taskDescription != null) {
1594                dest.writeInt(1);
1595                taskDescription.writeToParcel(dest, 0);
1596            } else {
1597                dest.writeInt(0);
1598            }
1599            dest.writeInt(stackId);
1600            dest.writeInt(userId);
1601            dest.writeLong(lastActiveTime);
1602            dest.writeInt(affiliatedTaskId);
1603            dest.writeInt(affiliatedTaskColor);
1604            ComponentName.writeToParcel(baseActivity, dest);
1605            ComponentName.writeToParcel(topActivity, dest);
1606            dest.writeInt(numActivities);
1607            if (bounds != null) {
1608                dest.writeInt(1);
1609                bounds.writeToParcel(dest, 0);
1610            } else {
1611                dest.writeInt(0);
1612            }
1613            dest.writeInt(supportsSplitScreenMultiWindow ? 1 : 0);
1614            dest.writeInt(resizeMode);
1615            configuration.writeToParcel(dest, flags);
1616        }
1617
1618        public void readFromParcel(Parcel source) {
1619            id = source.readInt();
1620            persistentId = source.readInt();
1621            baseIntent = source.readInt() > 0 ? Intent.CREATOR.createFromParcel(source) : null;
1622            origActivity = ComponentName.readFromParcel(source);
1623            realActivity = ComponentName.readFromParcel(source);
1624            description = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
1625            taskDescription = source.readInt() > 0 ?
1626                    TaskDescription.CREATOR.createFromParcel(source) : null;
1627            stackId = source.readInt();
1628            userId = source.readInt();
1629            lastActiveTime = source.readLong();
1630            affiliatedTaskId = source.readInt();
1631            affiliatedTaskColor = source.readInt();
1632            baseActivity = ComponentName.readFromParcel(source);
1633            topActivity = ComponentName.readFromParcel(source);
1634            numActivities = source.readInt();
1635            bounds = source.readInt() > 0 ?
1636                    Rect.CREATOR.createFromParcel(source) : null;
1637            supportsSplitScreenMultiWindow = source.readInt() == 1;
1638            resizeMode = source.readInt();
1639            configuration.readFromParcel(source);
1640        }
1641
1642        public static final Creator<RecentTaskInfo> CREATOR
1643                = new Creator<RecentTaskInfo>() {
1644            public RecentTaskInfo createFromParcel(Parcel source) {
1645                return new RecentTaskInfo(source);
1646            }
1647            public RecentTaskInfo[] newArray(int size) {
1648                return new RecentTaskInfo[size];
1649            }
1650        };
1651
1652        private RecentTaskInfo(Parcel source) {
1653            readFromParcel(source);
1654        }
1655    }
1656
1657    /**
1658     * Flag for use with {@link #getRecentTasks}: return all tasks, even those
1659     * that have set their
1660     * {@link android.content.Intent#FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS} flag.
1661     */
1662    public static final int RECENT_WITH_EXCLUDED = 0x0001;
1663
1664    /**
1665     * Provides a list that does not contain any
1666     * recent tasks that currently are not available to the user.
1667     */
1668    public static final int RECENT_IGNORE_UNAVAILABLE = 0x0002;
1669
1670    /**
1671     * <p></p>Return a list of the tasks that the user has recently launched, with
1672     * the most recent being first and older ones after in order.
1673     *
1674     * <p><b>Note: this method is only intended for debugging and presenting
1675     * task management user interfaces</b>.  This should never be used for
1676     * core logic in an application, such as deciding between different
1677     * behaviors based on the information found here.  Such uses are
1678     * <em>not</em> supported, and will likely break in the future.  For
1679     * example, if multiple applications can be actively running at the
1680     * same time, assumptions made about the meaning of the data here for
1681     * purposes of control flow will be incorrect.</p>
1682     *
1683     * @deprecated As of {@link android.os.Build.VERSION_CODES#LOLLIPOP}, this method is
1684     * no longer available to third party applications: the introduction of
1685     * document-centric recents means
1686     * it can leak personal information to the caller.  For backwards compatibility,
1687     * it will still return a small subset of its data: at least the caller's
1688     * own tasks (though see {@link #getAppTasks()} for the correct supported
1689     * way to retrieve that information), and possibly some other tasks
1690     * such as home that are known to not be sensitive.
1691     *
1692     * @param maxNum The maximum number of entries to return in the list.  The
1693     * actual number returned may be smaller, depending on how many tasks the
1694     * user has started and the maximum number the system can remember.
1695     * @param flags Information about what to return.  May be any combination
1696     * of {@link #RECENT_WITH_EXCLUDED} and {@link #RECENT_IGNORE_UNAVAILABLE}.
1697     *
1698     * @return Returns a list of RecentTaskInfo records describing each of
1699     * the recent tasks.
1700     */
1701    @Deprecated
1702    public List<RecentTaskInfo> getRecentTasks(int maxNum, int flags)
1703            throws SecurityException {
1704        try {
1705            if (maxNum < 0) {
1706                throw new IllegalArgumentException("The requested number of tasks should be >= 0");
1707            }
1708            return getService().getRecentTasks(maxNum, flags, mContext.getUserId()).getList();
1709        } catch (RemoteException e) {
1710            throw e.rethrowFromSystemServer();
1711        }
1712    }
1713
1714    /**
1715     * Information you can retrieve about a particular task that is currently
1716     * "running" in the system.  Note that a running task does not mean the
1717     * given task actually has a process it is actively running in; it simply
1718     * means that the user has gone to it and never closed it, but currently
1719     * the system may have killed its process and is only holding on to its
1720     * last state in order to restart it when the user returns.
1721     */
1722    public static class RunningTaskInfo implements Parcelable {
1723        /**
1724         * A unique identifier for this task.
1725         */
1726        public int id;
1727
1728        /**
1729         * The stack that currently contains this task.
1730         * @hide
1731         */
1732        public int stackId;
1733
1734        /**
1735         * The component launched as the first activity in the task.  This can
1736         * be considered the "application" of this task.
1737         */
1738        public ComponentName baseActivity;
1739
1740        /**
1741         * The activity component at the top of the history stack of the task.
1742         * This is what the user is currently doing.
1743         */
1744        public ComponentName topActivity;
1745
1746        /**
1747         * Thumbnail representation of the task's current state.  Currently
1748         * always null.
1749         */
1750        public Bitmap thumbnail;
1751
1752        /**
1753         * Description of the task's current state.
1754         */
1755        public CharSequence description;
1756
1757        /**
1758         * Number of activities in this task.
1759         */
1760        public int numActivities;
1761
1762        /**
1763         * Number of activities that are currently running (not stopped
1764         * and persisted) in this task.
1765         */
1766        public int numRunning;
1767
1768        /**
1769         * Last time task was run. For sorting.
1770         * @hide
1771         */
1772        public long lastActiveTime;
1773
1774        /**
1775         * True if the task can go in the docked stack.
1776         * @hide
1777         */
1778        public boolean supportsSplitScreenMultiWindow;
1779
1780        /**
1781         * The resize mode of the task. See {@link ActivityInfo#resizeMode}.
1782         * @hide
1783         */
1784        public int resizeMode;
1785
1786        /**
1787         * The full configuration the task is currently running in.
1788         * @hide
1789         */
1790        final public Configuration configuration = new Configuration();
1791
1792        public RunningTaskInfo() {
1793        }
1794
1795        public int describeContents() {
1796            return 0;
1797        }
1798
1799        public void writeToParcel(Parcel dest, int flags) {
1800            dest.writeInt(id);
1801            dest.writeInt(stackId);
1802            ComponentName.writeToParcel(baseActivity, dest);
1803            ComponentName.writeToParcel(topActivity, dest);
1804            if (thumbnail != null) {
1805                dest.writeInt(1);
1806                thumbnail.writeToParcel(dest, 0);
1807            } else {
1808                dest.writeInt(0);
1809            }
1810            TextUtils.writeToParcel(description, dest,
1811                    Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
1812            dest.writeInt(numActivities);
1813            dest.writeInt(numRunning);
1814            dest.writeInt(supportsSplitScreenMultiWindow ? 1 : 0);
1815            dest.writeInt(resizeMode);
1816            configuration.writeToParcel(dest, flags);
1817        }
1818
1819        public void readFromParcel(Parcel source) {
1820            id = source.readInt();
1821            stackId = source.readInt();
1822            baseActivity = ComponentName.readFromParcel(source);
1823            topActivity = ComponentName.readFromParcel(source);
1824            if (source.readInt() != 0) {
1825                thumbnail = Bitmap.CREATOR.createFromParcel(source);
1826            } else {
1827                thumbnail = null;
1828            }
1829            description = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
1830            numActivities = source.readInt();
1831            numRunning = source.readInt();
1832            supportsSplitScreenMultiWindow = source.readInt() != 0;
1833            resizeMode = source.readInt();
1834            configuration.readFromParcel(source);
1835        }
1836
1837        public static final Creator<RunningTaskInfo> CREATOR = new Creator<RunningTaskInfo>() {
1838            public RunningTaskInfo createFromParcel(Parcel source) {
1839                return new RunningTaskInfo(source);
1840            }
1841            public RunningTaskInfo[] newArray(int size) {
1842                return new RunningTaskInfo[size];
1843            }
1844        };
1845
1846        private RunningTaskInfo(Parcel source) {
1847            readFromParcel(source);
1848        }
1849    }
1850
1851    /**
1852     * Get the list of tasks associated with the calling application.
1853     *
1854     * @return The list of tasks associated with the application making this call.
1855     * @throws SecurityException
1856     */
1857    public List<ActivityManager.AppTask> getAppTasks() {
1858        ArrayList<AppTask> tasks = new ArrayList<AppTask>();
1859        List<IBinder> appTasks;
1860        try {
1861            appTasks = getService().getAppTasks(mContext.getPackageName());
1862        } catch (RemoteException e) {
1863            throw e.rethrowFromSystemServer();
1864        }
1865        int numAppTasks = appTasks.size();
1866        for (int i = 0; i < numAppTasks; i++) {
1867            tasks.add(new AppTask(IAppTask.Stub.asInterface(appTasks.get(i))));
1868        }
1869        return tasks;
1870    }
1871
1872    /**
1873     * Return the current design dimensions for {@link AppTask} thumbnails, for use
1874     * with {@link #addAppTask}.
1875     */
1876    public Size getAppTaskThumbnailSize() {
1877        synchronized (this) {
1878            ensureAppTaskThumbnailSizeLocked();
1879            return new Size(mAppTaskThumbnailSize.x, mAppTaskThumbnailSize.y);
1880        }
1881    }
1882
1883    private void ensureAppTaskThumbnailSizeLocked() {
1884        if (mAppTaskThumbnailSize == null) {
1885            try {
1886                mAppTaskThumbnailSize = getService().getAppTaskThumbnailSize();
1887            } catch (RemoteException e) {
1888                throw e.rethrowFromSystemServer();
1889            }
1890        }
1891    }
1892
1893    /**
1894     * Add a new {@link AppTask} for the calling application.  This will create a new
1895     * recents entry that is added to the <b>end</b> of all existing recents.
1896     *
1897     * @param activity The activity that is adding the entry.   This is used to help determine
1898     * the context that the new recents entry will be in.
1899     * @param intent The Intent that describes the recents entry.  This is the same Intent that
1900     * you would have used to launch the activity for it.  In generally you will want to set
1901     * both {@link Intent#FLAG_ACTIVITY_NEW_DOCUMENT} and
1902     * {@link Intent#FLAG_ACTIVITY_RETAIN_IN_RECENTS}; the latter is required since this recents
1903     * entry will exist without an activity, so it doesn't make sense to not retain it when
1904     * its activity disappears.  The given Intent here also must have an explicit ComponentName
1905     * set on it.
1906     * @param description Optional additional description information.
1907     * @param thumbnail Thumbnail to use for the recents entry.  Should be the size given by
1908     * {@link #getAppTaskThumbnailSize()}.  If the bitmap is not that exact size, it will be
1909     * recreated in your process, probably in a way you don't like, before the recents entry
1910     * is added.
1911     *
1912     * @return Returns the task id of the newly added app task, or -1 if the add failed.  The
1913     * most likely cause of failure is that there is no more room for more tasks for your app.
1914     */
1915    public int addAppTask(@NonNull Activity activity, @NonNull Intent intent,
1916            @Nullable TaskDescription description, @NonNull Bitmap thumbnail) {
1917        Point size;
1918        synchronized (this) {
1919            ensureAppTaskThumbnailSizeLocked();
1920            size = mAppTaskThumbnailSize;
1921        }
1922        final int tw = thumbnail.getWidth();
1923        final int th = thumbnail.getHeight();
1924        if (tw != size.x || th != size.y) {
1925            Bitmap bm = Bitmap.createBitmap(size.x, size.y, thumbnail.getConfig());
1926
1927            // Use ScaleType.CENTER_CROP, except we leave the top edge at the top.
1928            float scale;
1929            float dx = 0, dy = 0;
1930            if (tw * size.x > size.y * th) {
1931                scale = (float) size.x / (float) th;
1932                dx = (size.y - tw * scale) * 0.5f;
1933            } else {
1934                scale = (float) size.y / (float) tw;
1935                dy = (size.x - th * scale) * 0.5f;
1936            }
1937            Matrix matrix = new Matrix();
1938            matrix.setScale(scale, scale);
1939            matrix.postTranslate((int) (dx + 0.5f), 0);
1940
1941            Canvas canvas = new Canvas(bm);
1942            canvas.drawBitmap(thumbnail, matrix, null);
1943            canvas.setBitmap(null);
1944
1945            thumbnail = bm;
1946        }
1947        if (description == null) {
1948            description = new TaskDescription();
1949        }
1950        try {
1951            return getService().addAppTask(activity.getActivityToken(),
1952                    intent, description, thumbnail);
1953        } catch (RemoteException e) {
1954            throw e.rethrowFromSystemServer();
1955        }
1956    }
1957
1958    /**
1959     * Return a list of the tasks that are currently running, with
1960     * the most recent being first and older ones after in order.  Note that
1961     * "running" does not mean any of the task's code is currently loaded or
1962     * activity -- the task may have been frozen by the system, so that it
1963     * can be restarted in its previous state when next brought to the
1964     * foreground.
1965     *
1966     * <p><b>Note: this method is only intended for debugging and presenting
1967     * task management user interfaces</b>.  This should never be used for
1968     * core logic in an application, such as deciding between different
1969     * behaviors based on the information found here.  Such uses are
1970     * <em>not</em> supported, and will likely break in the future.  For
1971     * example, if multiple applications can be actively running at the
1972     * same time, assumptions made about the meaning of the data here for
1973     * purposes of control flow will be incorrect.</p>
1974     *
1975     * @deprecated As of {@link android.os.Build.VERSION_CODES#LOLLIPOP}, this method
1976     * is no longer available to third party
1977     * applications: the introduction of document-centric recents means
1978     * it can leak person information to the caller.  For backwards compatibility,
1979     * it will still return a small subset of its data: at least the caller's
1980     * own tasks, and possibly some other tasks
1981     * such as home that are known to not be sensitive.
1982     *
1983     * @param maxNum The maximum number of entries to return in the list.  The
1984     * actual number returned may be smaller, depending on how many tasks the
1985     * user has started.
1986     *
1987     * @return Returns a list of RunningTaskInfo records describing each of
1988     * the running tasks.
1989     */
1990    @Deprecated
1991    public List<RunningTaskInfo> getRunningTasks(int maxNum)
1992            throws SecurityException {
1993        try {
1994            return getService().getTasks(maxNum);
1995        } catch (RemoteException e) {
1996            throw e.rethrowFromSystemServer();
1997        }
1998    }
1999
2000    /**
2001     * Sets the windowing mode for a specific task. Only works on tasks of type
2002     * {@link WindowConfiguration#ACTIVITY_TYPE_STANDARD}
2003     * @param taskId The id of the task to set the windowing mode for.
2004     * @param windowingMode The windowing mode to set for the task.
2005     * @param toTop If the task should be moved to the top once the windowing mode changes.
2006     * @hide
2007     */
2008    @TestApi
2009    @RequiresPermission(android.Manifest.permission.MANAGE_ACTIVITY_STACKS)
2010    public void setTaskWindowingMode(int taskId, int windowingMode, boolean toTop)
2011            throws SecurityException {
2012        try {
2013            getService().setTaskWindowingMode(taskId, windowingMode, toTop);
2014        } catch (RemoteException e) {
2015            throw e.rethrowFromSystemServer();
2016        }
2017    }
2018
2019    /**
2020     * Moves the input task to the primary-split-screen stack.
2021     * @param taskId Id of task to move.
2022     * @param createMode The mode the primary split screen stack should be created in if it doesn't
2023     *                  exist already. See
2024     *                   {@link android.app.ActivityManager#SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT}
2025     *                   and
2026     *                   {@link android.app.ActivityManager
2027     *                        #SPLIT_SCREEN_CREATE_MODE_BOTTOM_OR_RIGHT}
2028     * @param toTop If the task and stack should be moved to the top.
2029     * @param animate Whether we should play an animation for the moving the task
2030     * @param initialBounds If the primary stack gets created, it will use these bounds for the
2031     *                      docked stack. Pass {@code null} to use default bounds.
2032     * @param showRecents If the recents activity should be shown on the other side of the task
2033     *                    going into split-screen mode.
2034     * @hide
2035     */
2036    @TestApi
2037    @RequiresPermission(android.Manifest.permission.MANAGE_ACTIVITY_STACKS)
2038    public void setTaskWindowingModeSplitScreenPrimary(int taskId, int createMode, boolean toTop,
2039            boolean animate, Rect initialBounds, boolean showRecents) throws SecurityException {
2040        try {
2041            getService().setTaskWindowingModeSplitScreenPrimary(taskId, createMode, toTop, animate,
2042                    initialBounds, showRecents);
2043        } catch (RemoteException e) {
2044            throw e.rethrowFromSystemServer();
2045        }
2046    }
2047
2048    /**
2049     * Resizes the input stack id to the given bounds.
2050     * @param stackId Id of the stack to resize.
2051     * @param bounds Bounds to resize the stack to or {@code null} for fullscreen.
2052     * @hide
2053     */
2054    @TestApi
2055    @RequiresPermission(android.Manifest.permission.MANAGE_ACTIVITY_STACKS)
2056    public void resizeStack(int stackId, Rect bounds) throws SecurityException {
2057        try {
2058            getService().resizeStack(stackId, bounds, false /* allowResizeInDockedMode */,
2059                    false /* preserveWindows */, false /* animate */, -1 /* animationDuration */);
2060        } catch (RemoteException e) {
2061            throw e.rethrowFromSystemServer();
2062        }
2063    }
2064
2065    /**
2066     * Removes stacks in the windowing modes from the system if they are of activity type
2067     * ACTIVITY_TYPE_STANDARD or ACTIVITY_TYPE_UNDEFINED
2068     *
2069     * @hide
2070     */
2071    @TestApi
2072    @RequiresPermission(android.Manifest.permission.MANAGE_ACTIVITY_STACKS)
2073    public void removeStacksInWindowingModes(int[] windowingModes) throws SecurityException {
2074        try {
2075            getService().removeStacksInWindowingModes(windowingModes);
2076        } catch (RemoteException e) {
2077            throw e.rethrowFromSystemServer();
2078        }
2079    }
2080
2081    /**
2082     * Removes stack of the activity types from the system.
2083     *
2084     * @hide
2085     */
2086    @TestApi
2087    @RequiresPermission(android.Manifest.permission.MANAGE_ACTIVITY_STACKS)
2088    public void removeStacksWithActivityTypes(int[] activityTypes) throws SecurityException {
2089        try {
2090            getService().removeStacksWithActivityTypes(activityTypes);
2091        } catch (RemoteException e) {
2092            throw e.rethrowFromSystemServer();
2093        }
2094    }
2095
2096    /**
2097     * Represents a task snapshot.
2098     * @hide
2099     */
2100    public static class TaskSnapshot implements Parcelable {
2101
2102        private final GraphicBuffer mSnapshot;
2103        private final int mOrientation;
2104        private final Rect mContentInsets;
2105        // Whether this snapshot is a down-sampled version of the full resolution, used mainly for
2106        // low-ram devices
2107        private final boolean mReducedResolution;
2108        // Whether or not the snapshot is a real snapshot or an app-theme generated snapshot due to
2109        // the task having a secure window or having previews disabled
2110        private final boolean mIsRealSnapshot;
2111        private final int mWindowingMode;
2112        private final float mScale;
2113
2114        public TaskSnapshot(GraphicBuffer snapshot, int orientation, Rect contentInsets,
2115                boolean reducedResolution, float scale, boolean isRealSnapshot, int windowingMode) {
2116            mSnapshot = snapshot;
2117            mOrientation = orientation;
2118            mContentInsets = new Rect(contentInsets);
2119            mReducedResolution = reducedResolution;
2120            mScale = scale;
2121            mIsRealSnapshot = isRealSnapshot;
2122            mWindowingMode = windowingMode;
2123        }
2124
2125        private TaskSnapshot(Parcel source) {
2126            mSnapshot = source.readParcelable(null /* classLoader */);
2127            mOrientation = source.readInt();
2128            mContentInsets = source.readParcelable(null /* classLoader */);
2129            mReducedResolution = source.readBoolean();
2130            mScale = source.readFloat();
2131            mIsRealSnapshot = source.readBoolean();
2132            mWindowingMode = source.readInt();
2133        }
2134
2135        /**
2136         * @return The graphic buffer representing the screenshot.
2137         */
2138        public GraphicBuffer getSnapshot() {
2139            return mSnapshot;
2140        }
2141
2142        /**
2143         * @return The screen orientation the screenshot was taken in.
2144         */
2145        public int getOrientation() {
2146            return mOrientation;
2147        }
2148
2149        /**
2150         * @return The system/content insets on the snapshot. These can be clipped off in order to
2151         *         remove any areas behind system bars in the snapshot.
2152         */
2153        public Rect getContentInsets() {
2154            return mContentInsets;
2155        }
2156
2157        /**
2158         * @return Whether this snapshot is a down-sampled version of the full resolution.
2159         */
2160        public boolean isReducedResolution() {
2161            return mReducedResolution;
2162        }
2163
2164        /**
2165         * @return Whether or not the snapshot is a real snapshot or an app-theme generated snapshot
2166         * due to the task having a secure window or having previews disabled.
2167         */
2168        public boolean isRealSnapshot() {
2169            return mIsRealSnapshot;
2170        }
2171
2172        /**
2173         * @return The windowing mode of the task when this snapshot was taken.
2174         */
2175        public int getWindowingMode() {
2176            return mWindowingMode;
2177        }
2178
2179        /**
2180         * @return The scale this snapshot was taken in.
2181         */
2182        public float getScale() {
2183            return mScale;
2184        }
2185
2186        @Override
2187        public int describeContents() {
2188            return 0;
2189        }
2190
2191        @Override
2192        public void writeToParcel(Parcel dest, int flags) {
2193            dest.writeParcelable(mSnapshot, 0);
2194            dest.writeInt(mOrientation);
2195            dest.writeParcelable(mContentInsets, 0);
2196            dest.writeBoolean(mReducedResolution);
2197            dest.writeFloat(mScale);
2198            dest.writeBoolean(mIsRealSnapshot);
2199            dest.writeInt(mWindowingMode);
2200        }
2201
2202        @Override
2203        public String toString() {
2204            final int width = mSnapshot != null ? mSnapshot.getWidth() : 0;
2205            final int height = mSnapshot != null ? mSnapshot.getHeight() : 0;
2206            return "TaskSnapshot{mSnapshot=" + mSnapshot + " (" + width + "x" + height + ")"
2207                    + " mOrientation=" + mOrientation
2208                    + " mContentInsets=" + mContentInsets.toShortString()
2209                    + " mReducedResolution=" + mReducedResolution + " mScale=" + mScale
2210                    + " mIsRealSnapshot=" + mIsRealSnapshot + " mWindowingMode=" + mWindowingMode;
2211        }
2212
2213        public static final Creator<TaskSnapshot> CREATOR = new Creator<TaskSnapshot>() {
2214            public TaskSnapshot createFromParcel(Parcel source) {
2215                return new TaskSnapshot(source);
2216            }
2217            public TaskSnapshot[] newArray(int size) {
2218                return new TaskSnapshot[size];
2219            }
2220        };
2221    }
2222
2223    /** @hide */
2224    @IntDef(flag = true, prefix = { "MOVE_TASK_" }, value = {
2225            MOVE_TASK_WITH_HOME,
2226            MOVE_TASK_NO_USER_ACTION,
2227    })
2228    @Retention(RetentionPolicy.SOURCE)
2229    public @interface MoveTaskFlags {}
2230
2231    /**
2232     * Flag for {@link #moveTaskToFront(int, int)}: also move the "home"
2233     * activity along with the task, so it is positioned immediately behind
2234     * the task.
2235     */
2236    public static final int MOVE_TASK_WITH_HOME = 0x00000001;
2237
2238    /**
2239     * Flag for {@link #moveTaskToFront(int, int)}: don't count this as a
2240     * user-instigated action, so the current activity will not receive a
2241     * hint that the user is leaving.
2242     */
2243    public static final int MOVE_TASK_NO_USER_ACTION = 0x00000002;
2244
2245    /**
2246     * Equivalent to calling {@link #moveTaskToFront(int, int, Bundle)}
2247     * with a null options argument.
2248     *
2249     * @param taskId The identifier of the task to be moved, as found in
2250     * {@link RunningTaskInfo} or {@link RecentTaskInfo}.
2251     * @param flags Additional operational flags.
2252     */
2253    @RequiresPermission(android.Manifest.permission.REORDER_TASKS)
2254    public void moveTaskToFront(int taskId, @MoveTaskFlags int flags) {
2255        moveTaskToFront(taskId, flags, null);
2256    }
2257
2258    /**
2259     * Ask that the task associated with a given task ID be moved to the
2260     * front of the stack, so it is now visible to the user.
2261     *
2262     * @param taskId The identifier of the task to be moved, as found in
2263     * {@link RunningTaskInfo} or {@link RecentTaskInfo}.
2264     * @param flags Additional operational flags.
2265     * @param options Additional options for the operation, either null or
2266     * as per {@link Context#startActivity(Intent, android.os.Bundle)
2267     * Context.startActivity(Intent, Bundle)}.
2268     */
2269    @RequiresPermission(android.Manifest.permission.REORDER_TASKS)
2270    public void moveTaskToFront(int taskId, @MoveTaskFlags int flags, Bundle options) {
2271        try {
2272            getService().moveTaskToFront(taskId, flags, options);
2273        } catch (RemoteException e) {
2274            throw e.rethrowFromSystemServer();
2275        }
2276    }
2277
2278    /**
2279     * Information you can retrieve about a particular Service that is
2280     * currently running in the system.
2281     */
2282    public static class RunningServiceInfo implements Parcelable {
2283        /**
2284         * The service component.
2285         */
2286        public ComponentName service;
2287
2288        /**
2289         * If non-zero, this is the process the service is running in.
2290         */
2291        public int pid;
2292
2293        /**
2294         * The UID that owns this service.
2295         */
2296        public int uid;
2297
2298        /**
2299         * The name of the process this service runs in.
2300         */
2301        public String process;
2302
2303        /**
2304         * Set to true if the service has asked to run as a foreground process.
2305         */
2306        public boolean foreground;
2307
2308        /**
2309         * The time when the service was first made active, either by someone
2310         * starting or binding to it.  This
2311         * is in units of {@link android.os.SystemClock#elapsedRealtime()}.
2312         */
2313        public long activeSince;
2314
2315        /**
2316         * Set to true if this service has been explicitly started.
2317         */
2318        public boolean started;
2319
2320        /**
2321         * Number of clients connected to the service.
2322         */
2323        public int clientCount;
2324
2325        /**
2326         * Number of times the service's process has crashed while the service
2327         * is running.
2328         */
2329        public int crashCount;
2330
2331        /**
2332         * The time when there was last activity in the service (either
2333         * explicit requests to start it or clients binding to it).  This
2334         * is in units of {@link android.os.SystemClock#uptimeMillis()}.
2335         */
2336        public long lastActivityTime;
2337
2338        /**
2339         * If non-zero, this service is not currently running, but scheduled to
2340         * restart at the given time.
2341         */
2342        public long restarting;
2343
2344        /**
2345         * Bit for {@link #flags}: set if this service has been
2346         * explicitly started.
2347         */
2348        public static final int FLAG_STARTED = 1<<0;
2349
2350        /**
2351         * Bit for {@link #flags}: set if the service has asked to
2352         * run as a foreground process.
2353         */
2354        public static final int FLAG_FOREGROUND = 1<<1;
2355
2356        /**
2357         * Bit for {@link #flags}: set if the service is running in a
2358         * core system process.
2359         */
2360        public static final int FLAG_SYSTEM_PROCESS = 1<<2;
2361
2362        /**
2363         * Bit for {@link #flags}: set if the service is running in a
2364         * persistent process.
2365         */
2366        public static final int FLAG_PERSISTENT_PROCESS = 1<<3;
2367
2368        /**
2369         * Running flags.
2370         */
2371        public int flags;
2372
2373        /**
2374         * For special services that are bound to by system code, this is
2375         * the package that holds the binding.
2376         */
2377        public String clientPackage;
2378
2379        /**
2380         * For special services that are bound to by system code, this is
2381         * a string resource providing a user-visible label for who the
2382         * client is.
2383         */
2384        public int clientLabel;
2385
2386        public RunningServiceInfo() {
2387        }
2388
2389        public int describeContents() {
2390            return 0;
2391        }
2392
2393        public void writeToParcel(Parcel dest, int flags) {
2394            ComponentName.writeToParcel(service, dest);
2395            dest.writeInt(pid);
2396            dest.writeInt(uid);
2397            dest.writeString(process);
2398            dest.writeInt(foreground ? 1 : 0);
2399            dest.writeLong(activeSince);
2400            dest.writeInt(started ? 1 : 0);
2401            dest.writeInt(clientCount);
2402            dest.writeInt(crashCount);
2403            dest.writeLong(lastActivityTime);
2404            dest.writeLong(restarting);
2405            dest.writeInt(this.flags);
2406            dest.writeString(clientPackage);
2407            dest.writeInt(clientLabel);
2408        }
2409
2410        public void readFromParcel(Parcel source) {
2411            service = ComponentName.readFromParcel(source);
2412            pid = source.readInt();
2413            uid = source.readInt();
2414            process = source.readString();
2415            foreground = source.readInt() != 0;
2416            activeSince = source.readLong();
2417            started = source.readInt() != 0;
2418            clientCount = source.readInt();
2419            crashCount = source.readInt();
2420            lastActivityTime = source.readLong();
2421            restarting = source.readLong();
2422            flags = source.readInt();
2423            clientPackage = source.readString();
2424            clientLabel = source.readInt();
2425        }
2426
2427        public static final Creator<RunningServiceInfo> CREATOR = new Creator<RunningServiceInfo>() {
2428            public RunningServiceInfo createFromParcel(Parcel source) {
2429                return new RunningServiceInfo(source);
2430            }
2431            public RunningServiceInfo[] newArray(int size) {
2432                return new RunningServiceInfo[size];
2433            }
2434        };
2435
2436        private RunningServiceInfo(Parcel source) {
2437            readFromParcel(source);
2438        }
2439    }
2440
2441    /**
2442     * Return a list of the services that are currently running.
2443     *
2444     * <p><b>Note: this method is only intended for debugging or implementing
2445     * service management type user interfaces.</b></p>
2446     *
2447     * @deprecated As of {@link android.os.Build.VERSION_CODES#O}, this method
2448     * is no longer available to third party applications.  For backwards compatibility,
2449     * it will still return the caller's own services.
2450     *
2451     * @param maxNum The maximum number of entries to return in the list.  The
2452     * actual number returned may be smaller, depending on how many services
2453     * are running.
2454     *
2455     * @return Returns a list of RunningServiceInfo records describing each of
2456     * the running tasks.
2457     */
2458    @Deprecated
2459    public List<RunningServiceInfo> getRunningServices(int maxNum)
2460            throws SecurityException {
2461        try {
2462            return getService()
2463                    .getServices(maxNum, 0);
2464        } catch (RemoteException e) {
2465            throw e.rethrowFromSystemServer();
2466        }
2467    }
2468
2469    /**
2470     * Returns a PendingIntent you can start to show a control panel for the
2471     * given running service.  If the service does not have a control panel,
2472     * null is returned.
2473     */
2474    public PendingIntent getRunningServiceControlPanel(ComponentName service)
2475            throws SecurityException {
2476        try {
2477            return getService()
2478                    .getRunningServiceControlPanel(service);
2479        } catch (RemoteException e) {
2480            throw e.rethrowFromSystemServer();
2481        }
2482    }
2483
2484    /**
2485     * Information you can retrieve about the available memory through
2486     * {@link ActivityManager#getMemoryInfo}.
2487     */
2488    public static class MemoryInfo implements Parcelable {
2489        /**
2490         * The available memory on the system.  This number should not
2491         * be considered absolute: due to the nature of the kernel, a significant
2492         * portion of this memory is actually in use and needed for the overall
2493         * system to run well.
2494         */
2495        public long availMem;
2496
2497        /**
2498         * The total memory accessible by the kernel.  This is basically the
2499         * RAM size of the device, not including below-kernel fixed allocations
2500         * like DMA buffers, RAM for the baseband CPU, etc.
2501         */
2502        public long totalMem;
2503
2504        /**
2505         * The threshold of {@link #availMem} at which we consider memory to be
2506         * low and start killing background services and other non-extraneous
2507         * processes.
2508         */
2509        public long threshold;
2510
2511        /**
2512         * Set to true if the system considers itself to currently be in a low
2513         * memory situation.
2514         */
2515        public boolean lowMemory;
2516
2517        /** @hide */
2518        public long hiddenAppThreshold;
2519        /** @hide */
2520        public long secondaryServerThreshold;
2521        /** @hide */
2522        public long visibleAppThreshold;
2523        /** @hide */
2524        public long foregroundAppThreshold;
2525
2526        public MemoryInfo() {
2527        }
2528
2529        public int describeContents() {
2530            return 0;
2531        }
2532
2533        public void writeToParcel(Parcel dest, int flags) {
2534            dest.writeLong(availMem);
2535            dest.writeLong(totalMem);
2536            dest.writeLong(threshold);
2537            dest.writeInt(lowMemory ? 1 : 0);
2538            dest.writeLong(hiddenAppThreshold);
2539            dest.writeLong(secondaryServerThreshold);
2540            dest.writeLong(visibleAppThreshold);
2541            dest.writeLong(foregroundAppThreshold);
2542        }
2543
2544        public void readFromParcel(Parcel source) {
2545            availMem = source.readLong();
2546            totalMem = source.readLong();
2547            threshold = source.readLong();
2548            lowMemory = source.readInt() != 0;
2549            hiddenAppThreshold = source.readLong();
2550            secondaryServerThreshold = source.readLong();
2551            visibleAppThreshold = source.readLong();
2552            foregroundAppThreshold = source.readLong();
2553        }
2554
2555        public static final Creator<MemoryInfo> CREATOR
2556                = new Creator<MemoryInfo>() {
2557            public MemoryInfo createFromParcel(Parcel source) {
2558                return new MemoryInfo(source);
2559            }
2560            public MemoryInfo[] newArray(int size) {
2561                return new MemoryInfo[size];
2562            }
2563        };
2564
2565        private MemoryInfo(Parcel source) {
2566            readFromParcel(source);
2567        }
2568    }
2569
2570    /**
2571     * Return general information about the memory state of the system.  This
2572     * can be used to help decide how to manage your own memory, though note
2573     * that polling is not recommended and
2574     * {@link android.content.ComponentCallbacks2#onTrimMemory(int)
2575     * ComponentCallbacks2.onTrimMemory(int)} is the preferred way to do this.
2576     * Also see {@link #getMyMemoryState} for how to retrieve the current trim
2577     * level of your process as needed, which gives a better hint for how to
2578     * manage its memory.
2579     */
2580    public void getMemoryInfo(MemoryInfo outInfo) {
2581        try {
2582            getService().getMemoryInfo(outInfo);
2583        } catch (RemoteException e) {
2584            throw e.rethrowFromSystemServer();
2585        }
2586    }
2587
2588    /**
2589     * Information you can retrieve about an ActivityStack in the system.
2590     * @hide
2591     */
2592    public static class StackInfo implements Parcelable {
2593        public int stackId;
2594        public Rect bounds = new Rect();
2595        public int[] taskIds;
2596        public String[] taskNames;
2597        public Rect[] taskBounds;
2598        public int[] taskUserIds;
2599        public ComponentName topActivity;
2600        public int displayId;
2601        public int userId;
2602        public boolean visible;
2603        // Index of the stack in the display's stack list, can be used for comparison of stack order
2604        public int position;
2605        /**
2606         * The full configuration the stack is currently running in.
2607         * @hide
2608         */
2609        final public Configuration configuration = new Configuration();
2610
2611        @Override
2612        public int describeContents() {
2613            return 0;
2614        }
2615
2616        @Override
2617        public void writeToParcel(Parcel dest, int flags) {
2618            dest.writeInt(stackId);
2619            dest.writeInt(bounds.left);
2620            dest.writeInt(bounds.top);
2621            dest.writeInt(bounds.right);
2622            dest.writeInt(bounds.bottom);
2623            dest.writeIntArray(taskIds);
2624            dest.writeStringArray(taskNames);
2625            final int boundsCount = taskBounds == null ? 0 : taskBounds.length;
2626            dest.writeInt(boundsCount);
2627            for (int i = 0; i < boundsCount; i++) {
2628                dest.writeInt(taskBounds[i].left);
2629                dest.writeInt(taskBounds[i].top);
2630                dest.writeInt(taskBounds[i].right);
2631                dest.writeInt(taskBounds[i].bottom);
2632            }
2633            dest.writeIntArray(taskUserIds);
2634            dest.writeInt(displayId);
2635            dest.writeInt(userId);
2636            dest.writeInt(visible ? 1 : 0);
2637            dest.writeInt(position);
2638            if (topActivity != null) {
2639                dest.writeInt(1);
2640                topActivity.writeToParcel(dest, 0);
2641            } else {
2642                dest.writeInt(0);
2643            }
2644            configuration.writeToParcel(dest, flags);
2645        }
2646
2647        public void readFromParcel(Parcel source) {
2648            stackId = source.readInt();
2649            bounds = new Rect(
2650                    source.readInt(), source.readInt(), source.readInt(), source.readInt());
2651            taskIds = source.createIntArray();
2652            taskNames = source.createStringArray();
2653            final int boundsCount = source.readInt();
2654            if (boundsCount > 0) {
2655                taskBounds = new Rect[boundsCount];
2656                for (int i = 0; i < boundsCount; i++) {
2657                    taskBounds[i] = new Rect();
2658                    taskBounds[i].set(
2659                            source.readInt(), source.readInt(), source.readInt(), source.readInt());
2660                }
2661            } else {
2662                taskBounds = null;
2663            }
2664            taskUserIds = source.createIntArray();
2665            displayId = source.readInt();
2666            userId = source.readInt();
2667            visible = source.readInt() > 0;
2668            position = source.readInt();
2669            if (source.readInt() > 0) {
2670                topActivity = ComponentName.readFromParcel(source);
2671            }
2672            configuration.readFromParcel(source);
2673        }
2674
2675        public static final Creator<StackInfo> CREATOR = new Creator<StackInfo>() {
2676            @Override
2677            public StackInfo createFromParcel(Parcel source) {
2678                return new StackInfo(source);
2679            }
2680            @Override
2681            public StackInfo[] newArray(int size) {
2682                return new StackInfo[size];
2683            }
2684        };
2685
2686        public StackInfo() {
2687        }
2688
2689        private StackInfo(Parcel source) {
2690            readFromParcel(source);
2691        }
2692
2693        public String toString(String prefix) {
2694            StringBuilder sb = new StringBuilder(256);
2695            sb.append(prefix); sb.append("Stack id="); sb.append(stackId);
2696                    sb.append(" bounds="); sb.append(bounds.toShortString());
2697                    sb.append(" displayId="); sb.append(displayId);
2698                    sb.append(" userId="); sb.append(userId);
2699                    sb.append("\n");
2700                    sb.append(" configuration="); sb.append(configuration);
2701                    sb.append("\n");
2702            prefix = prefix + "  ";
2703            for (int i = 0; i < taskIds.length; ++i) {
2704                sb.append(prefix); sb.append("taskId="); sb.append(taskIds[i]);
2705                        sb.append(": "); sb.append(taskNames[i]);
2706                        if (taskBounds != null) {
2707                            sb.append(" bounds="); sb.append(taskBounds[i].toShortString());
2708                        }
2709                        sb.append(" userId=").append(taskUserIds[i]);
2710                        sb.append(" visible=").append(visible);
2711                        if (topActivity != null) {
2712                            sb.append(" topActivity=").append(topActivity);
2713                        }
2714                        sb.append("\n");
2715            }
2716            return sb.toString();
2717        }
2718
2719        @Override
2720        public String toString() {
2721            return toString("");
2722        }
2723    }
2724
2725    /**
2726     * @hide
2727     */
2728    @RequiresPermission(anyOf={Manifest.permission.CLEAR_APP_USER_DATA,
2729            Manifest.permission.ACCESS_INSTANT_APPS})
2730    public boolean clearApplicationUserData(String packageName, IPackageDataObserver observer) {
2731        try {
2732            return getService().clearApplicationUserData(packageName, false,
2733                    observer, mContext.getUserId());
2734        } catch (RemoteException e) {
2735            throw e.rethrowFromSystemServer();
2736        }
2737    }
2738
2739    /**
2740     * Permits an application to erase its own data from disk.  This is equivalent to
2741     * the user choosing to clear the app's data from within the device settings UI.  It
2742     * erases all dynamic data associated with the app -- its private data and data in its
2743     * private area on external storage -- but does not remove the installed application
2744     * itself, nor any OBB files. It also revokes all runtime permissions that the app has acquired,
2745     * clears all notifications and removes all Uri grants related to this application.
2746     *
2747     * @return {@code true} if the application successfully requested that the application's
2748     *     data be erased; {@code false} otherwise.
2749     */
2750    public boolean clearApplicationUserData() {
2751        return clearApplicationUserData(mContext.getPackageName(), null);
2752    }
2753
2754
2755    /**
2756     * Permits an application to get the persistent URI permissions granted to another.
2757     *
2758     * <p>Typically called by Settings or DocumentsUI, requires
2759     * {@code GET_APP_GRANTED_URI_PERMISSIONS}.
2760     *
2761     * @param packageName application to look for the granted permissions, or {@code null} to get
2762     * granted permissions for all applications
2763     * @return list of granted URI permissions
2764     *
2765     * @hide
2766     */
2767    public ParceledListSlice<GrantedUriPermission> getGrantedUriPermissions(
2768            @Nullable String packageName) {
2769        try {
2770            @SuppressWarnings("unchecked")
2771            final ParceledListSlice<GrantedUriPermission> castedList = getService()
2772                    .getGrantedUriPermissions(packageName, mContext.getUserId());
2773            return castedList;
2774        } catch (RemoteException e) {
2775            throw e.rethrowFromSystemServer();
2776        }
2777    }
2778
2779    /**
2780     * Permits an application to clear the persistent URI permissions granted to another.
2781     *
2782     * <p>Typically called by Settings, requires {@code CLEAR_APP_GRANTED_URI_PERMISSIONS}.
2783     *
2784     * @param packageName application to clear its granted permissions
2785     *
2786     * @hide
2787     */
2788    public void clearGrantedUriPermissions(String packageName) {
2789        try {
2790            getService().clearGrantedUriPermissions(packageName,
2791                    mContext.getUserId());
2792        } catch (RemoteException e) {
2793            throw e.rethrowFromSystemServer();
2794        }
2795    }
2796
2797    /**
2798     * Information you can retrieve about any processes that are in an error condition.
2799     */
2800    public static class ProcessErrorStateInfo implements Parcelable {
2801        /**
2802         * Condition codes
2803         */
2804        public static final int NO_ERROR = 0;
2805        public static final int CRASHED = 1;
2806        public static final int NOT_RESPONDING = 2;
2807
2808        /**
2809         * The condition that the process is in.
2810         */
2811        public int condition;
2812
2813        /**
2814         * The process name in which the crash or error occurred.
2815         */
2816        public String processName;
2817
2818        /**
2819         * The pid of this process; 0 if none
2820         */
2821        public int pid;
2822
2823        /**
2824         * The kernel user-ID that has been assigned to this process;
2825         * currently this is not a unique ID (multiple applications can have
2826         * the same uid).
2827         */
2828        public int uid;
2829
2830        /**
2831         * The activity name associated with the error, if known.  May be null.
2832         */
2833        public String tag;
2834
2835        /**
2836         * A short message describing the error condition.
2837         */
2838        public String shortMsg;
2839
2840        /**
2841         * A long message describing the error condition.
2842         */
2843        public String longMsg;
2844
2845        /**
2846         * The stack trace where the error originated.  May be null.
2847         */
2848        public String stackTrace;
2849
2850        /**
2851         * to be deprecated: This value will always be null.
2852         */
2853        public byte[] crashData = null;
2854
2855        public ProcessErrorStateInfo() {
2856        }
2857
2858        @Override
2859        public int describeContents() {
2860            return 0;
2861        }
2862
2863        @Override
2864        public void writeToParcel(Parcel dest, int flags) {
2865            dest.writeInt(condition);
2866            dest.writeString(processName);
2867            dest.writeInt(pid);
2868            dest.writeInt(uid);
2869            dest.writeString(tag);
2870            dest.writeString(shortMsg);
2871            dest.writeString(longMsg);
2872            dest.writeString(stackTrace);
2873        }
2874
2875        public void readFromParcel(Parcel source) {
2876            condition = source.readInt();
2877            processName = source.readString();
2878            pid = source.readInt();
2879            uid = source.readInt();
2880            tag = source.readString();
2881            shortMsg = source.readString();
2882            longMsg = source.readString();
2883            stackTrace = source.readString();
2884        }
2885
2886        public static final Creator<ProcessErrorStateInfo> CREATOR =
2887                new Creator<ProcessErrorStateInfo>() {
2888            public ProcessErrorStateInfo createFromParcel(Parcel source) {
2889                return new ProcessErrorStateInfo(source);
2890            }
2891            public ProcessErrorStateInfo[] newArray(int size) {
2892                return new ProcessErrorStateInfo[size];
2893            }
2894        };
2895
2896        private ProcessErrorStateInfo(Parcel source) {
2897            readFromParcel(source);
2898        }
2899    }
2900
2901    /**
2902     * Returns a list of any processes that are currently in an error condition.  The result
2903     * will be null if all processes are running properly at this time.
2904     *
2905     * @return Returns a list of ProcessErrorStateInfo records, or null if there are no
2906     * current error conditions (it will not return an empty list).  This list ordering is not
2907     * specified.
2908     */
2909    public List<ProcessErrorStateInfo> getProcessesInErrorState() {
2910        try {
2911            return getService().getProcessesInErrorState();
2912        } catch (RemoteException e) {
2913            throw e.rethrowFromSystemServer();
2914        }
2915    }
2916
2917    /**
2918     * Information you can retrieve about a running process.
2919     */
2920    public static class RunningAppProcessInfo implements Parcelable {
2921        /**
2922         * The name of the process that this object is associated with
2923         */
2924        public String processName;
2925
2926        /**
2927         * The pid of this process; 0 if none
2928         */
2929        public int pid;
2930
2931        /**
2932         * The user id of this process.
2933         */
2934        public int uid;
2935
2936        /**
2937         * All packages that have been loaded into the process.
2938         */
2939        public String pkgList[];
2940
2941        /**
2942         * Constant for {@link #flags}: this is an app that is unable to
2943         * correctly save its state when going to the background,
2944         * so it can not be killed while in the background.
2945         * @hide
2946         */
2947        public static final int FLAG_CANT_SAVE_STATE = 1<<0;
2948
2949        /**
2950         * Constant for {@link #flags}: this process is associated with a
2951         * persistent system app.
2952         * @hide
2953         */
2954        public static final int FLAG_PERSISTENT = 1<<1;
2955
2956        /**
2957         * Constant for {@link #flags}: this process is associated with a
2958         * persistent system app.
2959         * @hide
2960         */
2961        public static final int FLAG_HAS_ACTIVITIES = 1<<2;
2962
2963        /**
2964         * Flags of information.  May be any of
2965         * {@link #FLAG_CANT_SAVE_STATE}.
2966         * @hide
2967         */
2968        public int flags;
2969
2970        /**
2971         * Last memory trim level reported to the process: corresponds to
2972         * the values supplied to {@link android.content.ComponentCallbacks2#onTrimMemory(int)
2973         * ComponentCallbacks2.onTrimMemory(int)}.
2974         */
2975        public int lastTrimLevel;
2976
2977        /** @hide */
2978        @IntDef(prefix = { "IMPORTANCE_" }, value = {
2979                IMPORTANCE_FOREGROUND,
2980                IMPORTANCE_FOREGROUND_SERVICE,
2981                IMPORTANCE_TOP_SLEEPING,
2982                IMPORTANCE_VISIBLE,
2983                IMPORTANCE_PERCEPTIBLE,
2984                IMPORTANCE_CANT_SAVE_STATE,
2985                IMPORTANCE_SERVICE,
2986                IMPORTANCE_CACHED,
2987                IMPORTANCE_GONE,
2988        })
2989        @Retention(RetentionPolicy.SOURCE)
2990        public @interface Importance {}
2991
2992        /**
2993         * Constant for {@link #importance}: This process is running the
2994         * foreground UI; that is, it is the thing currently at the top of the screen
2995         * that the user is interacting with.
2996         */
2997        public static final int IMPORTANCE_FOREGROUND = 100;
2998
2999        /**
3000         * Constant for {@link #importance}: This process is running a foreground
3001         * service, for example to perform music playback even while the user is
3002         * not immediately in the app.  This generally indicates that the process
3003         * is doing something the user actively cares about.
3004         */
3005        public static final int IMPORTANCE_FOREGROUND_SERVICE = 125;
3006
3007        /**
3008         * @deprecated Pre-{@link android.os.Build.VERSION_CODES#P} version of
3009         * {@link #IMPORTANCE_TOP_SLEEPING}.  As of Android
3010         * {@link android.os.Build.VERSION_CODES#P}, this is considered much less
3011         * important since we want to reduce what apps can do when the screen is off.
3012         */
3013        @Deprecated
3014        public static final int IMPORTANCE_TOP_SLEEPING_PRE_28 = 150;
3015
3016        /**
3017         * Constant for {@link #importance}: This process is running something
3018         * that is actively visible to the user, though not in the immediate
3019         * foreground.  This may be running a window that is behind the current
3020         * foreground (so paused and with its state saved, not interacting with
3021         * the user, but visible to them to some degree); it may also be running
3022         * other services under the system's control that it inconsiders important.
3023         */
3024        public static final int IMPORTANCE_VISIBLE = 200;
3025
3026        /**
3027         * Constant for {@link #importance}: {@link #IMPORTANCE_PERCEPTIBLE} had this wrong value
3028         * before {@link Build.VERSION_CODES#O}.  Since the {@link Build.VERSION_CODES#O} SDK,
3029         * the value of {@link #IMPORTANCE_PERCEPTIBLE} has been fixed.
3030         *
3031         * <p>The system will return this value instead of {@link #IMPORTANCE_PERCEPTIBLE}
3032         * on Android versions below {@link Build.VERSION_CODES#O}.
3033         *
3034         * <p>On Android version {@link Build.VERSION_CODES#O} and later, this value will still be
3035         * returned for apps with the target API level below {@link Build.VERSION_CODES#O}.
3036         * For apps targeting version {@link Build.VERSION_CODES#O} and later,
3037         * the correct value {@link #IMPORTANCE_PERCEPTIBLE} will be returned.
3038         */
3039        public static final int IMPORTANCE_PERCEPTIBLE_PRE_26 = 130;
3040
3041        /**
3042         * Constant for {@link #importance}: This process is not something the user
3043         * is directly aware of, but is otherwise perceptible to them to some degree.
3044         */
3045        public static final int IMPORTANCE_PERCEPTIBLE = 230;
3046
3047        /**
3048         * Constant for {@link #importance}: {@link #IMPORTANCE_CANT_SAVE_STATE} had
3049         * this wrong value
3050         * before {@link Build.VERSION_CODES#O}.  Since the {@link Build.VERSION_CODES#O} SDK,
3051         * the value of {@link #IMPORTANCE_CANT_SAVE_STATE} has been fixed.
3052         *
3053         * <p>The system will return this value instead of {@link #IMPORTANCE_CANT_SAVE_STATE}
3054         * on Android versions below {@link Build.VERSION_CODES#O}.
3055         *
3056         * <p>On Android version {@link Build.VERSION_CODES#O} after, this value will still be
3057         * returned for apps with the target API level below {@link Build.VERSION_CODES#O}.
3058         * For apps targeting version {@link Build.VERSION_CODES#O} and later,
3059         * the correct value {@link #IMPORTANCE_CANT_SAVE_STATE} will be returned.
3060         *
3061         * @hide
3062         */
3063        public static final int IMPORTANCE_CANT_SAVE_STATE_PRE_26 = 170;
3064
3065        /**
3066         * Constant for {@link #importance}: This process is contains services
3067         * that should remain running.  These are background services apps have
3068         * started, not something the user is aware of, so they may be killed by
3069         * the system relatively freely (though it is generally desired that they
3070         * stay running as long as they want to).
3071         */
3072        public static final int IMPORTANCE_SERVICE = 300;
3073
3074        /**
3075         * Constant for {@link #importance}: This process is running the foreground
3076         * UI, but the device is asleep so it is not visible to the user.  Though the
3077         * system will try hard to keep its process from being killed, in all other
3078         * ways we consider it a kind of cached process, with the limitations that go
3079         * along with that state: network access, running background services, etc.
3080         */
3081        public static final int IMPORTANCE_TOP_SLEEPING = 325;
3082
3083        /**
3084         * Constant for {@link #importance}: This process is running an
3085         * application that can not save its state, and thus can't be killed
3086         * while in the background.  This will be used with apps that have
3087         * {@link android.R.attr#cantSaveState} set on their application tag.
3088         */
3089        public static final int IMPORTANCE_CANT_SAVE_STATE = 350;
3090
3091        /**
3092         * Constant for {@link #importance}: This process process contains
3093         * cached code that is expendable, not actively running any app components
3094         * we care about.
3095         */
3096        public static final int IMPORTANCE_CACHED = 400;
3097
3098        /**
3099         * @deprecated Renamed to {@link #IMPORTANCE_CACHED}.
3100         */
3101        public static final int IMPORTANCE_BACKGROUND = IMPORTANCE_CACHED;
3102
3103        /**
3104         * Constant for {@link #importance}: This process is empty of any
3105         * actively running code.
3106         * @deprecated This value is no longer reported, use {@link #IMPORTANCE_CACHED} instead.
3107         */
3108        @Deprecated
3109        public static final int IMPORTANCE_EMPTY = 500;
3110
3111        /**
3112         * Constant for {@link #importance}: This process does not exist.
3113         */
3114        public static final int IMPORTANCE_GONE = 1000;
3115
3116        /**
3117         * Convert a proc state to the correspondent IMPORTANCE_* constant.  If the return value
3118         * will be passed to a client, use {@link #procStateToImportanceForClient}.
3119         * @hide
3120         */
3121        public static @Importance int procStateToImportance(int procState) {
3122            if (procState == PROCESS_STATE_NONEXISTENT) {
3123                return IMPORTANCE_GONE;
3124            } else if (procState >= PROCESS_STATE_HOME) {
3125                return IMPORTANCE_CACHED;
3126            } else if (procState == PROCESS_STATE_HEAVY_WEIGHT) {
3127                return IMPORTANCE_CANT_SAVE_STATE;
3128            } else if (procState >= PROCESS_STATE_TOP_SLEEPING) {
3129                return IMPORTANCE_TOP_SLEEPING;
3130            } else if (procState >= PROCESS_STATE_SERVICE) {
3131                return IMPORTANCE_SERVICE;
3132            } else if (procState >= PROCESS_STATE_TRANSIENT_BACKGROUND) {
3133                return IMPORTANCE_PERCEPTIBLE;
3134            } else if (procState >= PROCESS_STATE_IMPORTANT_FOREGROUND) {
3135                return IMPORTANCE_VISIBLE;
3136            } else if (procState >= PROCESS_STATE_FOREGROUND_SERVICE) {
3137                return IMPORTANCE_FOREGROUND_SERVICE;
3138            } else {
3139                return IMPORTANCE_FOREGROUND;
3140            }
3141        }
3142
3143        /**
3144         * Convert a proc state to the correspondent IMPORTANCE_* constant for a client represented
3145         * by a given {@link Context}, with converting {@link #IMPORTANCE_PERCEPTIBLE}
3146         * and {@link #IMPORTANCE_CANT_SAVE_STATE} to the corresponding "wrong" value if the
3147         * client's target SDK < {@link VERSION_CODES#O}.
3148         * @hide
3149         */
3150        public static @Importance int procStateToImportanceForClient(int procState,
3151                Context clientContext) {
3152            return procStateToImportanceForTargetSdk(procState,
3153                    clientContext.getApplicationInfo().targetSdkVersion);
3154        }
3155
3156        /**
3157         * See {@link #procStateToImportanceForClient}.
3158         * @hide
3159         */
3160        public static @Importance int procStateToImportanceForTargetSdk(int procState,
3161                int targetSdkVersion) {
3162            final int importance = procStateToImportance(procState);
3163
3164            // For pre O apps, convert to the old, wrong values.
3165            if (targetSdkVersion < VERSION_CODES.O) {
3166                switch (importance) {
3167                    case IMPORTANCE_PERCEPTIBLE:
3168                        return IMPORTANCE_PERCEPTIBLE_PRE_26;
3169                    case IMPORTANCE_TOP_SLEEPING:
3170                        return IMPORTANCE_TOP_SLEEPING_PRE_28;
3171                    case IMPORTANCE_CANT_SAVE_STATE:
3172                        return IMPORTANCE_CANT_SAVE_STATE_PRE_26;
3173                }
3174            }
3175            return importance;
3176        }
3177
3178        /** @hide */
3179        public static int importanceToProcState(@Importance int importance) {
3180            if (importance == IMPORTANCE_GONE) {
3181                return PROCESS_STATE_NONEXISTENT;
3182            } else if (importance >= IMPORTANCE_CACHED) {
3183                return PROCESS_STATE_HOME;
3184            } else if (importance >= IMPORTANCE_CANT_SAVE_STATE) {
3185                return PROCESS_STATE_HEAVY_WEIGHT;
3186            } else if (importance >= IMPORTANCE_TOP_SLEEPING) {
3187                return PROCESS_STATE_TOP_SLEEPING;
3188            } else if (importance >= IMPORTANCE_SERVICE) {
3189                return PROCESS_STATE_SERVICE;
3190            } else if (importance >= IMPORTANCE_PERCEPTIBLE) {
3191                return PROCESS_STATE_TRANSIENT_BACKGROUND;
3192            } else if (importance >= IMPORTANCE_VISIBLE) {
3193                return PROCESS_STATE_IMPORTANT_FOREGROUND;
3194            } else if (importance >= IMPORTANCE_TOP_SLEEPING_PRE_28) {
3195                return PROCESS_STATE_IMPORTANT_FOREGROUND;
3196            } else if (importance >= IMPORTANCE_FOREGROUND_SERVICE) {
3197                return PROCESS_STATE_FOREGROUND_SERVICE;
3198            } else {
3199                return PROCESS_STATE_TOP;
3200            }
3201        }
3202
3203        /**
3204         * The relative importance level that the system places on this process.
3205         * These constants are numbered so that "more important" values are
3206         * always smaller than "less important" values.
3207         */
3208        public @Importance int importance;
3209
3210        /**
3211         * An additional ordering within a particular {@link #importance}
3212         * category, providing finer-grained information about the relative
3213         * utility of processes within a category.  This number means nothing
3214         * except that a smaller values are more recently used (and thus
3215         * more important).  Currently an LRU value is only maintained for
3216         * the {@link #IMPORTANCE_CACHED} category, though others may
3217         * be maintained in the future.
3218         */
3219        public int lru;
3220
3221        /**
3222         * Constant for {@link #importanceReasonCode}: nothing special has
3223         * been specified for the reason for this level.
3224         */
3225        public static final int REASON_UNKNOWN = 0;
3226
3227        /**
3228         * Constant for {@link #importanceReasonCode}: one of the application's
3229         * content providers is being used by another process.  The pid of
3230         * the client process is in {@link #importanceReasonPid} and the
3231         * target provider in this process is in
3232         * {@link #importanceReasonComponent}.
3233         */
3234        public static final int REASON_PROVIDER_IN_USE = 1;
3235
3236        /**
3237         * Constant for {@link #importanceReasonCode}: one of the application's
3238         * content providers is being used by another process.  The pid of
3239         * the client process is in {@link #importanceReasonPid} and the
3240         * target provider in this process is in
3241         * {@link #importanceReasonComponent}.
3242         */
3243        public static final int REASON_SERVICE_IN_USE = 2;
3244
3245        /**
3246         * The reason for {@link #importance}, if any.
3247         */
3248        public int importanceReasonCode;
3249
3250        /**
3251         * For the specified values of {@link #importanceReasonCode}, this
3252         * is the process ID of the other process that is a client of this
3253         * process.  This will be 0 if no other process is using this one.
3254         */
3255        public int importanceReasonPid;
3256
3257        /**
3258         * For the specified values of {@link #importanceReasonCode}, this
3259         * is the name of the component that is being used in this process.
3260         */
3261        public ComponentName importanceReasonComponent;
3262
3263        /**
3264         * When {@link #importanceReasonPid} is non-0, this is the importance
3265         * of the other pid. @hide
3266         */
3267        public int importanceReasonImportance;
3268
3269        /**
3270         * Current process state, as per PROCESS_STATE_* constants.
3271         * @hide
3272         */
3273        public int processState;
3274
3275        public RunningAppProcessInfo() {
3276            importance = IMPORTANCE_FOREGROUND;
3277            importanceReasonCode = REASON_UNKNOWN;
3278            processState = PROCESS_STATE_IMPORTANT_FOREGROUND;
3279        }
3280
3281        public RunningAppProcessInfo(String pProcessName, int pPid, String pArr[]) {
3282            processName = pProcessName;
3283            pid = pPid;
3284            pkgList = pArr;
3285        }
3286
3287        public int describeContents() {
3288            return 0;
3289        }
3290
3291        public void writeToParcel(Parcel dest, int flags) {
3292            dest.writeString(processName);
3293            dest.writeInt(pid);
3294            dest.writeInt(uid);
3295            dest.writeStringArray(pkgList);
3296            dest.writeInt(this.flags);
3297            dest.writeInt(lastTrimLevel);
3298            dest.writeInt(importance);
3299            dest.writeInt(lru);
3300            dest.writeInt(importanceReasonCode);
3301            dest.writeInt(importanceReasonPid);
3302            ComponentName.writeToParcel(importanceReasonComponent, dest);
3303            dest.writeInt(importanceReasonImportance);
3304            dest.writeInt(processState);
3305        }
3306
3307        public void readFromParcel(Parcel source) {
3308            processName = source.readString();
3309            pid = source.readInt();
3310            uid = source.readInt();
3311            pkgList = source.readStringArray();
3312            flags = source.readInt();
3313            lastTrimLevel = source.readInt();
3314            importance = source.readInt();
3315            lru = source.readInt();
3316            importanceReasonCode = source.readInt();
3317            importanceReasonPid = source.readInt();
3318            importanceReasonComponent = ComponentName.readFromParcel(source);
3319            importanceReasonImportance = source.readInt();
3320            processState = source.readInt();
3321        }
3322
3323        public static final Creator<RunningAppProcessInfo> CREATOR =
3324            new Creator<RunningAppProcessInfo>() {
3325            public RunningAppProcessInfo createFromParcel(Parcel source) {
3326                return new RunningAppProcessInfo(source);
3327            }
3328            public RunningAppProcessInfo[] newArray(int size) {
3329                return new RunningAppProcessInfo[size];
3330            }
3331        };
3332
3333        private RunningAppProcessInfo(Parcel source) {
3334            readFromParcel(source);
3335        }
3336    }
3337
3338    /**
3339     * Returns a list of application processes installed on external media
3340     * that are running on the device.
3341     *
3342     * <p><b>Note: this method is only intended for debugging or building
3343     * a user-facing process management UI.</b></p>
3344     *
3345     * @return Returns a list of ApplicationInfo records, or null if none
3346     * This list ordering is not specified.
3347     * @hide
3348     */
3349    public List<ApplicationInfo> getRunningExternalApplications() {
3350        try {
3351            return getService().getRunningExternalApplications();
3352        } catch (RemoteException e) {
3353            throw e.rethrowFromSystemServer();
3354        }
3355    }
3356
3357    /**
3358     * Query whether the user has enabled background restrictions for this app.
3359     *
3360     * <p> The user may chose to do this, if they see that an app is consuming an unreasonable
3361     * amount of battery while in the background. </p>
3362     *
3363     * <p> If true, any work that the app tries to do will be aggressively restricted while it is in
3364     * the background. At a minimum, jobs and alarms will not execute and foreground services
3365     * cannot be started unless an app activity is in the foreground. </p>
3366     *
3367     * <p><b> Note that these restrictions stay in effect even when the device is charging.</b></p>
3368     *
3369     * @return true if user has enforced background restrictions for this app, false otherwise.
3370     */
3371    public boolean isBackgroundRestricted() {
3372        try {
3373            return getService().isBackgroundRestricted(mContext.getOpPackageName());
3374        } catch (RemoteException e) {
3375            throw e.rethrowFromSystemServer();
3376        }
3377    }
3378
3379    /**
3380     * Sets the memory trim mode for a process and schedules a memory trim operation.
3381     *
3382     * <p><b>Note: this method is only intended for testing framework.</b></p>
3383     *
3384     * @return Returns true if successful.
3385     * @hide
3386     */
3387    public boolean setProcessMemoryTrimLevel(String process, int userId, int level) {
3388        try {
3389            return getService().setProcessMemoryTrimLevel(process, userId,
3390                    level);
3391        } catch (RemoteException e) {
3392            throw e.rethrowFromSystemServer();
3393        }
3394    }
3395
3396    /**
3397     * Returns a list of application processes that are running on the device.
3398     *
3399     * <p><b>Note: this method is only intended for debugging or building
3400     * a user-facing process management UI.</b></p>
3401     *
3402     * @return Returns a list of RunningAppProcessInfo records, or null if there are no
3403     * running processes (it will not return an empty list).  This list ordering is not
3404     * specified.
3405     */
3406    public List<RunningAppProcessInfo> getRunningAppProcesses() {
3407        try {
3408            return getService().getRunningAppProcesses();
3409        } catch (RemoteException e) {
3410            throw e.rethrowFromSystemServer();
3411        }
3412    }
3413
3414    /**
3415     * Return the importance of a given package name, based on the processes that are
3416     * currently running.  The return value is one of the importance constants defined
3417     * in {@link RunningAppProcessInfo}, giving you the highest importance of all the
3418     * processes that this package has code running inside of.  If there are no processes
3419     * running its code, {@link RunningAppProcessInfo#IMPORTANCE_GONE} is returned.
3420     * @hide
3421     */
3422    @SystemApi @TestApi
3423    @RequiresPermission(Manifest.permission.PACKAGE_USAGE_STATS)
3424    public @RunningAppProcessInfo.Importance int getPackageImportance(String packageName) {
3425        try {
3426            int procState = getService().getPackageProcessState(packageName,
3427                    mContext.getOpPackageName());
3428            return RunningAppProcessInfo.procStateToImportanceForClient(procState, mContext);
3429        } catch (RemoteException e) {
3430            throw e.rethrowFromSystemServer();
3431        }
3432    }
3433
3434    /**
3435     * Return the importance of a given uid, based on the processes that are
3436     * currently running.  The return value is one of the importance constants defined
3437     * in {@link RunningAppProcessInfo}, giving you the highest importance of all the
3438     * processes that this uid has running.  If there are no processes
3439     * running its code, {@link RunningAppProcessInfo#IMPORTANCE_GONE} is returned.
3440     * @hide
3441     */
3442    @SystemApi @TestApi
3443    @RequiresPermission(Manifest.permission.PACKAGE_USAGE_STATS)
3444    public @RunningAppProcessInfo.Importance int getUidImportance(int uid) {
3445        try {
3446            int procState = getService().getUidProcessState(uid,
3447                    mContext.getOpPackageName());
3448            return RunningAppProcessInfo.procStateToImportanceForClient(procState, mContext);
3449        } catch (RemoteException e) {
3450            throw e.rethrowFromSystemServer();
3451        }
3452    }
3453
3454    /**
3455     * Callback to get reports about changes to the importance of a uid.  Use with
3456     * {@link #addOnUidImportanceListener}.
3457     * @hide
3458     */
3459    @SystemApi @TestApi
3460    public interface OnUidImportanceListener {
3461        /**
3462         * The importance if a given uid has changed.  Will be one of the importance
3463         * values in {@link RunningAppProcessInfo};
3464         * {@link RunningAppProcessInfo#IMPORTANCE_GONE IMPORTANCE_GONE} will be reported
3465         * when the uid is no longer running at all.  This callback will happen on a thread
3466         * from a thread pool, not the main UI thread.
3467         * @param uid The uid whose importance has changed.
3468         * @param importance The new importance value as per {@link RunningAppProcessInfo}.
3469         */
3470        void onUidImportance(int uid, @RunningAppProcessInfo.Importance int importance);
3471    }
3472
3473    /**
3474     * Start monitoring changes to the imoportance of uids running in the system.
3475     * @param listener The listener callback that will receive change reports.
3476     * @param importanceCutpoint The level of importance in which the caller is interested
3477     * in differences.  For example, if {@link RunningAppProcessInfo#IMPORTANCE_PERCEPTIBLE}
3478     * is used here, you will receive a call each time a uids importance transitions between
3479     * being <= {@link RunningAppProcessInfo#IMPORTANCE_PERCEPTIBLE} and
3480     * > {@link RunningAppProcessInfo#IMPORTANCE_PERCEPTIBLE}.
3481     *
3482     * <p>The caller must hold the {@link android.Manifest.permission#PACKAGE_USAGE_STATS}
3483     * permission to use this feature.</p>
3484     *
3485     * @throws IllegalArgumentException If the listener is already registered.
3486     * @throws SecurityException If the caller does not hold
3487     * {@link android.Manifest.permission#PACKAGE_USAGE_STATS}.
3488     * @hide
3489     */
3490    @SystemApi @TestApi
3491    @RequiresPermission(Manifest.permission.PACKAGE_USAGE_STATS)
3492    public void addOnUidImportanceListener(OnUidImportanceListener listener,
3493            @RunningAppProcessInfo.Importance int importanceCutpoint) {
3494        synchronized (this) {
3495            if (mImportanceListeners.containsKey(listener)) {
3496                throw new IllegalArgumentException("Listener already registered: " + listener);
3497            }
3498            // TODO: implement the cut point in the system process to avoid IPCs.
3499            UidObserver observer = new UidObserver(listener, mContext);
3500            try {
3501                getService().registerUidObserver(observer,
3502                        UID_OBSERVER_PROCSTATE | UID_OBSERVER_GONE,
3503                        RunningAppProcessInfo.importanceToProcState(importanceCutpoint),
3504                        mContext.getOpPackageName());
3505            } catch (RemoteException e) {
3506                throw e.rethrowFromSystemServer();
3507            }
3508            mImportanceListeners.put(listener, observer);
3509        }
3510    }
3511
3512    /**
3513     * Remove an importance listener that was previously registered with
3514     * {@link #addOnUidImportanceListener}.
3515     *
3516     * @throws IllegalArgumentException If the listener is not registered.
3517     * @hide
3518     */
3519    @SystemApi @TestApi
3520    @RequiresPermission(Manifest.permission.PACKAGE_USAGE_STATS)
3521    public void removeOnUidImportanceListener(OnUidImportanceListener listener) {
3522        synchronized (this) {
3523            UidObserver observer = mImportanceListeners.remove(listener);
3524            if (observer == null) {
3525                throw new IllegalArgumentException("Listener not registered: " + listener);
3526            }
3527            try {
3528                getService().unregisterUidObserver(observer);
3529            } catch (RemoteException e) {
3530                throw e.rethrowFromSystemServer();
3531            }
3532        }
3533    }
3534
3535    /**
3536     * Return global memory state information for the calling process.  This
3537     * does not fill in all fields of the {@link RunningAppProcessInfo}.  The
3538     * only fields that will be filled in are
3539     * {@link RunningAppProcessInfo#pid},
3540     * {@link RunningAppProcessInfo#uid},
3541     * {@link RunningAppProcessInfo#lastTrimLevel},
3542     * {@link RunningAppProcessInfo#importance},
3543     * {@link RunningAppProcessInfo#lru}, and
3544     * {@link RunningAppProcessInfo#importanceReasonCode}.
3545     */
3546    static public void getMyMemoryState(RunningAppProcessInfo outState) {
3547        try {
3548            getService().getMyMemoryState(outState);
3549        } catch (RemoteException e) {
3550            throw e.rethrowFromSystemServer();
3551        }
3552    }
3553
3554    /**
3555     * Return information about the memory usage of one or more processes.
3556     *
3557     * <p><b>Note: this method is only intended for debugging or building
3558     * a user-facing process management UI.</b></p>
3559     *
3560     * @param pids The pids of the processes whose memory usage is to be
3561     * retrieved.
3562     * @return Returns an array of memory information, one for each
3563     * requested pid.
3564     */
3565    public Debug.MemoryInfo[] getProcessMemoryInfo(int[] pids) {
3566        try {
3567            return getService().getProcessMemoryInfo(pids);
3568        } catch (RemoteException e) {
3569            throw e.rethrowFromSystemServer();
3570        }
3571    }
3572
3573    /**
3574     * @deprecated This is now just a wrapper for
3575     * {@link #killBackgroundProcesses(String)}; the previous behavior here
3576     * is no longer available to applications because it allows them to
3577     * break other applications by removing their alarms, stopping their
3578     * services, etc.
3579     */
3580    @Deprecated
3581    public void restartPackage(String packageName) {
3582        killBackgroundProcesses(packageName);
3583    }
3584
3585    /**
3586     * Have the system immediately kill all background processes associated
3587     * with the given package.  This is the same as the kernel killing those
3588     * processes to reclaim memory; the system will take care of restarting
3589     * these processes in the future as needed.
3590     *
3591     * @param packageName The name of the package whose processes are to
3592     * be killed.
3593     */
3594    @RequiresPermission(Manifest.permission.KILL_BACKGROUND_PROCESSES)
3595    public void killBackgroundProcesses(String packageName) {
3596        try {
3597            getService().killBackgroundProcesses(packageName,
3598                    mContext.getUserId());
3599        } catch (RemoteException e) {
3600            throw e.rethrowFromSystemServer();
3601        }
3602    }
3603
3604    /**
3605     * Kills the specified UID.
3606     * @param uid The UID to kill.
3607     * @param reason The reason for the kill.
3608     *
3609     * @hide
3610     */
3611    @SystemApi
3612    @RequiresPermission(Manifest.permission.KILL_UID)
3613    public void killUid(int uid, String reason) {
3614        try {
3615            getService().killUid(UserHandle.getAppId(uid),
3616                    UserHandle.getUserId(uid), reason);
3617        } catch (RemoteException e) {
3618            throw e.rethrowFromSystemServer();
3619        }
3620    }
3621
3622    /**
3623     * Have the system perform a force stop of everything associated with
3624     * the given application package.  All processes that share its uid
3625     * will be killed, all services it has running stopped, all activities
3626     * removed, etc.  In addition, a {@link Intent#ACTION_PACKAGE_RESTARTED}
3627     * broadcast will be sent, so that any of its registered alarms can
3628     * be stopped, notifications removed, etc.
3629     *
3630     * <p>You must hold the permission
3631     * {@link android.Manifest.permission#FORCE_STOP_PACKAGES} to be able to
3632     * call this method.
3633     *
3634     * @param packageName The name of the package to be stopped.
3635     * @param userId The user for which the running package is to be stopped.
3636     *
3637     * @hide This is not available to third party applications due to
3638     * it allowing them to break other applications by stopping their
3639     * services, removing their alarms, etc.
3640     */
3641    public void forceStopPackageAsUser(String packageName, int userId) {
3642        try {
3643            getService().forceStopPackage(packageName, userId);
3644        } catch (RemoteException e) {
3645            throw e.rethrowFromSystemServer();
3646        }
3647    }
3648
3649    /**
3650     * @see #forceStopPackageAsUser(String, int)
3651     * @hide
3652     */
3653    @SystemApi
3654    @RequiresPermission(Manifest.permission.FORCE_STOP_PACKAGES)
3655    public void forceStopPackage(String packageName) {
3656        forceStopPackageAsUser(packageName, mContext.getUserId());
3657    }
3658
3659    /**
3660     * Get the device configuration attributes.
3661     */
3662    public ConfigurationInfo getDeviceConfigurationInfo() {
3663        try {
3664            return getService().getDeviceConfigurationInfo();
3665        } catch (RemoteException e) {
3666            throw e.rethrowFromSystemServer();
3667        }
3668    }
3669
3670    /**
3671     * Get the preferred density of icons for the launcher. This is used when
3672     * custom drawables are created (e.g., for shortcuts).
3673     *
3674     * @return density in terms of DPI
3675     */
3676    public int getLauncherLargeIconDensity() {
3677        final Resources res = mContext.getResources();
3678        final int density = res.getDisplayMetrics().densityDpi;
3679        final int sw = res.getConfiguration().smallestScreenWidthDp;
3680
3681        if (sw < 600) {
3682            // Smaller than approx 7" tablets, use the regular icon size.
3683            return density;
3684        }
3685
3686        switch (density) {
3687            case DisplayMetrics.DENSITY_LOW:
3688                return DisplayMetrics.DENSITY_MEDIUM;
3689            case DisplayMetrics.DENSITY_MEDIUM:
3690                return DisplayMetrics.DENSITY_HIGH;
3691            case DisplayMetrics.DENSITY_TV:
3692                return DisplayMetrics.DENSITY_XHIGH;
3693            case DisplayMetrics.DENSITY_HIGH:
3694                return DisplayMetrics.DENSITY_XHIGH;
3695            case DisplayMetrics.DENSITY_XHIGH:
3696                return DisplayMetrics.DENSITY_XXHIGH;
3697            case DisplayMetrics.DENSITY_XXHIGH:
3698                return DisplayMetrics.DENSITY_XHIGH * 2;
3699            default:
3700                // The density is some abnormal value.  Return some other
3701                // abnormal value that is a reasonable scaling of it.
3702                return (int)((density*1.5f)+.5f);
3703        }
3704    }
3705
3706    /**
3707     * Get the preferred launcher icon size. This is used when custom drawables
3708     * are created (e.g., for shortcuts).
3709     *
3710     * @return dimensions of square icons in terms of pixels
3711     */
3712    public int getLauncherLargeIconSize() {
3713        return getLauncherLargeIconSizeInner(mContext);
3714    }
3715
3716    static int getLauncherLargeIconSizeInner(Context context) {
3717        final Resources res = context.getResources();
3718        final int size = res.getDimensionPixelSize(android.R.dimen.app_icon_size);
3719        final int sw = res.getConfiguration().smallestScreenWidthDp;
3720
3721        if (sw < 600) {
3722            // Smaller than approx 7" tablets, use the regular icon size.
3723            return size;
3724        }
3725
3726        final int density = res.getDisplayMetrics().densityDpi;
3727
3728        switch (density) {
3729            case DisplayMetrics.DENSITY_LOW:
3730                return (size * DisplayMetrics.DENSITY_MEDIUM) / DisplayMetrics.DENSITY_LOW;
3731            case DisplayMetrics.DENSITY_MEDIUM:
3732                return (size * DisplayMetrics.DENSITY_HIGH) / DisplayMetrics.DENSITY_MEDIUM;
3733            case DisplayMetrics.DENSITY_TV:
3734                return (size * DisplayMetrics.DENSITY_XHIGH) / DisplayMetrics.DENSITY_HIGH;
3735            case DisplayMetrics.DENSITY_HIGH:
3736                return (size * DisplayMetrics.DENSITY_XHIGH) / DisplayMetrics.DENSITY_HIGH;
3737            case DisplayMetrics.DENSITY_XHIGH:
3738                return (size * DisplayMetrics.DENSITY_XXHIGH) / DisplayMetrics.DENSITY_XHIGH;
3739            case DisplayMetrics.DENSITY_XXHIGH:
3740                return (size * DisplayMetrics.DENSITY_XHIGH*2) / DisplayMetrics.DENSITY_XXHIGH;
3741            default:
3742                // The density is some abnormal value.  Return some other
3743                // abnormal value that is a reasonable scaling of it.
3744                return (int)((size*1.5f) + .5f);
3745        }
3746    }
3747
3748    /**
3749     * Returns "true" if the user interface is currently being messed with
3750     * by a monkey.
3751     */
3752    public static boolean isUserAMonkey() {
3753        try {
3754            return getService().isUserAMonkey();
3755        } catch (RemoteException e) {
3756            throw e.rethrowFromSystemServer();
3757        }
3758    }
3759
3760    /**
3761     * Returns "true" if device is running in a test harness.
3762     */
3763    public static boolean isRunningInTestHarness() {
3764        return SystemProperties.getBoolean("ro.test_harness", false);
3765    }
3766
3767    /**
3768     * Unsupported compiled sdk warning should always be shown for the intput activity
3769     * even in cases where the system would normally not show the warning. E.g. when running in a
3770     * test harness.
3771     *
3772     * @param activity The component name of the activity to always show the warning for.
3773     *
3774     * @hide
3775     */
3776    @TestApi
3777    public void alwaysShowUnsupportedCompileSdkWarning(ComponentName activity) {
3778        try {
3779            getService().alwaysShowUnsupportedCompileSdkWarning(activity);
3780        } catch (RemoteException e) {
3781            throw e.rethrowFromSystemServer();
3782        }
3783    }
3784
3785    /**
3786     * Returns the launch count of each installed package.
3787     *
3788     * @hide
3789     */
3790    /*public Map<String, Integer> getAllPackageLaunchCounts() {
3791        try {
3792            IUsageStats usageStatsService = IUsageStats.Stub.asInterface(
3793                    ServiceManager.getService("usagestats"));
3794            if (usageStatsService == null) {
3795                return new HashMap<String, Integer>();
3796            }
3797
3798            UsageStats.PackageStats[] allPkgUsageStats = usageStatsService.getAllPkgUsageStats(
3799                    ActivityThread.currentPackageName());
3800            if (allPkgUsageStats == null) {
3801                return new HashMap<String, Integer>();
3802            }
3803
3804            Map<String, Integer> launchCounts = new HashMap<String, Integer>();
3805            for (UsageStats.PackageStats pkgUsageStats : allPkgUsageStats) {
3806                launchCounts.put(pkgUsageStats.getPackageName(), pkgUsageStats.getLaunchCount());
3807            }
3808
3809            return launchCounts;
3810        } catch (RemoteException e) {
3811            Log.w(TAG, "Could not query launch counts", e);
3812            return new HashMap<String, Integer>();
3813        }
3814    }*/
3815
3816    /** @hide */
3817    public static int checkComponentPermission(String permission, int uid,
3818            int owningUid, boolean exported) {
3819        // Root, system server get to do everything.
3820        final int appId = UserHandle.getAppId(uid);
3821        if (appId == Process.ROOT_UID || appId == Process.SYSTEM_UID) {
3822            return PackageManager.PERMISSION_GRANTED;
3823        }
3824        // Isolated processes don't get any permissions.
3825        if (UserHandle.isIsolated(uid)) {
3826            return PackageManager.PERMISSION_DENIED;
3827        }
3828        // If there is a uid that owns whatever is being accessed, it has
3829        // blanket access to it regardless of the permissions it requires.
3830        if (owningUid >= 0 && UserHandle.isSameApp(uid, owningUid)) {
3831            return PackageManager.PERMISSION_GRANTED;
3832        }
3833        // If the target is not exported, then nobody else can get to it.
3834        if (!exported) {
3835            /*
3836            RuntimeException here = new RuntimeException("here");
3837            here.fillInStackTrace();
3838            Slog.w(TAG, "Permission denied: checkComponentPermission() owningUid=" + owningUid,
3839                    here);
3840            */
3841            return PackageManager.PERMISSION_DENIED;
3842        }
3843        if (permission == null) {
3844            return PackageManager.PERMISSION_GRANTED;
3845        }
3846        try {
3847            return AppGlobals.getPackageManager()
3848                    .checkUidPermission(permission, uid);
3849        } catch (RemoteException e) {
3850            throw e.rethrowFromSystemServer();
3851        }
3852    }
3853
3854    /** @hide */
3855    public static int checkUidPermission(String permission, int uid) {
3856        try {
3857            return AppGlobals.getPackageManager()
3858                    .checkUidPermission(permission, uid);
3859        } catch (RemoteException e) {
3860            throw e.rethrowFromSystemServer();
3861        }
3862    }
3863
3864    /**
3865     * @hide
3866     * Helper for dealing with incoming user arguments to system service calls.
3867     * Takes care of checking permissions and converting USER_CURRENT to the
3868     * actual current user.
3869     *
3870     * @param callingPid The pid of the incoming call, as per Binder.getCallingPid().
3871     * @param callingUid The uid of the incoming call, as per Binder.getCallingUid().
3872     * @param userId The user id argument supplied by the caller -- this is the user
3873     * they want to run as.
3874     * @param allowAll If true, we will allow USER_ALL.  This means you must be prepared
3875     * to get a USER_ALL returned and deal with it correctly.  If false,
3876     * an exception will be thrown if USER_ALL is supplied.
3877     * @param requireFull If true, the caller must hold
3878     * {@link android.Manifest.permission#INTERACT_ACROSS_USERS_FULL} to be able to run as a
3879     * different user than their current process; otherwise they must hold
3880     * {@link android.Manifest.permission#INTERACT_ACROSS_USERS}.
3881     * @param name Optional textual name of the incoming call; only for generating error messages.
3882     * @param callerPackage Optional package name of caller; only for error messages.
3883     *
3884     * @return Returns the user ID that the call should run as.  Will always be a concrete
3885     * user number, unless <var>allowAll</var> is true in which case it could also be
3886     * USER_ALL.
3887     */
3888    public static int handleIncomingUser(int callingPid, int callingUid, int userId,
3889            boolean allowAll, boolean requireFull, String name, String callerPackage) {
3890        if (UserHandle.getUserId(callingUid) == userId) {
3891            return userId;
3892        }
3893        try {
3894            return getService().handleIncomingUser(callingPid,
3895                    callingUid, userId, allowAll, requireFull, name, callerPackage);
3896        } catch (RemoteException e) {
3897            throw e.rethrowFromSystemServer();
3898        }
3899    }
3900
3901    /**
3902     * Gets the userId of the current foreground user. Requires system permissions.
3903     * @hide
3904     */
3905    @SystemApi
3906    @RequiresPermission(anyOf = {
3907            "android.permission.INTERACT_ACROSS_USERS",
3908            "android.permission.INTERACT_ACROSS_USERS_FULL"
3909    })
3910    public static int getCurrentUser() {
3911        UserInfo ui;
3912        try {
3913            ui = getService().getCurrentUser();
3914            return ui != null ? ui.id : 0;
3915        } catch (RemoteException e) {
3916            throw e.rethrowFromSystemServer();
3917        }
3918    }
3919
3920    /**
3921     * @param userid the user's id. Zero indicates the default user.
3922     * @hide
3923     */
3924    public boolean switchUser(int userid) {
3925        try {
3926            return getService().switchUser(userid);
3927        } catch (RemoteException e) {
3928            throw e.rethrowFromSystemServer();
3929        }
3930    }
3931
3932    /**
3933     * Logs out current current foreground user by switching to the system user and stopping the
3934     * user being switched from.
3935     * @hide
3936     */
3937    public static void logoutCurrentUser() {
3938        int currentUser = ActivityManager.getCurrentUser();
3939        if (currentUser != UserHandle.USER_SYSTEM) {
3940            try {
3941                getService().switchUser(UserHandle.USER_SYSTEM);
3942                getService().stopUser(currentUser, /* force= */ false, null);
3943            } catch (RemoteException e) {
3944                e.rethrowFromSystemServer();
3945            }
3946        }
3947    }
3948
3949    /** {@hide} */
3950    public static final int FLAG_OR_STOPPED = 1 << 0;
3951    /** {@hide} */
3952    public static final int FLAG_AND_LOCKED = 1 << 1;
3953    /** {@hide} */
3954    public static final int FLAG_AND_UNLOCKED = 1 << 2;
3955    /** {@hide} */
3956    public static final int FLAG_AND_UNLOCKING_OR_UNLOCKED = 1 << 3;
3957
3958    /**
3959     * Return whether the given user is actively running.  This means that
3960     * the user is in the "started" state, not "stopped" -- it is currently
3961     * allowed to run code through scheduled alarms, receiving broadcasts,
3962     * etc.  A started user may be either the current foreground user or a
3963     * background user; the result here does not distinguish between the two.
3964     * @param userId the user's id. Zero indicates the default user.
3965     * @hide
3966     */
3967    public boolean isUserRunning(int userId) {
3968        try {
3969            return getService().isUserRunning(userId, 0);
3970        } catch (RemoteException e) {
3971            throw e.rethrowFromSystemServer();
3972        }
3973    }
3974
3975    /** {@hide} */
3976    public boolean isVrModePackageEnabled(ComponentName component) {
3977        try {
3978            return getService().isVrModePackageEnabled(component);
3979        } catch (RemoteException e) {
3980            throw e.rethrowFromSystemServer();
3981        }
3982    }
3983
3984    /**
3985     * Perform a system dump of various state associated with the given application
3986     * package name.  This call blocks while the dump is being performed, so should
3987     * not be done on a UI thread.  The data will be written to the given file
3988     * descriptor as text.
3989     * @param fd The file descriptor that the dump should be written to.  The file
3990     * descriptor is <em>not</em> closed by this function; the caller continues to
3991     * own it.
3992     * @param packageName The name of the package that is to be dumped.
3993     */
3994    @RequiresPermission(Manifest.permission.DUMP)
3995    public void dumpPackageState(FileDescriptor fd, String packageName) {
3996        dumpPackageStateStatic(fd, packageName);
3997    }
3998
3999    /**
4000     * @hide
4001     */
4002    public static void dumpPackageStateStatic(FileDescriptor fd, String packageName) {
4003        FileOutputStream fout = new FileOutputStream(fd);
4004        PrintWriter pw = new FastPrintWriter(fout);
4005        dumpService(pw, fd, "package", new String[] { packageName });
4006        pw.println();
4007        dumpService(pw, fd, Context.ACTIVITY_SERVICE, new String[] {
4008                "-a", "package", packageName });
4009        pw.println();
4010        dumpService(pw, fd, "meminfo", new String[] { "--local", "--package", packageName });
4011        pw.println();
4012        dumpService(pw, fd, ProcessStats.SERVICE_NAME, new String[] { packageName });
4013        pw.println();
4014        dumpService(pw, fd, "usagestats", new String[] { packageName });
4015        pw.println();
4016        dumpService(pw, fd, BatteryStats.SERVICE_NAME, new String[] { packageName });
4017        pw.flush();
4018    }
4019
4020    /**
4021     * @hide
4022     */
4023    public static boolean isSystemReady() {
4024        if (!sSystemReady) {
4025            if (ActivityThread.isSystem()) {
4026                sSystemReady =
4027                        LocalServices.getService(ActivityManagerInternal.class).isSystemReady();
4028            } else {
4029                // Since this is being called from outside system server, system should be
4030                // ready by now.
4031                sSystemReady = true;
4032            }
4033        }
4034        return sSystemReady;
4035    }
4036
4037    /**
4038     * @hide
4039     */
4040    public static void broadcastStickyIntent(Intent intent, int userId) {
4041        broadcastStickyIntent(intent, AppOpsManager.OP_NONE, userId);
4042    }
4043
4044    /**
4045     * Convenience for sending a sticky broadcast.  For internal use only.
4046     *
4047     * @hide
4048     */
4049    public static void broadcastStickyIntent(Intent intent, int appOp, int userId) {
4050        try {
4051            getService().broadcastIntent(
4052                    null, intent, null, null, Activity.RESULT_OK, null, null,
4053                    null /*permission*/, appOp, null, false, true, userId);
4054        } catch (RemoteException ex) {
4055        }
4056    }
4057
4058    /**
4059     * @hide
4060     */
4061    public static void noteWakeupAlarm(PendingIntent ps, WorkSource workSource, int sourceUid,
4062            String sourcePkg, String tag) {
4063        try {
4064            getService().noteWakeupAlarm((ps != null) ? ps.getTarget() : null, workSource,
4065                    sourceUid, sourcePkg, tag);
4066        } catch (RemoteException ex) {
4067        }
4068    }
4069
4070    /**
4071     * @hide
4072     */
4073    public static void noteAlarmStart(PendingIntent ps, WorkSource workSource, int sourceUid,
4074            String tag) {
4075        try {
4076            getService().noteAlarmStart((ps != null) ? ps.getTarget() : null, workSource,
4077                    sourceUid, tag);
4078        } catch (RemoteException ex) {
4079        }
4080    }
4081
4082
4083    /**
4084     * @hide
4085     */
4086    public static void noteAlarmFinish(PendingIntent ps, WorkSource workSource, int sourceUid,
4087            String tag) {
4088        try {
4089            getService().noteAlarmFinish((ps != null) ? ps.getTarget() : null, workSource,
4090                    sourceUid, tag);
4091        } catch (RemoteException ex) {
4092        }
4093    }
4094
4095    /**
4096     * @hide
4097     */
4098    public static IActivityManager getService() {
4099        return IActivityManagerSingleton.get();
4100    }
4101
4102    private static final Singleton<IActivityManager> IActivityManagerSingleton =
4103            new Singleton<IActivityManager>() {
4104                @Override
4105                protected IActivityManager create() {
4106                    final IBinder b = ServiceManager.getService(Context.ACTIVITY_SERVICE);
4107                    final IActivityManager am = IActivityManager.Stub.asInterface(b);
4108                    return am;
4109                }
4110            };
4111
4112    private static void dumpService(PrintWriter pw, FileDescriptor fd, String name, String[] args) {
4113        pw.print("DUMP OF SERVICE "); pw.print(name); pw.println(":");
4114        IBinder service = ServiceManager.checkService(name);
4115        if (service == null) {
4116            pw.println("  (Service not found)");
4117            pw.flush();
4118            return;
4119        }
4120        pw.flush();
4121        if (service instanceof Binder) {
4122            // If this is a local object, it doesn't make sense to do an async dump with it,
4123            // just directly dump.
4124            try {
4125                service.dump(fd, args);
4126            } catch (Throwable e) {
4127                pw.println("Failure dumping service:");
4128                e.printStackTrace(pw);
4129                pw.flush();
4130            }
4131        } else {
4132            // Otherwise, it is remote, do the dump asynchronously to avoid blocking.
4133            TransferPipe tp = null;
4134            try {
4135                pw.flush();
4136                tp = new TransferPipe();
4137                tp.setBufferPrefix("  ");
4138                service.dumpAsync(tp.getWriteFd().getFileDescriptor(), args);
4139                tp.go(fd, 10000);
4140            } catch (Throwable e) {
4141                if (tp != null) {
4142                    tp.kill();
4143                }
4144                pw.println("Failure dumping service:");
4145                e.printStackTrace(pw);
4146            }
4147        }
4148    }
4149
4150    /**
4151     * Request that the system start watching for the calling process to exceed a pss
4152     * size as given here.  Once called, the system will look for any occasions where it
4153     * sees the associated process with a larger pss size and, when this happens, automatically
4154     * pull a heap dump from it and allow the user to share the data.  Note that this request
4155     * continues running even if the process is killed and restarted.  To remove the watch,
4156     * use {@link #clearWatchHeapLimit()}.
4157     *
4158     * <p>This API only work if the calling process has been marked as
4159     * {@link ApplicationInfo#FLAG_DEBUGGABLE} or this is running on a debuggable
4160     * (userdebug or eng) build.</p>
4161     *
4162     * <p>Callers can optionally implement {@link #ACTION_REPORT_HEAP_LIMIT} to directly
4163     * handle heap limit reports themselves.</p>
4164     *
4165     * @param pssSize The size in bytes to set the limit at.
4166     */
4167    public void setWatchHeapLimit(long pssSize) {
4168        try {
4169            getService().setDumpHeapDebugLimit(null, 0, pssSize,
4170                    mContext.getPackageName());
4171        } catch (RemoteException e) {
4172            throw e.rethrowFromSystemServer();
4173        }
4174    }
4175
4176    /**
4177     * Action an app can implement to handle reports from {@link #setWatchHeapLimit(long)}.
4178     * If your package has an activity handling this action, it will be launched with the
4179     * heap data provided to it the same way as {@link Intent#ACTION_SEND}.  Note that to
4180     * match the activty must support this action and a MIME type of "*&#47;*".
4181     */
4182    public static final String ACTION_REPORT_HEAP_LIMIT = "android.app.action.REPORT_HEAP_LIMIT";
4183
4184    /**
4185     * Clear a heap watch limit previously set by {@link #setWatchHeapLimit(long)}.
4186     */
4187    public void clearWatchHeapLimit() {
4188        try {
4189            getService().setDumpHeapDebugLimit(null, 0, 0, null);
4190        } catch (RemoteException e) {
4191            throw e.rethrowFromSystemServer();
4192        }
4193    }
4194
4195    /**
4196     * Return whether currently in lock task mode.  When in this mode
4197     * no new tasks can be created or switched to.
4198     *
4199     * @see Activity#startLockTask()
4200     *
4201     * @deprecated Use {@link #getLockTaskModeState} instead.
4202     */
4203    @Deprecated
4204    public boolean isInLockTaskMode() {
4205        return getLockTaskModeState() != LOCK_TASK_MODE_NONE;
4206    }
4207
4208    /**
4209     * Return the current state of task locking. The three possible outcomes
4210     * are {@link #LOCK_TASK_MODE_NONE}, {@link #LOCK_TASK_MODE_LOCKED}
4211     * and {@link #LOCK_TASK_MODE_PINNED}.
4212     *
4213     * @see Activity#startLockTask()
4214     */
4215    public int getLockTaskModeState() {
4216        try {
4217            return getService().getLockTaskModeState();
4218        } catch (RemoteException e) {
4219            throw e.rethrowFromSystemServer();
4220        }
4221    }
4222
4223    /**
4224     * Enable more aggressive scheduling for latency-sensitive low-runtime VR threads. Only one
4225     * thread can be a VR thread in a process at a time, and that thread may be subject to
4226     * restrictions on the amount of time it can run.
4227     *
4228     * If persistent VR mode is set, whatever thread has been granted aggressive scheduling via this
4229     * method will return to normal operation, and calling this method will do nothing while
4230     * persistent VR mode is enabled.
4231     *
4232     * To reset the VR thread for an application, a tid of 0 can be passed.
4233     *
4234     * @see android.os.Process#myTid()
4235     * @param tid tid of the VR thread
4236     */
4237    public static void setVrThread(int tid) {
4238        try {
4239            getService().setVrThread(tid);
4240        } catch (RemoteException e) {
4241            // pass
4242        }
4243    }
4244
4245    /**
4246     * Enable more aggressive scheduling for latency-sensitive low-runtime VR threads that persist
4247     * beyond a single process. Only one thread can be a
4248     * persistent VR thread at a time, and that thread may be subject to restrictions on the amount
4249     * of time it can run. Calling this method will disable aggressive scheduling for non-persistent
4250     * VR threads set via {@link #setVrThread}. If persistent VR mode is disabled then the
4251     * persistent VR thread loses its new scheduling priority; this method must be called again to
4252     * set the persistent thread.
4253     *
4254     * To reset the persistent VR thread, a tid of 0 can be passed.
4255     *
4256     * @see android.os.Process#myTid()
4257     * @param tid tid of the VR thread
4258     * @hide
4259     */
4260    @RequiresPermission(Manifest.permission.RESTRICTED_VR_ACCESS)
4261    public static void setPersistentVrThread(int tid) {
4262        try {
4263            getService().setPersistentVrThread(tid);
4264        } catch (RemoteException e) {
4265            // pass
4266        }
4267    }
4268
4269    /**
4270     * The AppTask allows you to manage your own application's tasks.
4271     * See {@link android.app.ActivityManager#getAppTasks()}
4272     */
4273    public static class AppTask {
4274        private IAppTask mAppTaskImpl;
4275
4276        /** @hide */
4277        public AppTask(IAppTask task) {
4278            mAppTaskImpl = task;
4279        }
4280
4281        /**
4282         * Finishes all activities in this task and removes it from the recent tasks list.
4283         */
4284        public void finishAndRemoveTask() {
4285            try {
4286                mAppTaskImpl.finishAndRemoveTask();
4287            } catch (RemoteException e) {
4288                throw e.rethrowFromSystemServer();
4289            }
4290        }
4291
4292        /**
4293         * Get the RecentTaskInfo associated with this task.
4294         *
4295         * @return The RecentTaskInfo for this task, or null if the task no longer exists.
4296         */
4297        public RecentTaskInfo getTaskInfo() {
4298            try {
4299                return mAppTaskImpl.getTaskInfo();
4300            } catch (RemoteException e) {
4301                throw e.rethrowFromSystemServer();
4302            }
4303        }
4304
4305        /**
4306         * Bring this task to the foreground.  If it contains activities, they will be
4307         * brought to the foreground with it and their instances re-created if needed.
4308         * If it doesn't contain activities, the root activity of the task will be
4309         * re-launched.
4310         */
4311        public void moveToFront() {
4312            try {
4313                mAppTaskImpl.moveToFront();
4314            } catch (RemoteException e) {
4315                throw e.rethrowFromSystemServer();
4316            }
4317        }
4318
4319        /**
4320         * Start an activity in this task.  Brings the task to the foreground.  If this task
4321         * is not currently active (that is, its id < 0), then a new activity for the given
4322         * Intent will be launched as the root of the task and the task brought to the
4323         * foreground.  Otherwise, if this task is currently active and the Intent does not specify
4324         * an activity to launch in a new task, then a new activity for the given Intent will
4325         * be launched on top of the task and the task brought to the foreground.  If this
4326         * task is currently active and the Intent specifies {@link Intent#FLAG_ACTIVITY_NEW_TASK}
4327         * or would otherwise be launched in to a new task, then the activity not launched but
4328         * this task be brought to the foreground and a new intent delivered to the top
4329         * activity if appropriate.
4330         *
4331         * <p>In other words, you generally want to use an Intent here that does not specify
4332         * {@link Intent#FLAG_ACTIVITY_NEW_TASK} or {@link Intent#FLAG_ACTIVITY_NEW_DOCUMENT},
4333         * and let the system do the right thing.</p>
4334         *
4335         * @param intent The Intent describing the new activity to be launched on the task.
4336         * @param options Optional launch options.
4337         *
4338         * @see Activity#startActivity(android.content.Intent, android.os.Bundle)
4339         */
4340        public void startActivity(Context context, Intent intent, Bundle options) {
4341            ActivityThread thread = ActivityThread.currentActivityThread();
4342            thread.getInstrumentation().execStartActivityFromAppTask(context,
4343                    thread.getApplicationThread(), mAppTaskImpl, intent, options);
4344        }
4345
4346        /**
4347         * Modify the {@link Intent#FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS} flag in the root
4348         * Intent of this AppTask.
4349         *
4350         * @param exclude If true, {@link Intent#FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS} will
4351         * be set; otherwise, it will be cleared.
4352         */
4353        public void setExcludeFromRecents(boolean exclude) {
4354            try {
4355                mAppTaskImpl.setExcludeFromRecents(exclude);
4356            } catch (RemoteException e) {
4357                throw e.rethrowFromSystemServer();
4358            }
4359        }
4360    }
4361}
4362