Reference:Android.app.ActivityManager.RunningTaskInfo

From Triled Wiki

Jump to: navigation, search


android.app
public static class android.app.ActivityManager.RunningTaskInfo

java.lang.Object
android.app.ActivityManager.RunningTaskInfo Parcelable

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 actual 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.

Contents

[edit] Summary

[edit] Constants

      Value  
Creator   CREATOR        

[edit] Fields

public      ComponentName   baseActivity   The component launched as the first activity in the task.  
public      CharSequence   description   Description of the task's current state.  
public      int  id   A unique identifier for this task.  
public      int  numActivities   Number of activities in this task.  
public      int  numRunning   Number of activities that are currently running (not stopped and persisted) in this task.  
public      Bitmap   thumbnail   Thumbnail representation of the task's current state.  
public      ComponentName   topActivity   The activity component at the top of the history stack of the task.  

[edit] Public Constructors

          ActivityManager.RunningTaskInfo ()

[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

writeToParcel

[edit] Details

[edit] Constants

[edit] public static final Creator CREATOR

[edit] Fields

[edit] public ComponentName baseActivity

The component launched as the first activity in the task. This can be considered the "application" of this task.

[edit] public CharSequence description

Description of the task's current state.

[edit] public int id

A unique identifier for this task.

[edit] public int numActivities

Number of activities in this task.

[edit] public int numRunning

Number of activities that are currently running (not stopped and persisted) in this task.

[edit] public Bitmap thumbnail

Thumbnail representation of the task's current state.

[edit] public ComponentName topActivity

The activity component at the top of the history stack of the task. This is what the user is currently doing.

[edit] Public Constructors

[edit] public ActivityManager.RunningTaskInfo()

[edit] Public Methods

[edit] public void writeToParcel(Parcel dest)

[edit] References

Personal tools