I am facing an issue regarding the order of exection of AsyncTasks.
My question is :
Assuming I have 2 implementations of AsyncTask : MyAsyncTask1
Call 2nd Task in onPostExecute of task 1 as
@Override protected void onPostExecute(String string){//String or whatever u passed new MyAsyncTask2 ().execute (); }