Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using a ListView to display some images and captions associated with those images. I am getting the images from the Internet. Is there a way to lazy load the images so while the text displays, the UI is not locked up and images are displayed as they are downloaded?

The number of images is not fixed.

share|improve this question
2  
You can use GreenDroid's AsyncImageView. Just call setUrl. – Pascal Dimassimo Dec 9 '11 at 15:11
1  
I have used it. It is a wonderful implementation. Bad news that AsyncImageView is a part of a large GreenDroid project, which make your application larger even in the case all you need is AsyncImageView. Also, seems, GreenDroid project is not updated since 2011. – borisstr Apr 15 '12 at 11:06
2  
You can even give a try to this library : Android-http-image-manager which in my opinion is the best for asynchronous loading of images. – Ritesh Kumar Dubey Nov 9 '12 at 11:43

16 Answers

up vote 410 down vote accepted

Here's what I created to hold the images that my app is currently displaying. Please note that the "Log" object in use here is my custom wrapper around the final Log class inside Android.

package com.wilson.android.library;

/*
 Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements.  See the NOTICE file
distributed with this work for additional information
regarding copyright ownership.  The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License.  You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied.  See the License for the
specific language governing permissions and limitations
under the License.
*/
import java.io.IOException;

public class DrawableManager {
    private final Map<String, Drawable> drawableMap;

    public DrawableManager() {
        drawableMap = new HashMap<String, Drawable>();
    }

    public Drawable fetchDrawable(String urlString) {
        if (drawableMap.containsKey(urlString)) {
            return drawableMap.get(urlString);
        }

        Log.d(this.getClass().getSimpleName(), "image url:" + urlString);
        try {
            InputStream is = fetch(urlString);
            Drawable drawable = Drawable.createFromStream(is, "src");


            if (drawable != null) {
                drawableMap.put(urlString, drawable);
                Log.d(this.getClass().getSimpleName(), "got a thumbnail drawable: " + drawable.getBounds() + ", "
                        + drawable.getIntrinsicHeight() + "," + drawable.getIntrinsicWidth() + ", "
                        + drawable.getMinimumHeight() + "," + drawable.getMinimumWidth());
            } else {
              Log.w(this.getClass().getSimpleName(), "could not get thumbnail");
            }

            return drawable;
        } catch (MalformedURLException e) {
            Log.e(this.getClass().getSimpleName(), "fetchDrawable failed", e);
            return null;
        } catch (IOException e) {
            Log.e(this.getClass().getSimpleName(), "fetchDrawable failed", e);
            return null;
        }
    }

    public void fetchDrawableOnThread(final String urlString, final ImageView imageView) {
        if (drawableMap.containsKey(urlString)) {
            imageView.setImageDrawable(drawableMap.get(urlString));
        }

        final Handler handler = new Handler() {
            @Override
            public void handleMessage(Message message) {
                imageView.setImageDrawable((Drawable) message.obj);
            }
        };

        Thread thread = new Thread() {
            @Override
            public void run() {
                //TODO : set imageView to a "pending" image
                Drawable drawable = fetchDrawable(urlString);
                Message message = handler.obtainMessage(1, drawable);
                handler.sendMessage(message);
            }
        };
        thread.start();
    }

    private InputStream fetch(String urlString) throws MalformedURLException, IOException {
        DefaultHttpClient httpClient = new DefaultHttpClient();
        HttpGet request = new HttpGet(urlString);
        HttpResponse response = httpClient.execute(request);
        return response.getEntity().getContent();
    }
}
share|improve this answer
13  
Thanks for this very nice piece of code. – Janusz Mar 18 '10 at 17:02
4  
Brilliant piece of code.Congrats and ty – weakwire Jul 14 '10 at 19:58
55  
I think you should use SoftReferences so that your program will never cause OutOfMemoryException. As GC can clear softreferences when heap size is increasing... you can manage your own generation like after some seconds you can put your images to that list and before loading you should check that if image exists then don't download it again rather collect it from that list and also putting it back to your softref list and after sometime you can purge your hardlist :) – AZ_ Jan 18 '11 at 8:08
16  
Google Shelves project is an excellent example look how they did code.google.com/p/shelves – AZ_ Jan 18 '11 at 8:09
7  
Don't you miss a return when drawableMap contains the image ... without starting the fetching-thread? – Karussell Mar 29 '11 at 22:06
show 10 more comments

