异步从SDCard的Listview中的图库视图中加载图像

时间:2012-05-29 10:10:17

标签: android android-listview android-gallery android-lazyloading

我正在尝试在ListView中的galleryViews中显示图像。我正在从服务器下载图像到SDCard,然后显示它,首先我检查缓存中的图像,如果图像不存在,那么我从sdcard加载它。

当用户第一次启动应用程序时,我从服务器下载图像并将其保存到SD卡中,同时显示仅包含文本的活动

我想如果sdcard中没有图像,下载图像后,一旦图像下载就应该显示图像就是我正在做的事情。

public class AsyncImageLoader {
   private boolean isImageView;
   private final LinkedHashMap<String, Bitmap> cache = 
      new LinkedHashMap<String, Bitmap>(60, (float) 1.0, true);


Handler handler = new Handler() {

@Override
public void handleMessage(Message msg) {
  super.handleMessage(msg);

  LoadImageFromSdCard loadImage = (LoadImageFromSdCard) msg.obj;
  if (isImageView) {
    loadImage.imageView.setImage(loadImage.bmp);
  } else {
     Thread thread = new Thread(new LoadImageFromSdCard(loadImage.uri,  loadImage.imageView));
     try {
         Log.i("AsyncImageLoader", "SECOND THREAD STARTED");
        Thread.sleep(10000);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
     thread.start();
   }
  }
};


public Bitmap loadImage(String uri,
  ImageTextComboControl imageView) {
if (cache.containsKey(uri)) {
  return cache.get(uri);
} else {
  handler.post(new LoadImageFromSdCard(uri, imageView));
}

return null;
}

private class LoadImageFromSdCard implements Runnable {

 String uri;    
 ImageTextComboControl imageView;
 ImageView image;
 Bitmap bmp = null;

 public LoadImageFromSdCard(String uri, ImageTextComboControl imageView) {
  this.uri = uri;
  this.imageView = imageView;
 }

public void run() {
  FileInputStream fis;
  try {
    fis = new FileInputStream(new File(uri));
  } catch (FileNotFoundException e) {
    e.printStackTrace();
    return;
  }
  bmp = BitmapFactory.decodeStream(fis);
  if (imageView != null) {
    isImageView = true;
    cache.put(uri, bmp);
    Message message = new Message();
    message.obj = this;
    handler.sendMessage(message);
  } 

  }
 }
}

感谢名单

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:1)

我使用适配器中的onContentChanged()方法解决了我的问题。我正在将图像保存到sdCard并获取sdCard路径将其保存到sqlite数据库中,因此当sqlite数据库中的数据发生变化时,会调用onContentChanged方法,因为我正在使用Cursor Adapter。