Reputation: 4171
I am using Universal image loader
for loading images and showing them in a ListView
.
Some of the links I have are with the image extension like this
Link 1 : http://HOST/staticContent/EnlgImg250x250/HandBags-ContemporarydesignblackClutch-HB1122-1.jpg
Link 2 : http://HOST/images/get/Product/9958/1
both the links show image in the web browser but the images are not loading in my app using the Image loader
I am using the following code :
imagLoader.displayImage(imagUrl, imageView ,displayOptions);
can someone help me with this please?
Upvotes: 2
Views: 2040
Reputation: 189
android-query-full.0.26.7.jar download this library and use
AQuery aQur = new AQuery(context); aQur.id(imageView).progress(progress).image(list.get(position).toString());
Upvotes: 1
Reputation: 4171
I solved this problem by downloading the latest version of UIL
from here. I was using a older version jar
file in my project.
Upvotes: 0