Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm confused as to when one would choose AsyncTask over a Handler. Say I have some code I want to run every n seconds which will update the UI. Why would I choose one over the other?

share|improve this question
1  
very important Question ... thanks man – Mohammed Subhi Sheikh Quroush Jan 9 at 11:24
This has gotten more complicated with AsyncTaskLoaders. See stackoverflow.com/q/7120813/969325 for more info. – Warpzit Apr 23 at 16:39

4 Answers

up vote 43 down vote accepted

IMO, AsyncTask was written to provide a convenient, easy-to-use way to achieve background processing in Android apps, without worrying too much about the low-level details(threads, message loops etc). It provides callback methods that help to schedule tasks and also to easily update the UI whenever required.

However, it is important to note that when using AsyncTask, a developer is submitting to its limitations, which resulted because of the design decisions that the author of the class took. For e.g. I recently found out that there is a limit to the number of jobs that can be scheduled using AsyncTasks.

Handler is more transparent of the two and probably gives you more freedom; so if you want more control on things you would choose Handler otherwise AsynTask will work just fine.

share|improve this answer
That's right. I was using AsyncTasks for all background operations in my project. At some point I started reaching that max jobs limit, so my tasks would only start after another finished. In the end I had to change all my structure to stop using asynctasks and avoid reaching that limitation. – tbraun Feb 8 at 11:57
From Honeycomb on, AsyncTasks are executed on one thread, so no parallelism anymore. You still could run them on a paralel Executor implementation. – MrSnowflake May 6 at 15:27

My rule of thumb would be:

  • If you are doing something isolated related to UI, for example downloading data to present in a list, go ahead and use AsyncTask.

  • If you are doing multiple repeated tasks, for example downloading multiple images which are to be displayed in ImageViews (like downloading thumbnails) upon download, use a task queue with Handler.

share|improve this answer
Handler is in the API level 1 & ASYNCTASK in the API level 3. will it be deprecated at any cost? becaz am concentrating on porting applications from older versions to 2.2 & 2.3.. – yokks Feb 3 '11 at 5:39
3  
Neither will be deprecated anytime soon. Handler will never be deprecated as the UI is basically built around it. – alexanderblom Feb 3 '11 at 8:50

If you want to do a calculation every x seconds, you should probably schedule a Runnable on a Handler (with postDelayed()) and that Runnable should start in the current UI thread. If you want to start it in another thread, use HandlerThread. AsyncTask is easier to use for us but no better than handler.

share|improve this answer
+1 for HandlerThread that I was not aware about! – Eduardo Dec 1 '12 at 19:02

The Handler is associated with the application’s main thread. it handles and schedules messages and runnables sent from background threads to the app main thread.

AsyncTask provides a simple method to handle background threads in order to update the UI without blocking it by time consuming operations.

The answer is that both can be used to update the UI from background threads, the difference would be in your execution scenario. You may consider using handler it you want to post delayed messages or send messages to the MessageQueue in a specific order.

You may consider using AsyncTask if you want to exchange parameters (thus updating UI) between the app main thread and background thread in an easy convinient way.

share|improve this answer
You may create your own Handler associated with another Thread. – Aleksejs Mjaliks Apr 26 '12 at 19:56

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.