Android two AsyncTasks serially or parallel execution? - The second is freezing but the result is ok
问题 I run two AsyncTask tasks in my Android application which are from the same class but with different parameters. For example: new myAsynckTask(a,b,c).execute(); new myAssyncTask(a,d,e).execute(); Do they execute in parallel or in a serial order? I ask this because when the first one starts, shows the progress of execution and when finishes I see the second one which needs more time to finish but I can't see the progress(I'm able to see the rectangle but the progress bar is not showing 20%.