java.lang.Object | |
↳ | android.app.ActivityManager.RunningAppProcessInfo |
Information you can retrieve about a running process.
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
int | IMPORTANCE_BACKGROUND |
Constant for importance : This process process contains
background code that is expendable.
|
|||||||||
int | IMPORTANCE_EMPTY |
Constant for importance : This process is empty of any
actively running code.
|
|||||||||
int | IMPORTANCE_FOREGROUND |
Constant for importance : This process is running the
foreground UI; that is, it is the thing currently at the top of the screen
that the user is interacting with.
|
|||||||||
int | IMPORTANCE_FOREGROUND_SERVICE |
Constant for importance : This process is running a foreground
service, for example to perform music playback even while the user is
not immediately in the app.
|
|||||||||
int | IMPORTANCE_GONE |
Constant for importance : This process does not exist.
|
|||||||||
int | IMPORTANCE_PERCEPTIBLE |
Constant for importance : This process is not something the user
is directly aware of, but is otherwise perceptable to them to some degree.
|
|||||||||
int | IMPORTANCE_SERVICE |
Constant for importance : This process is contains services
that should remain running.
|
|||||||||
int | IMPORTANCE_TOP_SLEEPING |
Constant for importance : This process is running the foreground
UI, but the device is asleep so it is not visible to the user.
|
|||||||||
int | IMPORTANCE_VISIBLE |
Constant for importance : This process is running something
that is actively visible to the user, though not in the immediate
foreground.
|
|||||||||
int | REASON_PROVIDER_IN_USE |
Constant for importanceReasonCode : one of the application's
content providers is being used by another process.
|
|||||||||
int | REASON_SERVICE_IN_USE |
Constant for importanceReasonCode : one of the application's
content providers is being used by another process.
|
|||||||||
int | REASON_UNKNOWN |
Constant for importanceReasonCode : nothing special has
been specified for the reason for this level.
|
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.os.Parcelable
|
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
CREATOR | |||||||||||
importance | The relative importance level that the system places on this process. | ||||||||||
importanceReasonCode |
The reason for importance , if any.
|
||||||||||
importanceReasonComponent |
For the specified values of importanceReasonCode , this
is the name of the component that is being used in this process.
|
||||||||||
importanceReasonPid |
For the specified values of importanceReasonCode , this
is the process ID of the other process that is a client of this
process.
|
||||||||||
lastTrimLevel |
Last memory trim level reported to the process: corresponds to
the values supplied to ComponentCallbacks2.onTrimMemory(int) .
|
||||||||||
lru |
An additional ordering within a particular importance
category, providing finer-grained information about the relative
utility of processes within a category.
|
||||||||||
pid | The pid of this process; 0 if none | ||||||||||
pkgList | All packages that have been loaded into the process. | ||||||||||
processName | The name of the process that this object is associated with | ||||||||||
uid | The user id of this process. |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Describe the kinds of special objects contained in this Parcelable's
marshalled representation.
| |||||||||||
Flatten this object in to a Parcel.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
android.os.Parcelable
|
Constant for importance
: This process process contains
background code that is expendable.
Constant for importance
: This process is empty of any
actively running code.
Constant for importance
: This process is running the
foreground UI; that is, it is the thing currently at the top of the screen
that the user is interacting with.
Constant for importance
: This process is running a foreground
service, for example to perform music playback even while the user is
not immediately in the app. This generally indicates that the process
is doing something the user actively cares about.
Constant for importance
: This process does not exist.
Constant for importance
: This process is not something the user
is directly aware of, but is otherwise perceptable to them to some degree.
Constant for importance
: This process is contains services
that should remain running. These are background services apps have
started, not something the user is aware of, so they may be killed by
the system relatively freely (though it is generally desired that they
stay running as long as they want to).
Constant for importance
: This process is running the foreground
UI, but the device is asleep so it is not visible to the user. This means
the user is not really aware of the process, because they can not see or
interact with it, but it is quite important because it what they expect to
return to once unlocking the device.
Constant for importance
: This process is running something
that is actively visible to the user, though not in the immediate
foreground. This may be running a window that is behind the current
foreground (so paused and with its state saved, not interacting with
the user, but visible to them to some degree); it may also be running
other services under the system's control that it inconsiders important.
Constant for importanceReasonCode
: one of the application's
content providers is being used by another process. The pid of
the client process is in importanceReasonPid
and the
target provider in this process is in
importanceReasonComponent
.
Constant for importanceReasonCode
: one of the application's
content providers is being used by another process. The pid of
the client process is in importanceReasonPid
and the
target provider in this process is in
importanceReasonComponent
.
Constant for importanceReasonCode
: nothing special has
been specified for the reason for this level.
The relative importance level that the system places on this
process. May be one of IMPORTANCE_FOREGROUND
,
IMPORTANCE_VISIBLE
, IMPORTANCE_SERVICE
,
IMPORTANCE_BACKGROUND
, or IMPORTANCE_EMPTY
. These
constants are numbered so that "more important" values are always
smaller than "less important" values.
For the specified values of importanceReasonCode
, this
is the name of the component that is being used in this process.
For the specified values of importanceReasonCode
, this
is the process ID of the other process that is a client of this
process. This will be 0 if no other process is using this one.
Last memory trim level reported to the process: corresponds to
the values supplied to ComponentCallbacks2.onTrimMemory(int)
.
An additional ordering within a particular importance
category, providing finer-grained information about the relative
utility of processes within a category. This number means nothing
except that a smaller values are more recently used (and thus
more important). Currently an LRU value is only maintained for
the IMPORTANCE_BACKGROUND
category, though others may
be maintained in the future.
The name of the process that this object is associated with
Describe the kinds of special objects contained in this Parcelable's marshalled representation.
Flatten this object in to a Parcel.
dest | The Parcel in which the object should be written. |
---|---|
flags | Additional flags about how the object should be written.
May be 0 or PARCELABLE_WRITE_RETURN_VALUE .
|