Reputation: 1219
I am noob in Android, I want to know the meaning of the term "Task" in Android. Here docs using
A "singleInstance" activity stands alone as the only activity in its task
Is task is Stack ??
Upvotes: 1
Views: 411
Reputation: 38168
You can find the definition here : http://developer.android.com/guide/components/tasks-and-back-stack.html.
Tasks are basically :
A task is a collection of activities that users interact with when performing a certain job.
Task has the same common meaning than in natural english, it's a task to be done by a user.
Upvotes: 2