Android
Is AyncTask run on a main thread?
tomato13
2013. 8. 5. 20:16
An AsyncTask has several parts: a doInBackground
method that does, in fact, run on a separate thread, and aonPostExecute
method that runs on the UI thread.