I have come across both Handlers and runOnUiThread concepts. But to me it still seems to be a doubt as on which facts do they differ exactly.
They both are intended to do UI actions from a background thread. But what are the factors that are to be considered while we choose among the two methods.
For example consider a Runnable Thread which performs a web service in the background and now I want to update the UI.
What would be the best way to update my UI? Should I go for Handler or runOnUiThread?
I still know I could use a AsyncTask and make use of onPostExecute. But I just want to know the difference.
Can anyone help me on this ?
runOnUiThreadis just a shortcut for posting aRunnableto aHandler.Handleris the base of every(?) cross-thread-communication facility defined by Android (e.g.AsyncTask'sonPostExecuteuses aHandlerto deliver the result fromdoInBackground). – zapl Sep 27 '12 at 9:43