What is the difference between Service, Async Task & Thread. If i am not wrong all of them are used to do some stuff in background. So, how to decide which to use and when?
|
|
|
Probably you already read the documentation description about them, I won't repeat them, instead I will try to give answer with my own words, hope they will help you.
I am using Services, AsyncTasks frequently. Thread less, or not at all, as I can do almost everything with AsyncTask. |
|||||||||||||||||
|
|
Here is a post comparing various task execution mechanisms in Android. |
|||