I made a simple demo of a lazy list (located at GitHub) with images. It may be helpful to somebody. It downloads images in the background thread. Images are being cached on an SD card and in memory. The cache implementation is very simple and is just enough for the demo. I decode images with inSampleSize to reduce memory consumption. I also try to handle recycled views correctly.

Alt text

share|improve this answer
3  
Thank you, I'm using a slightly modified version of your code almost everywhere in my project: code.google.com/p/vimeoid/source/browse/apk/src/com/fedorvlasov/… – shaman.sir Oct 12 '10 at 18:18
2  
Has anyone looked at the code by Gilles Debunne as an alternative. The two big differences I see are 1) in memory caching vs SD card and 2) the use of AsyncTasks instead of a thread pool. android-developers.blogspot.com/2010/07/… – Richard Oct 29 '10 at 20:39
@Richard AsyncTask maintains it's own pool so no real difference there. – Joseph Earl May 7 '11 at 17:03
1  
There is a bug, sometimes it's fired:10-13 09:58:46.738: ERROR/AndroidRuntime(24250): Uncaught handler: thread main exiting due to uncaught exception 10-13 09:58:46.768: ERROR/AndroidRuntime(24250): java.lang.ArrayIndexOutOfBoundsException: Array index out of range: 0 10-13 09:58:46.768: ERROR/AndroidRuntime(24250): at java.util.Vector.elementAt(Vector.java:331) 10-13 09:58:46.768: ERROR/AndroidRuntime(24250): at java.util.Vector.get(Vector.java:445) 10-13 09:58:46.768: ERROR/AndroidRuntime(24250): at com.my.app.image.ImageLoader$PhotosQueue.Clean(ImageLoader.java:91) – Mikooos Oct 13 '11 at 8:02
17  
I would like to add for the newbies like me that if you want to add this code to your own project, you must add external cache permissions in the manifest. Thank You – Adam Nov 3 '11 at 22:29
show 11 more comments

I recommend my open source instrument Universal Image Loader. It is originally based on Fedor Vlasov's project LazyList and has been vastly improved since then.

It can:

  • asynchronously load and display images;
  • cache them in memory and/or on file system (SD card) if you need;
  • provide many configuration options for your needs.

share|improve this answer
14  
+1 Really great example and appreciate your work. – Paresh Mayani Feb 22 '12 at 13:07
11  
Congratulations for a really nice implementation. Very concrete, with good documentation, examples that work out-of-the-box and well written code. Very nice job Nostra, thank you :) – Sotiris Mar 2 '12 at 15:03
4  
if you are looking for great "image loading" code that its creator treats and maintains as his precious baby (not only a one time solution), u just found it; big ups Nostra – AndroidGecko Mar 29 '12 at 11:12
2  
UniversalImageLoader works wonder in our extreme case. Thank you so much. – ASH Apr 9 '12 at 13:31
2  
The most up to date project out there, cheers man – Romain Piel Sep 12 '12 at 8:34
show 17 more comments

Multithreading For Performance, a tutorial by Gilles Debunne.

This is from the Android Developers Blog. The suggested code uses:

  • AsyncTasks.
  • A hard, limited size, FIFO cache.
  • A soft, easily garbage collected cache.
  • A placeholder Drawable while you download.

enter image description here

