Вопрос

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?

Это было полезно?

Решение 2

I solved this problem by downloading the latest version of UIL from here. I was using a older version jar file in my project.

Другие советы

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());

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top