TaskInfo
public
class
TaskInfo
extends Object
java.lang.Object | |
↳ | android.app.TaskInfo |
Stores information about a particular Task.
Summary
Fields | |
---|---|
public
ComponentName |
baseActivity
The component of the first activity in the task, can be considered the "application" of this task. |
public
Intent |
baseIntent
The base intent of the task (generally the intent that launched the task). |
public
boolean |
isRunning
Whether or not this task has any running activities. |
public
int |
numActivities
The number of activities in this task (including running). |
public
ComponentName |
origActivity
The component of the target activity if this task was started from an activity alias. |
public
ActivityManager.TaskDescription |
taskDescription
The recent activity values for the highest activity in the stack to have set the values. |
public
int |
taskId
The identifier for this task. |
public
ComponentName |
topActivity
The component of the top activity in the task, currently showing to the user. |
Public methods | |
---|---|
boolean
|
isVisible()
Whether this task is visible. |
String
|
toString()
Returns a string representation of the object. |
Inherited methods | |
---|---|
Fields
baseActivity
public ComponentName baseActivity
The component of the first activity in the task, can be considered the "application" of this task.
baseIntent
public Intent baseIntent
The base intent of the task (generally the intent that launched the task). This intent can be used to relaunch the task (if it is no longer running) or brought to the front if it is.
isRunning
public boolean isRunning
Whether or not this task has any running activities.
numActivities
public int numActivities
The number of activities in this task (including running).
origActivity
public ComponentName origActivity
The component of the target activity if this task was started from an activity alias. Otherwise, this is null.
taskDescription
public ActivityManager.TaskDescription taskDescription
The recent activity values for the highest activity in the stack to have set the values.
Activity#setTaskDescription(android.app.ActivityManager.TaskDescription)
.
topActivity
public ComponentName topActivity
The component of the top activity in the task, currently showing to the user.
Public methods
isVisible
public boolean isVisible ()
Whether this task is visible.
Returns | |
---|---|
boolean |
toString
public String toString ()
Returns a string representation of the object.
Returns | |
---|---|
String |
a string representation of the object. |