AsyncTask.Status

public static final enum AsyncTask.Status extends Enum<AsyncTask.Status>

Indicates the current status of the task. Each status will be set only once during the lifetime of a task.

Inherited Method Summary

Enum Values

public static final AsyncTask.Status FINISHED

Indicates that onPostExecute(Result) has finished.

public static final AsyncTask.Status PENDING

Indicates that the task has not been executed yet.

public static final AsyncTask.Status RUNNING

Indicates that the task is running.