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

Android Universe library showImageOnLoading issue

I have some issues with DisplayImageOptions.Builder().showImageOnLoading(R.drawable.ic_stub) The method showImageOnLoading(int) is undefined for the type DisplayImageOptions.Builder Other options, like: .showStubImage(R.drawable.ic_stub) …
Sever
  • 2,338
  • 5
  • 35
  • 55
0
votes
1 answer

Universal Image Loader, More efficient downloading with less data. How?

I'have a ASP.NET Webservice and also a site which accepts image uploading. I retrive this pictures in android client using universal image loader. Everything works okay, but the problem is that loading is not that fast. Well on wifi is fast but what…
rootpanthera
  • 2,731
  • 10
  • 33
  • 65
0
votes
0 answers

Display images with multiple columns and rows (nxn) has memory issue in Android

I am showing properties list in scroll view has nxn matrix view. This has load issue (memory out and taking more time to load). To fix this issue I have tried few solutions but couldn't attain 100%. I changed column scroll view to listview and…
0
votes
1 answer

Images don't load when first run

I use Android Universal Image Loader, and that is great library. But sometimes, when i open my app, images couldn't be loaded. I have to scroll down and then up to load images. What must i do to overcome this problem? UIL version : 1.8.6 Android…
0
votes
2 answers

Detecting the Image Size to be displayed and use it by the Lazy Loading Image

I'd like to customized the size of the image used to cover up the real image to be displayed. In the UIL(Universal-Image-Loader) config, we can have .showStubImage(R.drawable.temp_drawable) as a display option. My problem is, I am implementing a…
rahstame
  • 2,148
  • 4
  • 23
  • 53
0
votes
1 answer

Huge memory consumption of UniversalImageLoader

I have a problem using the Universal Image Loader Library. Unfortunately, the Library causes huge memory usage of my application. I have a ScrollView (there are tons of reasons why I am using a ScrollView instead of a ListView, most of them have to…
0
votes
1 answer

OnItemClickListener doesn't work when clicking ImageView

I have a ListView with OnItemClickListener set, each row contains an ImageView. For some rows i set bitmap in this ImageView using https://github.com/nostra13/Android-Universal-Image-Loader. For these rows (and only for these rows) when i click on…
0
votes
1 answer

How to use Dynamic Drawable instead of resource in DisplayImageOptions in Universal Image Loader

DisplayImageOptions take drawable resource id for these methods - .showStubImage(R.drawable.default_grid_drawable) .showImageForEmptyUri(R.drawable.default_grid_drawable) .showImageOnFail(R.drawable.default_grid_drawable) Can I use dynamically…
Mihir
  • 2,064
  • 2
  • 21
  • 28
0
votes
1 answer

Can I change the universal image loader SDcard cache key??Emergency

As my image Uri uses a different way to make sure the App pivture is safe. It changes everytime when I request. For example, it may be like this and next time it comes like this As universal image loader uses the Uri as key for SD Chche . The image…
Bob King
  • 3
  • 2
0
votes
2 answers

Universal Image Loader custom ImageDownloader

I've implemented a custom BaseImageDownloader, and it's method InputStream getStreamFromOtherSource(String imageUri, Object extra). Everything works ok. The thing is, some times, the file I'm opening is corrupt (out of my hands, it might happen)…
Cheborra
  • 2,627
  • 4
  • 23
  • 39
0
votes
1 answer

Parsing more than one link in android

I need to parse a lot of pages (about 50) to get a full list of some data and put it into the listview. I only know how to parse a one page (by using async task) and put it into list view. I think I should dynamically add data into listview when…
File
  • 171
  • 1
  • 2
  • 13
0
votes
1 answer

Loading images in a listview not working properly

I'm loading a different images to every row in my listview, I've looked at several tutorials and watched the google video on the best practice for this but it still doesn't work properly. My listview items end up displaying all the images in a…
0
votes
1 answer

Universal Image Loader: I get ConcurrentModificationException when trying to remove image from cache

I need to arbitrarily replace a cached image by requesting it again from server. I'm currently using removeFromCache as follows: public void loadImage(String url, ImageView view, boolean updateCache){ if(updateCache){ …
0
votes
1 answer

Putting OnRatingBarChangeListener in Universal-Image-Loader in GridView Implementation

The main purpose of my question is to know where to put the OnRatingBarChangeListener in UIL. Below each image I added ratingBars(which is working), the next thing that I should do is to listen to the users action towards the ratingbar's selection.…
rahstame
  • 2,148
  • 4
  • 23
  • 53
0
votes
2 answers

Android - ImageView with Another Views in Universal Image Loader

I been struggling right now to customize the such that I can include another types of views in the gridview(Image). I want to achieve the layout below but in the Universal Image Loader it only displays images. Any experience with this?…
rahstame
  • 2,148
  • 4
  • 23
  • 53