I want to schedule or queue to execute Multiple AsyncTask in background. I have a AsyncTask for HTTP post request that is running in Service, At the same time i make a one more HTTP request in UI thread of AsyncTask.
UI thread taking too long time to execute, because already one thread is running in service. How to resolve this problem.?
I need to Pause a service thread and I want to execute UI thread first and then restart a service thread again for AsyncTask.
Thanks in advance