share|improve this answer
2  
But it's built on Android 2.2(Froyo) ... – Adinia Feb 3 '11 at 10:04
8  
It works fine in 2.1 as well. Just don't use AndroidHttpClient. – Thomas Ahle Feb 5 '11 at 2:22
1  
@thomas-ahle Thank you, I saw AndroidHttpClient was giving errors in 2.1, as it's implemented from 2.2, but didn't really tried to find something else to replace it. – Adinia Feb 9 '11 at 8:02
2  
@Adina You are right, I forgot. However there is nothing in the recipe that can't just as well be done with a normal HttpClient. – Thomas Ahle Feb 22 '11 at 12:49
Still OOM remains... – Andro Selva May 7 '12 at 13:35

Thanks to James for the code, and Bao-Long for the suggestion of using SoftReference. I implemented the SoftReference changes on James' code. Unfortunately SoftReferences caused my images to be garbage collected too quickly. In my case it was fine without the SoftReference stuff, because my list size is limited and my images are small.

There's a discussion from a year ago regarding the SoftReferences on google groups: link to thread. As a solution to the too-early garbage collection, they suggest the possibility of manually setting the VM heap size using dalvik.system.VMRuntime.setMinimumHeapSize(), which is not very attractive to me.

public DrawableManager() {
    drawableMap = new HashMap<String, SoftReference<Drawable>>();
}

public Drawable fetchDrawable(String urlString) {
    SoftReference<Drawable> drawableRef = drawableMap.get(urlString);
    if (drawableRef != null) {
        Drawable drawable = drawableRef.get();
        if (drawable != null)
            return drawable;
        // Reference has expired so remove the key from drawableMap
        drawableMap.remove(urlString);
    }

    if (Constants.LOGGING) Log.d(this.getClass().getSimpleName(), "image url:" + urlString);
    try {
        InputStream is = fetch(urlString);
        Drawable drawable = Drawable.createFromStream(is, "src");
        drawableRef = new SoftReference<Drawable>(drawable);
        drawableMap.put(urlString, drawableRef);
        if (Constants.LOGGING) Log.d(this.getClass().getSimpleName(), "got a thumbnail drawable: " + drawable.getBounds() + ", "
                + drawable.getIntrinsicHeight() + "," + drawable.getIntrinsicWidth() + ", "
                + drawable.getMinimumHeight() + "," + drawable.getMinimumWidth());
        return drawableRef.get();
    } catch (MalformedURLException e) {
        if (Constants.LOGGING) Log.e(this.getClass().getSimpleName(), "fetchDrawable failed", e);
        return null;
    } catch (IOException e) {
        if (Constants.LOGGING) Log.e(this.getClass().getSimpleName(), "fetchDrawable failed", e);
        return null;
    }
}

public void fetchDrawableOnThread(final String urlString, final ImageView imageView) {
    SoftReference<Drawable> drawableRef = drawableMap.get(urlString);
    if (drawableRef != null) {
        Drawable drawable = drawableRef.get();
        if (drawable != null) {
            imageView.setImageDrawable(drawableRef.get());
            return;
        }
        // Reference has expired so remove the key from drawableMap
        drawableMap.remove(urlString);
    }

    final Handler handler = new Handler() {
        @Override
        public void handleMessage(Message message) {
            imageView.setImageDrawable((Drawable) message.obj);
        }
    };

    Thread thread = new Thread() {
        @Override
        public void run() {
            //TODO : set imageView to a "pending" image
            Drawable drawable = fetchDrawable(urlString);
            Message message = handler.obtainMessage(1, drawable);
            handler.sendMessage(message);
        }
    };
    thread.start();
}
share|improve this answer
2  
you can create generations like hard-generation and softgeneration. you can fix a time clear cache will clear all images that were not accessed in 3 sec.. you can have a look at google shelves project – AZ_ Jan 18 '11 at 8:06
developer.android.com/reference/java/lang/ref/… SoftReference doc has a note about caching, see "Avoid Soft References for Caching" section. Most applications should use an android.util.LruCache instead of soft references. – vokilam Feb 26 at 11:48

