java.lang.Object | |
↳ | android.app.ActivityManager.RunningTaskInfo |
Information you can retrieve about a particular task that is currently "running" in the system. Note that a running task does not mean the given task actually has a process it is actively running in; it simply means that the user has gone to it and never closed it, but currently the system may have killed its process and is only holding on to its last state in order to restart it when the user returns.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.os.Parcelable
|
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
CREATOR | |||||||||||
baseActivity | The component launched as the first activity in the task. | ||||||||||
description | Description of the task's current state. | ||||||||||
id | A unique identifier for this task. | ||||||||||
numActivities | Number of activities in this task. | ||||||||||
numRunning | Number of activities that are currently running (not stopped and persisted) in this task. | ||||||||||
thumbnail | Thumbnail representation of the task's current state. | ||||||||||
topActivity | The activity component at the top of the history stack of the task. |
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
|
The component launched as the first activity in the task. This can be considered the "application" of this task.
Number of activities that are currently running (not stopped and persisted) in this task.
Thumbnail representation of the task's current state. Currently always null.
The activity component at the top of the history stack of the task. This is what the user is currently doing.
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 .
|