vote up 4 vote down star
4

Hi

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.

Thanks.

flag

3 Answers

vote up 7 vote down check

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 drawableMap;

    public DrawableManager() {
    	drawableMap = new HashMap();
    }

    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");
    		drawableMap.put(urlString, drawable);
    		Log.d(this.getClass().getSimpleName(), "got a thumbnail drawable: " + drawable.getBounds() + ", "
    				+ drawable.getIntrinsicHeight() + "," + drawable.getIntrinsicWidth() + ", "
    				+ drawable.getMinimumHeight() + "," + drawable.getMinimumWidth());
    		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();
    }

}


link|flag
vote up 2 vote down

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.

link|flag
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 at 0:40
can you please elaborate. I am new to android development. Thanks for the tips though – lostInTransit Feb 15 at 14:23
vote up 0 vote down

James,

Thanks for the code. However, you should use a java.lang.ref.SoftReference in order to avoid the app to grow too fat in memory and risking it being killed by the OS.

Bao-Long

link|flag

Your Answer

Get an OpenID
or

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