High performance loader - after examining the methods suggested here, I used Ben's solution with some changes -

  1. I realized that working with drawables is faster that with bitmaps so I uses drawables instead

  2. Using SoftReference is great, but it makes the cached image to be deleted too often, so I added a Linked list that holds images references, preventing from the image to be deleted, until it reached a predefined size

  3. To open the InputStream I used java.net.URLConnection which allows me to use web cache (you need to set a response cache first, but that's another story)

My code:

import java.util.Map; 
import java.util.HashMap; 
import java.util.LinkedList; 
import java.util.Collections; 
import java.util.WeakHashMap; 
import java.lang.ref.SoftReference; 
import java.util.concurrent.Executors; 
import java.util.concurrent.ExecutorService; 
import android.graphics.drawable.Drawable;
import android.widget.ImageView;
import android.os.Handler;
import android.os.Message;
import java.io.InputStream;
import java.net.MalformedURLException; 
import java.io.IOException; 
import java.net.URL;
import java.net.URLConnection;

public class DrawableBackgroundDownloader {    

private final Map<String, SoftReference<Drawable>> mCache = new HashMap<String, SoftReference<Drawable>>();   
private final LinkedList <Drawable> mChacheController = new LinkedList <Drawable> ();
private ExecutorService mThreadPool;  
private final Map<ImageView, String> mImageViews = Collections.synchronizedMap(new WeakHashMap<ImageView, String>());  

public static int MAX_CACHE_SIZE = 80; 
public int THREAD_POOL_SIZE = 3;

/**
 * Constructor
 */
public DrawableBackgroundDownloader() {  
    mThreadPool = Executors.newFixedThreadPool(THREAD_POOL_SIZE);  
}  


/**
 * Clears all instance data and stops running threads
 */
public void Reset() {
    ExecutorService oldThreadPool = mThreadPool;
    mThreadPool = Executors.newFixedThreadPool(THREAD_POOL_SIZE);
    oldThreadPool.shutdownNow();

    mChacheController.clear();
    mCache.clear();
    mImageViews.clear();
}  

public void loadDrawable(final String url, final ImageView imageView,Drawable placeholder) {  
    mImageViews.put(imageView, url);  
    Drawable drawable = getDrawableFromCache(url);  

    // check in UI thread, so no concurrency issues  
    if (drawable != null) {  
        //Log.d(null, "Item loaded from mCache: " + url);  
        imageView.setImageDrawable(drawable);  
    } else {  
        imageView.setImageDrawable(placeholder);  
        queueJob(url, imageView, placeholder);  
    }  
} 


private Drawable getDrawableFromCache(String url) {  
    if (mCache.containsKey(url)) {  
        return mCache.get(url).get();  
    }  

    return null;  
}

private synchronized void putDrawableInCache(String url,Drawable drawable) {  
    int chacheControllerSize = mChacheController.size();
    if (chacheControllerSize > MAX_CACHE_SIZE) 
        mChacheController.subList(0, MAX_CACHE_SIZE/2).clear();

    mChacheController.addLast(drawable);
    mCache.put(url, new SoftReference<Drawable>(drawable));

}  

private void queueJob(final String url, final ImageView imageView,final Drawable placeholder) {  
    /* Create handler in UI thread. */  
    final Handler handler = new Handler() {  
        @Override  
        public void handleMessage(Message msg) {  
            String tag = mImageViews.get(imageView);  
            if (tag != null && tag.equals(url)) {
                if (imageView.isShown())
                    if (msg.obj != null) {
                        imageView.setImageDrawable((Drawable) msg.obj);  
                    } else {  
                        imageView.setImageDrawable(placeholder);  
                        //Log.d(null, "fail " + url);  
                    } 
            }  
        }  
    };  

    mThreadPool.submit(new Runnable() {  
        @Override  
        public void run() {  
            final Drawable bmp = downloadDrawable(url);
            // if the view is not visible anymore, the image will be ready for next time in cache
            if (imageView.isShown())
            {
                Message message = Message.obtain();  
                message.obj = bmp;
                //Log.d(null, "Item downloaded: " + url);  

                handler.sendMessage(message);
            }
        }  
    });  
}  



private Drawable downloadDrawable(String url) {  
    try {  
        InputStream is = getInputStream(url);

        Drawable drawable = Drawable.createFromStream(is, url);
        putDrawableInCache(url,drawable);  
        return drawable;  

    } catch (MalformedURLException e) {  
        e.printStackTrace();  
    } catch (IOException e) {  
        e.printStackTrace();  
    }  

    return null;  
}  


private InputStream getInputStream(String urlString) throws MalformedURLException, IOException {
    URL url = new URL(urlString);
    URLConnection connection;
    connection = url.openConnection();
    connection.setUseCaches(true); 
    connection.connect();
    InputStream response = connection.getInputStream();

    return response;
}
}
share|improve this answer
This is good stuff ... – Joel Martinez Nov 10 '11 at 18:42
Works great! BTW there's a typo in the class name. – Mullins Dec 7 '11 at 14:25
4  
In case it saves someone else the time: import java.util.Map; import java.util.HashMap; import java.util.LinkedList; import java.util.Collections; import java.util.WeakHashMap; import java.lang.ref.SoftReference; import java.util.concurrent.Executors; import java.util.concurrent.ExecutorService; import android.graphics.drawable.Drawable; import android.widget.ImageView; import android.os.Handler; import android.os.Message; import java.io.InputStream; import java.net.MalformedURLException; import java.io.IOException; import java.net.URL; import java.net.URLConnection; – Michael Reed Jan 8 '12 at 5:01
Thanks very much, this is a nice implementation. I also put a different placeholder for when the drawable is being loaded so the user can get some feedback. – Juan Hernandez Feb 7 '12 at 15:53
5  
@MichaelReed, in case you're an Eclipse user, I recommend using Ctrl-Shift-O (that's the letter O, not the number 0). It automates the process of adding imports and organizes them for you. If you're on a Mac, use Command-Shift-O instead. – SilithCrowe Mar 20 '12 at 15:21
show 6 more comments

