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

Out of Memory using after 5 times of change orientation

I am handling larges images with 900 x 900 dimension. The images are displayed by a gridview implementation. There are 5 gridviews inside ViewPager's pages. The problem after 4 times of screen orientation change, I am getting out of memory error and…
rahstame
  • 2,148
  • 4
  • 23
  • 53
0
votes
0 answers

Combine Coverflow and Universal Image Loader libs

I like to use these two libs. Coverflow creates carousel and UIL loads and set to ImageViews images from Web. The issue is I want to load Images from UIL and pass them to Coverflow. Is it possible? Does anybody has such practice?
dimetil
  • 3,851
  • 2
  • 29
  • 47
0
votes
1 answer

Show text on ImageView UIL

I am using Universal Image Loader. I want to set some Text on Image. How can I do this? ImageView does not let me set the text and I want to use UIL but it take only ImageView as a parameter. displayImage(String uri, ImageView imageView,…
Sunny
  • 14,522
  • 15
  • 84
  • 129
0
votes
2 answers

Sliding menu Fragment getContext return null

Im using sliding menu in android and I'm having a lot of trouble to get the context throught the Fragment. The Main Activity: slide = new SlidingMenu(this); slide.setMode(SlidingMenu.LEFT); …
0
votes
1 answer

Lazy loading image listView

I have a listview that each cell display a big image. I'm using universal image loader android library for loading the images into the ImageViews. I set the image storage on chace and disk true, but the list didn't scroll smoothly(I have doubt if…
0
votes
1 answer

Trying to refresh Gridview in Universal Image Loader after delete

I am displaying images in a GridView with Universal Image Loader. The images are from a database. I added a context menu to delete pictures as needed out of the database. Everything works great up to there. After deleting the picture I need it to…
JeffK
  • 247
  • 1
  • 5
  • 18
0
votes
1 answer

Application performance with media

I have a gallery application which loads all the media (images, music and video) thumbnails. I'm using Universal Image loader to load the images with following configs DisplayImageOptions mOptions = new DisplayImageOptions.Builder() …
0
votes
0 answers

Universal Image Loader not showing some of the images

I am using Universal Image Loader for showing images in my listview in Android. Most of the images are showing perfectly fine, but some other URLs are not working. What could be the cause?
chossen-addict
  • 370
  • 1
  • 7
  • 31
0
votes
1 answer

Attempting to get current image and set as wallpaper using Universal Image Loader

I am trying to implement the ability for users browsing my app to set images as wallpapers. I am using Universal Image Loader and everything works great except for when it comes time to set the wallpaper. I have tried several different methods…
rwilco12
  • 3
  • 4
0
votes
1 answer

Wrong position of images inside ListView

I'm using an ArrayAdapter for filling a ListView. The code I used for the getView is the following: public View getView(int position, View convertView, ViewGroup parent) { View rowView = convertView; if(rowView ==null){ …
0
votes
1 answer

Universal-Image-Loader does not keep the displayed images

I am handling 3mb of images and the problem is by the time I release my finger from scrolling, the images, are somewhat downloaded from the cache in my case in the sd card. I am using PauseOnScrollListener, as well and it did not solve the problem.…
rahstame
  • 2,148
  • 4
  • 23
  • 53
0
votes
1 answer

Memory leak issue in Universal Image Loader

By analyzing with MAT One instance of "com.nostra13.universalimageloader.core.ImageLoader" loaded by "dalvik.system.PathClassLoader @ 0x414d28b8" occupies 3,866,808 (26.42%) bytes. The memory is accumulated in one instance of…
0
votes
1 answer

Imagelist view with BaseAdapter

I have not done much java and android and got stuck in loading an image into a listview. Hopefully I'm on the right track of something by using a BaseAdapter. Now I am trying only one image, but eventually it will be a list of images. Tried…
0
votes
3 answers

Loading images in a Listview properly

I'm using the Universal Image Loader library to load images in my listview, it loads the images but I notice that if you scroll quickly the first time you can see the wrong images being loaded first before the correct image. How can I stop this…
0
votes
1 answer

Confusion with .cacheInMemory() vs .cacheOnDisc() in Universal Image Loader

I am using .cacheOnDisc() method for storing images in cache memory (Default method-Unlimited Extrenal Storage).should i enable cacheInMemory for my app?what r the effects will be if i dont use cacheInMemory option?
Asthme
  • 5,163
  • 6
  • 47
  • 65