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
-2
votes
3 answers

loading full image from url into image view with any image loading library

I'm downloading an image from a URL and displaying it in an ImageView. I need to download the image at its full original size. I've tried Glide, Picasso and Universal Image Loader with no success. Is there any library or mehod out there to achieve…
Martin Seal
  • 616
  • 2
  • 14
  • 32
-2
votes
2 answers

Clear cache of UIL library

I am using universal image loader library for loading the images in my listview. I want to clear the cache for all the images at once. I know how to do it for one image at a time. MemoryCacheUtils.removeFromCache("file://"+path,…
Fahim
  • 12,198
  • 5
  • 39
  • 57
-2
votes
1 answer

Universal ImageLoader - View must not be null

I want display icon in ListView and i use libs Universal Imageloader. But give me error. Pls give me a solution or Edit my code. Thank for help ! Sorry for my weak English. Code Fragment is public class InfoTeacherFragment extends Fragment { …
Iris Louis
  • 297
  • 6
  • 19
-2
votes
1 answer

Custom listView with universal image loader, shuffle my images

When i scroll my list View,images change places. I read about the problem, and kind of understand the reason. But i didn't found any solution to my problem sorry for my english and my java, I am new to it :( here is my getView : @Override public…
-3
votes
1 answer

Universal Image Loader returns null pointer

I am using Universal Image Loader API for my application and am downloading the images from server and assigning them to the string array. Problem is that when i debug the application, images will display on the emulator but when i try to run it,…
-3
votes
1 answer

Memory Leaks and GridView

I am using a GridView and universalimageloader (1.8.6) and seem to be encountering a memory leak - though maybe I am misinterpreting DDMS and MAT results? This is code I did not write, but it is pretty basic - we are showing a number of photos and…
-3
votes
1 answer

NullPointerException when retrieving data from sqlite database

ive stored some image names in a sqlite database.My code is supposed to retrieve all the imagenames and store it in a array and then assign the first image to an imageview based on its name.Im using UIL to set the images to the image view. MY…
-3
votes
1 answer

Load images from byte array into the gridview

I'm using UniversalImageLoader library to load the images into the GridView. And i'm having the images in the form of byte array. How to use UniversalImageLoader with ArrayList of byte arrays I'm getting the byte array from the my SQlite Database.
user3607798
  • 769
  • 2
  • 7
  • 15
-4
votes
1 answer

ImageLoader = ImageLoaderFactory.create( context );

I searched what ImageLoaderFactory.create( context ) does but I don't understand. ImageLoader = ImageLoaderFactory.create( context ); I know that ImageLoader is for Image downloaded on the web.
Mavrick RMX'
  • 108
  • 11
-4
votes
1 answer

Show gif from network use UIL

Is there any way to show gif photo from network use UIL
cycDroid
  • 915
  • 10
  • 16
1 2 3
57
58