How to make so that the requests are not sent at the same time but sequentially, until the answer to the previous request is received (no matter which one is allowed to load the image via url) the next one is not sent?
There is an array of data (url'y pictures), you need to run through it and get all the pictures sequentially, use the cycle {new Thread (new Runnable () {public void run () {...}}} but this scheme as I understand it almost simultaneously performs all requests ....