Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

2 Answers

up vote 64 down vote accepted

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.

  • Service is like an Activity but has no interface. Probably if you want to fetch the weather for example you won't create a blank activity for it, for this you will use a Service.

  • A Thread is a Thread, probably you already know it from other part. You need to know that you cannot update UI from a Thread. You need to use a Handler for this, but read further.

  • An AsyncTask is an intelligent Thread that is advised to be used. Intelligent as it can help with it's methods, and there are two methods that run on UI thread, which is good to update UI components.

I am using Services, AsyncTasks frequently. Thread less, or not at all, as I can do almost everything with AsyncTask.

share|improve this answer
Thanks for your explanation. So, if i need to make an application which fetches data from the web, which would be a better option service or async task? – SpunkerBaba Jul 17 '10 at 16:42
3  
You need to use both. You create a Service and inside that you use AsyncTask. – Pentium10 Jul 18 '10 at 16:24
3  
Add to above answer, AsyncTask goes through 4 steps onPreExecute(),onProgressUpdate(Progress...)onPostExecute(Result),{running in UI thread}, doInBackground(Params...){running in background thread}. Since it provides 3 methods in UI thread, user need not worry about using handlers or callbacks to update UI. – SpunkerBaba Aug 29 '10 at 16:46
3  
@Pentium10 : instead of Service+AsyncTask, you often can use an IntentService – njzk2 Apr 11 '12 at 10:02
Also notable is that by default Android services run on the main (UI) thread. If your service needs to do work in the background, it needs to be launched in a separate thread (or AsyncTask) explicitly. Otherwise it can risk interrupting the UI responsiveness and throw Application Not Responding errors. A service wrt Android is essentially an 'invisible' and 'miniature' Activity, NOT necessarily a 'background' worker. – CCJ Mar 28 at 20:30

Here is a post comparing various task execution mechanisms in Android.

share|improve this answer
1  
nice post, very useful! thanks! – noloman Jul 19 '11 at 9:29
2  
This link helped me a lot at deciding whether a thread was needed in a service or not. Thanks a million! – marlar Sep 5 '11 at 15:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.