Android

Is AyncTask run on a main thread?

tomato13 2013. 8. 5. 20:16

http://stackoverflow.com/questions/4918781/why-does-asynctask-run-in-the-main-thread-of-an-application


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.