I am using volley to queue a series of requests. I am showing a progress dialog to the user when these requests are happening. Is there a way I can check when all these requests are finished. This is what I want.
//Show progress bar
for(int i=0;i<size;i++)
{
//create request and add the request
requestQueue.add(request);
}
// When last request finsihes dismiss progres bar
Is there a solution to this problem.