# Print output for @column tags ?> TaskInfo - Android SDK | Android Developers

Most visited

Recently visited

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

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

taskId

public int taskId

The identifier for this task.

topActivity

public ComponentName topActivity

The component of the top activity in the task, currently showing to the user.

Public methods

toString

public String toString ()

Returns a string representation of the object. In general, the toString method returns a string that "textually represents" this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method.

The toString method for class Object returns a string consisting of the name of the class of which the object is an instance, the at-sign character `@', and the unsigned hexadecimal representation of the hash code of the object. In other words, this method returns a string equal to the value of:

 getClass().getName() + '@' + Integer.toHexString(hashCode())
 

Returns
String a string representation of the object.