Reference:Android.app.ActivityManager.RecentTaskInfo
From Triled Wiki
android.app
public static class android.app.ActivityManager.RecentTaskInfo
| java.lang.Object | ||
| android.app.ActivityManager.RecentTaskInfo | Parcelable | |
Information you can retrieve about tasks that the user has most recently started or visited.
Contents |
[edit] Summary
[edit] Constants
| Value | ||||
|---|---|---|---|---|
| Creator | CREATOR |
[edit] Fields
| public | Intent | baseIntent | The original Intent used to launch the task. | ||
| public | int | id | If this task is currently running, this is the identifier for it. |
[edit] Public Constructors
| ActivityManager.RecentTaskInfo () |
[edit] Public Methods
| void | writeToParcel (Parcel dest) |
[edit] Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait[edit] Methods inherited from interface android.os.Parcelable
[edit] Details
[edit] Constants
[edit] public static final Creator CREATOR
[edit] Fields
[edit] public Intent baseIntent
The original Intent used to launch the task. You can use this Intent to re-launch the task (if it is no longer running) or bring the current task to the front.
[edit] public int id
If this task is currently running, this is the identifier for it. If it is not running, this will be -1.
[edit] Public Constructors
[edit] public ActivityManager.RecentTaskInfo()
[edit] Public Methods
[edit] public void writeToParcel(Parcel dest)
[edit] References
- Original documentation page for Android SDK build m5-rc15e - 14 apr 2008 17:27
