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

Android Universal Image Loader change HxW url parameters

When I pass in my Image URI to imageLoader.displayImage, it is automatically getting appended with _[W]x[H] at the end of each url. Is there a way to override that string, or prevent it from getting appended at all? The API i am calling already has…
dmfrey
  • 1,230
  • 1
  • 17
  • 33
0
votes
1 answer

Show single indeterminate progress bar for multiple images being loaded

So I have a ListView that has several ImageViews in each list item. I use the Universal Image Loader to load each image. What I want is to show a single indeterminate progress bar spinner (say on the actionbar), while all the images in the list are…
FlashAsh80
  • 1,357
  • 1
  • 16
  • 27
0
votes
2 answers

Android Universal Image Loader cache by id

I'm using NOSTRA's Universal Image Loader library and I have caching in memory enabled. It seems that the bitmaps are cached using the URI set in the displayImage() method as the key. As a workaround I created another HashMap that contains the URIs…
Wenger
  • 989
  • 2
  • 12
  • 35
0
votes
1 answer

How to change the displayer of UniversalImageLoader?

This should be very simple thing to do, but I can't find it. I want to show at some places in my app images with rounded corners. But not all. The only place where the I see I can set the display is in the initial setup. Can't find other method. And…
User
  • 31,811
  • 40
  • 131
  • 232
0
votes
1 answer

get drawable exactly the size of the imageView to use as a placeholder

I am using Universal Image View to load images into my application. This is the method I implemented public static void setBitmapToAImageviewUIL(final ImageView imageView, String uriPath, String imageName) { if(imageName != null &&…
Y2theZ
  • 10,162
  • 38
  • 131
  • 200
0
votes
0 answers

display local drawable with universal image loader

I've a problem with Universal Image Loader (which is very fine), I just want to display a local drawable from local. So I put this URL into my String array: public static final String[] IMAGES = new String[]{ "drawable://" + R.drawable.app_icon…
eento
  • 761
  • 4
  • 20
  • 53
0
votes
1 answer

Universal Image Loader enable/disable disc cache for each image

In my android app, I am using Universal Image Loader to display images. I specified in the option to caching images on Disc. But sometimes there are images that I do not want to cache on the disc. Is there a way to specify if it should cache on…
Y2theZ
  • 10,162
  • 38
  • 131
  • 200
0
votes
1 answer

Is there a way to specify extra headers while fetching images using Universal Image Loader?

I'm trying to user the Universal Image Loader library to load my images. I trying to call a webservice api to fetch images off it, but it requires the client to attach extra http headers. i.e.: Access-Token: 124124141241421 Is there a way to…
Bundeeteddee
  • 724
  • 11
  • 19
0
votes
2 answers

Want to convert ArrayList> to string

I read the Universal Image Loader and I make application that has gridview and this gridview get image from json. but my application load so slow, so I want to use Universal Image Loader but getView function in Universal Image Loader in…
kongkea
  • 9,788
  • 12
  • 39
  • 49
0
votes
1 answer

Using Images from Database with URL

I am caching all data I'm getting in my App inside a SQLite DB... Whenever the user doesn't have internet connection the data is loaded with a SimpleCursorAdapter from the database. The database also contains the URL of Images. The images are cached…
0
votes
1 answer

Using UniversalImageLoader with WebView

I am using Android Universal Image Loader in my application. It works great for ImageViews, but I also have WebView in my application. Therefore, images are downloaded twice. Once by Universal Image Loader for ImageViews and once by WebView. Is it…
ipman
  • 1,212
  • 2
  • 21
  • 29
0
votes
1 answer

size image in an imageview in PagerActivity

I am using this project universal-image-loader.I would like to know how can I get the size of an image displayed in the pagerActivity? I added this two line in ImagePagerActivity.java (after…
GermainGum
  • 1,349
  • 3
  • 15
  • 40
0
votes
1 answer

modify universal-image-loader

I am using this project universal-image-loader in order to display in a gridview several images. But I would like to modify these images with some html (for example add ads at the bottom of each images). I saw the image are displayed by calling…
GermainGum
  • 1,349
  • 3
  • 15
  • 40
0
votes
1 answer

Download Image stream from android universal image loader

I use android universal image loader in monodroid for my android app. some time i need to save some images in sdcard. In this cases i need to download images in streams and then save them into sdcard. Is there any way to download images by stream…
user1682893
0
votes
1 answer

How to Show Dynamic Data in LazyList or Universal Image Loader?

I'm testing both LazyList (LL) and Universal Image Loader (UIL) that I found here. Also I have successfully made some modifications to retrieve the URL's to load from a JSON document. The JSON is from Flickr. I got the url (for obtain photos) and…
Igor Medeiros
  • 4,026
  • 2
  • 26
  • 32