开发者

Images in ListView search results

I have a ListActivity that launches a task to hit a web service and display the results in a ListView. Each one of the results has an image ID attached to it.

I wrote a method that will get the image IDs of the rows displayed on screen (firstVisiblePosition() to lastVisiblePosition()) and launch a task to query another web service to get the images to display for those items. I call this method when the list's scroll state becomes SCROLL_STATE_IDLE. This makes it so the user can scroll and the task to get the images for the visible rows does not execute until the scrolling stops, preventing it from looking up images for off-screen rows.

My issue is that when the results initially show in the ListView, I can't find a good way to call my method to look up which image IDs to query for. Apparently, calling this method right after calling setAdapte开发者_StackOverflow社区r does not work (I'm guessing because some of the ListView's work happens asynchronously). I am using multiple Adapter's (for reasons not pertinent to this post), so I need a good way of waiting for the list items to show before I call my method to get the IDs.

Any ideas?


After you've set the adapter or called notifyDatasetChanged() on the adapter, add your "load images" code to the list's post queue as a Runnable:

list.post( new Runnable() {
    @Override
    public void run() {
    //do stuff
    }
  });


If I'm understanding your question right, you're having trouble loading images over the net and performance issues; if so,

I would create a simple image cache in my Adapter such as a local but global HashMap:

private HashMap<String, Drawable> imgCache = new HashMap<String, Drawable>();

then in my getView() method, I would asynchronously (using a Thread and a Handler) load the images and save loaded images in my imgCache by assigning position as the key and loaded images as Drawables.

final Handler h = new Handler() {
    public void handleMessage(Message msg) {
        if(msg.obj != null) {
            Drawable drawable = (Drawable)msg.obj;
            image.setImageDrawable(drawable);
            image.postInvalidate();
            image.requestLayout();
            imgCache.put(cacheKey, drawable);
        }
    }
};
loadImage(myImageView, imageURL, h); // threaded method which loads the images from net

also, in my getView() method I would first ask imgCache to see if the image already exist before loadImage is called.

This should optimize your list and rescue you from using multiple Adapter etc.

Hope this helps,

-serkan

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