I\'m using Picasso library to download images from URL. This is my first attempt on Picasso
Scenario : I want to download some images from server and store them into a
This is perfect answer and I've tested it and works like a charm. You need to use a dedicated thread to retrieve multiple images from network.
private class loadImg extends AsyncTask {
@Override
protected Void doInBackground(Void... params) {
try {
for(int i=0;i
Call your AsyncTask any where in the Main thread.
new loadImg().execute;