Currently in my application, in one fragment (or adapter), I call more than one AsyncTask in order to gather required data for that fragment.
I am following this tutorial link to make sure that I do not block the UI while data is loading from server.
But since I call more than one AsyncTask in my fragments / adapters, I realized that this method will not work for me and I started to doubt if I am using AsyncTask correctly.
So, is it okay to call more than one AsyncTask in one fragment/adapter?