I've written a tutorial that explains how to do lazy-loading of images in a listview. I go into some detail about the issues of recycling and concurrency. I also use a fixed thread pool to prevent spawning a lot of threads.

http://negativeprobability.blogspot.com/2011/08/lazy-loading-of-images-in-listview.html

share|improve this answer

I have followed this Android Training and I think it does an excellent job at downloading images without blocking the main UI. It also handles caching and dealing with scrolling through many images: Loading Large Bitmaps Efficiently

share|improve this answer
4  
This should have way more votes. Yes, you can go out and use a library, but it doesn't help you understand what's going on or why this is a common issue in Android. Furthermore, there are lots of tutorials and libraries out there that are just horrible implementations of cachers, thrash the GC, or don't work. In addition to this answer, I'd recommend studying Google's own image cacher found in the IO app. It's a good implementation, and I find it less convoluted and more to the point than some of these other libraries. Plus, it's straight from the Android team! – mkuech Jan 31 at 5:01
I'm sorry, I only pointed to a single class for the Google IO app (and I'm too late to edit). You should really study all their image loading and caching utility classes that you can find in the same package as the cache class. – mkuech Jan 31 at 5:28
Would anyone recommend grabbing the DiskLruCache, Image*.java files from the iosched app's util folder to help with handling image loading/caching for list view? I mean it's definitely worth following the online Developer guides on the subject but these classes (from iosched) go a little further with the pattern. – Gautam Apr 25 at 16:58

The way I do it is by launching a thread to download the images in the background and hand it a callback for each list item. When an image is finished downloading it calls the callback which updates the view for the list item.

This method doesn't work very well when you're recycling views however.

