Is it possible to start asynctask from background thread?

Answer: it is mandatory that one has to call asynctask only from main thread, else it may crash at run time when we try to touch UI from onPreExecute [or] onProgressUpdate [or] onPostExecute functions.

No comments:

Post a Comment