Questions tagged [universal-image-loader]

Universal Image Loader is the open source library for Android which aims to provide a reusable instrument for asynchronous image loading, caching and displaying.

Project on GitHub

Features

  • Multithread image loading
  • Possibility of wide tuning ImageLoader's configuration (thread pool size, HTTP options, memory and disc cache, display image options, and others)
  • Possibility of image caching in memory and/or on device's file sysytem (or SD card)
  • Possibility to "listen" loading process
  • Possibility to customize every display image call with separated options
  • Widget support
865 questions
0
votes
1 answer

Read timed out Error in Android Universal Image Loader

@nostra13 I download the library https://github.com/nostra13/Android-Universal-Image-Loader when I run the sample code given on the above link , for most of the images I get READ TIMED OUT ... I was trying on wifi and the net speed is good and the…
Aamir Shah
  • 4,473
  • 8
  • 21
  • 28
0
votes
1 answer

iIlegalArgument exception while running Universal Image Downloader example

I am trying to run the universal Image downloader example and after importing and fixing project properties, I get this error when I run it. UNEXPECTED TOP-LEVEL EXCEPTION: java.lang.IllegalArgumentException: already added:…
SKK
  • 5,261
  • 3
  • 27
  • 39
0
votes
0 answers

java.net.SocketException universal image loader

This error java.net.SocketException: recvfrom failed: ECONNRESET (Connection reset by peer) freeze my fragment besides progressBar keeps turning even after displaying image, how do i fix this ? 10-09 16:10:15.933: W/System.err(19358):…
hamzarh
  • 330
  • 2
  • 6
  • 20
0
votes
2 answers

Does universal-image loader support android versions prior to honeycomb?

I was wondering is the universal-image-loader (Found Here) is supporting versions prior to honeycomb. Because versions prior to honeycomb have a separate native heap stack the memory used by the bitmaps does not count towards the VM heap. I'm…
Michael
  • 436
  • 3
  • 15
-1
votes
2 answers

Images from url not loaded on mobile data connection

I am using Glide to load images from url onto an ImageView in a RecyclerView adapter. Everything works fine when a user is connected to the internet on wifi. However, when their connection is on mobile data, Glide throws an…
-1
votes
3 answers

Android ListView repeat image

I'm implementing a listview on android that contains an imageview and I'm experiencing a problem: When a row does not have an image it is repeating an image of the previous item. Here's my adapter: public class NewsAdapter extends BaseAdapter { …
-1
votes
2 answers

In import com.nostra13.universalimageloader.core.assist.SimpleImageLoadingListener; SimpleImageLoadingLIstneer is not found

I am learning android and new to android. I want to pick multiple images from gallery and then want to show them in gridview and for that i am using UniversalImageLoader library 1.9.5 To Use UniversalImageLoader Library i added the following…
-1
votes
1 answer

How to solve the error for NullPointerException using Universal image loader?

I'm a beginning programmer. I'm trying use Universal image loader to display images for sample gallery view , but it is not work. What am I doing wrong? Thanks. This is a test programm. Adapater class : import android.app.Activity; import…
-1
votes
3 answers

Android renderscript for image blur using universal image loader

I want to set downloaded image into my imageview. But I need it as blur image. And i used universal image loader. So my question is how to set blur image using universal image loader and renderscript? thank…
Das
  • 141
  • 13
-1
votes
1 answer

Imageloader inside for loop in android

I need to loop the image load Google map marker with images. So, I am using custom marker( there will more than 50 different marker images). I am using Universal Image loader for loading the image on Image view. Once the image is loaded on the Image…
-1
votes
1 answer

how to display a animated progress before image download using Universal Image loader

I have a list in which I am displaying text then image and 4 options (A, B ,C , D) I am using Universal Image loader to handle images, My requirement is I have to display an small animated progress bar on the place of exact size of image which is…
Naga
  • 1,931
  • 4
  • 25
  • 42
-1
votes
1 answer

How can I use Universal Image Loader (UIL) to download and display pictures from a FTP server?

I need to retrieve some photos from a FTP server and I wanted to use UIL to do that. I tried the following code : String photoURI = "ftp.cluster123.ovh.net/photos/myphoto.jpg"; ImageLoader.getInstance().displayImage(photoURI, photoImageView); But…
-1
votes
1 answer

Throwing Runntime Error Using Universal Image Loader Library

Hello Friend I am Using Universal Image Loader To Slide Image From Json But I don't know Why its Giving Illegal Argument here Is my Code Debugger jump to error if (result != null) { if (products != null && products.size() != 0) { …
user3825086
  • 111
  • 1
  • 2
  • 12
-1
votes
2 answers

Universal Image Loader NullPointer

I am using Universal Image Loader Libray but I am getting NullPointerError at this line return imageUrls.length;Here is my code, I am trying to get images with an AsyncTask. Can somebody help me? public class ImageGridFragment extends…
Elena
  • 181
  • 2
  • 12
-1
votes
1 answer

GridView not Loading using Universal Image Loader

i wanted to use UIL for one of my projects so i just made this prototype project to see how the library works. I built it according to the sample project from https://github.com/nostra13/Android-Universal-Image-Loader. But when i run the proj the…
Clinton Dsouza
  • 330
  • 4
  • 20