In my activity, I download several images and then display them by adding each one of them on my main layout. I tried these 3 approaches but each time my progress dialog freezes until the images are loaded:
1st approach: Using an async task: I download the images on doInBackground() and add them to the main layout onPostExecute ()
2nd: The same as above, but I add each one of the images onProgressUpdate()
3rd: Using a handler and a thread
Each time the progress dialog freezes for a few seconds (actually the whole application freezes) until the images are downloaded and displayed on the screen.
I have been trying to fix this for a long time but nothing yet. Any ideas? Here's a part of my code:
protected Integer doInBackground(Void... params) {
//...
try {
//download images
}
} catch (JSONException e) {
e.printStackTrace();
}
if (!loadTask.isCancelled()) {
//Display images
int length=imageList.size();
for (i=0; i<length; i++) {
publishProgress(i);
}
}
return 1;
}
protected void onProgressUpdate(Integer... a) {
//interaction with UI thread
int i = a[0];
ImageView im = new ImageView (MyActivity.this);
im.setImageBitmap(getRemoteImage(imageUrl));
im.setLayoutParams(Params);
im.setAdjustViewBounds(true);
im.setPadding(px2, px2, px2, px2);
im.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
//...
}
});
}