Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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();
} 
share|improve this question
1  
You should consider AsyncTask class to do this. – Ares Feb 1 at 7:09
@Ares It helped me.. thanks!! – TGMCians Feb 4 at 6:57
@TGMCians did you solve this? Progress dialog in ImageView until the loading of image is complete. – suresh cheemalamudi Feb 15 at 7:52
@suresh cheemalamudi I apply progress dialog for complete screen not each imageview. If you have idea of progress dialog in imageview let us know. – TGMCians Feb 15 at 12:22
@TGMCians what you mean by apply progress dialog for complete screen? U mean one single progress bar to view pager? – suresh cheemalamudi Feb 15 at 12:27
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.