Thursday, 5 April 2012

Difference between Handler and Asynctask in Android


1 comment:

  1. 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.

    ReplyDelete