share|improve this answer
using a thread for each image is the approach I use as well. If you separate your model from your view you can persist the model outside the Activity (like in your 'application' class) to keep them cached. Beware of running out of resources if you have many images. – James A Wilson Feb 15 '09 at 0:40
can you please elaborate. I am new to android development. Thanks for the tips though – lostInTransit Feb 15 '09 at 14:23
6  
Starting a new thread for each image is not an effective solution. You can end up with a lot of threads in memory and freezing UI. – Fedor Jul 1 '10 at 0:04
Fedor, agreed, I usually use a queue and a thread pool, that's the best way to go imo. – jasonhudgins Jul 4 '10 at 22:48

I just want to add one more good example, XML Adapters. As it's is used by Google and I am also using the same logic to avoid an OutOfMemory error.

Basically this ImageDownloader is your answer (as it covers most of your requirements). Some you can also implement in that.

share|improve this answer
1  
ImageDownloader class not get complied: see the solution below code.google.com/p/parleys-android-nextgen/issues/detail?id=1 – Sam Feb 4 '12 at 4:48

I think this issue is very popular among android developers and there are plenty of such libraries that claims to resolve this issue but only few of them seems to be on the mark. AQuery is one such library but better than most of them in all aspects and is worth trying for.

share|improve this answer

Have a look at Shutterbug, Applidium's lightweight SDWebImage (a nice library on iOS) port to Android. It supports asynchronous caching, stores failed URLs, handles concurrency well, and helpful subclasses are included.

Pull requests (and bug reports) are welcome, too!

share|improve this answer

Novoda also has a great lazy image loading library and many apps like Songkick, Podio, SecretDJ and ImageSearch use their library.

Their library is hosted here on Github and they have a pretty active issues tracker as well. Their project seems to be pretty active too, with over 300+ commits at the time of writing this reply.

share|improve this answer
Actually Novoda is a great library but...sometimes you don't need a huge library and only a simple approach of the solution. That is why LazyList in Github is so good, if your apps only shows an image in a listView and is not the main feature of your app, just another activity I would prefer to use something lightier. Otherwise if you know that you will have to use often and is part of the core, try Novoda. – Nicolas Jafelle Apr 15 at 15:34

check my fork of LazyList. Basically I improve the LazyList by delaying the call of the ImageView and create two methods: 1. When you need to put something like "Loading image..." 2. When you need to show the downloaded image.

Also improved the ImageLoader by implementing a Singleton in this object.

Check:

https://github.com/nicolasjafelle/LazyList

share|improve this answer

Well, Now image loading time from internet has many solution. You may also use this library "Android-Query" https://code.google.com/p/android-query/wiki/ImageLoading .It will give you all the required activity.Make sure what you want to do ? and read library wiki page. and solve image loading restriction.

This is my code:-

  @Override
    public View getView(int position, View convertView, ViewGroup parent) {
            View v = convertView;
            if (v == null) {
                LayoutInflater vi = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                v = vi.inflate(R.layout.row, null);
            }

             ImageView imageview = (ImageView) v.findViewById(R.id.icon);
                   AQuery aq = new AQuery(convertView);

                   String imageUrl = "http://www.vikispot.com/z/images/vikispot/android-w.png";

                  aq.id(imageview).progress(this).image(imageUrl, true, true, 0, 0, new BitmapAjaxCallback(){

                           @Override
                           public void callback(String url, ImageView iv, Bitmap bm, AjaxStatus status){

                               iv.setImageBitmap(bm);


                           }

                   });

            }
            return v;
    }

it should be solve your lazy loading

share|improve this answer

DroidParts has ImageFetcher that requires 0 configuration to get started.

  • Uses disk & in-memory lru cache.
  • Efficiently decodes images.
  • Supports modifying bitmaps in background thread.
  • Has simple cross-fade.
  • Has image loading progress callback.

Clone DroidPartsGram for an example:

enter image description here

share|improve this answer

protected by Will Jun 10 '11 at 13:26

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.