0

I have a listView in which I have text and an image view Now the data is coming from the service in this case text is of some bytes but due to images size imageview populate after some time . for this I want to show loading symbol in in imageview so that in time of downloading user not say that the app is not able to show images. I have implemented all listActivity and adapters concepts and its working fine but the images take time due to which the imageview part shows black area . any help

Here this I want: Loading Image

1
  • Post your custom layout for the listview with your adapter class. Commented Oct 23, 2013 at 12:20

3 Answers 3

1

In Android we called it lazy list..

this will help you to understood..

1.Lazy loading of images in ListView

2.http://www.technotalkative.com/android-asynchronous-image-loading-in-listview/

For Image issue :

Change in ImageLoader class (if Using Lazy List)

     final int stub_id=R.drawable.ic_launcher; //change it to process image

Good Luck

Sign up to request clarification or add additional context in comments.

Comments

1

Place a ProgressBar and keep the imageView over the ProgressBar.So the progress bar is visible when there is no image in the image view. Also use lazyList to load image.

Comments

1

You might want to check out Android Query. it's a library that also supports Asynchronous image loading and caching.

Android

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.