How can I add the Progress dialog in ImageView until I loading image from server in android. When image download complete then display the image.
try {
cachedImage = imageLoader.loadImage(mTopicList.getTopicImage(j),
new ImageLoadedListener() {
public void imageLoaded(Bitmap imageBitmap)
{
imageView.setImageBitmap(imageBitmap);
imageView.invalidate();
}
});
} catch (Exception e) {
e.printStackTrace();
}

AsyncTaskclass to do this. – Ares Feb 1 at 7:09