1

我有一个列表视图,其中的图像是从互联网加载的,然后缓存在磁盘上。滚动时,我正在尝试使用 ExecutorService 在后台线程中从磁盘加载图像(因为滚动时会有多个图像) - 如下所示:

executorService.submit(new Runnable() {
    @Override
    public void run() {
           // load images from the disk
           // reconnect with UI thread using handler
        }
}

但是,滚动一点也不流畅,而且非常生涩——好像 UI 线程在某个地方被阻塞了。但是当我评论这个给定的代码时,滚动是平滑的。我无法理解我的实施中的缺陷。

编辑:刚才我发现当我将消息从后台线程传递给 UI 线程时,问题正在发生。如果我评论那部分,滚动是平滑的(但当然不显示图像)

4

1 回答 1

1

您可以使用延迟加载或通用图像加载器

延迟列表是使用 url 从 sdcard 或 fomr 服务器延迟加载图像。这就像按需加载图像。

图像可以缓存到本地sd卡或手机内存。Url 被认为是关键。如果密钥存在于 sdcard 中,则显示来自 sd 卡的图像,否则通过从服务器下载显示图像并将其缓存到您选择的位置。可以设置缓存限制。您还可以选择自己的位置来缓存图像。缓存也可以清除。

而不是用户等待下载大图像然后显示惰性列表按需加载图像。由于图像区域缓存,您可以离线显示图像。

https://github.com/thest1/LazyList。懒惰列表

在你的 getview

imageLoader.DisplayImage(imageurl, imageview); ImageLoader Display method

public void DisplayImage(String url, ImageView imageView) //url and imageview as parameters
{
imageViews.put(imageView, url);
Bitmap bitmap=memoryCache.get(url);   //get image from cache using url as key
if(bitmap!=null)         //if image exists
imageView.setImageBitmap(bitmap);  //dispaly iamge
else   //downlaod image and dispaly. add to cache.
{
queuePhoto(url, imageView);
imageView.setImageResource(stub_id);
}
}

惰性列表的替代方法是通用图像加载器

https://github.com/nostra13/Android-Universal-Image-Loader

它基于惰性列表(工作原理相同)。但它还有很多其他配置。我更喜欢使用 Universal Image Loader,因为它为您提供了更多配置选项。如果下载失败,您可以显示错误图像。可以显示带圆角的图像。可以缓存在磁盘或内存上。可以压缩图像。

在您的自定义适配器构造函数中

 File cacheDir = StorageUtils.getOwnCacheDirectory(a, "your folder");

// Get singletone instance of ImageLoader
imageLoader = ImageLoader.getInstance();
// Create configuration for ImageLoader (all options are optional)
 ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(a)
  // You can pass your own memory cache implementation
 .discCache(new UnlimitedDiscCache(cacheDir)) // You can pass your own disc cache implementation
 .discCacheFileNameGenerator(new HashCodeFileNameGenerator())
 .enableLogging()
 .build();
 // Initialize ImageLoader with created configuration. Do it once.
 imageLoader.init(config);
 options = new DisplayImageOptions.Builder()
 .showStubImage(R.drawable.stub_id)//display stub image
 .cacheInMemory()
 .cacheOnDisc()
 .displayer(new RoundedBitmapDisplayer(20))
 .build();

在你的 getView()

ImageView image=(ImageView)vi.findViewById(R.id.imageview); 
imageLoader.displayImage(imageurl, image,options);//provide imageurl, imageview and options

您可以配置其他选项以满足您的需求。

与延迟加载/通用图像加载器一起,您可以查看持有者以实现平滑滚动和性能

http://developer.android.com/training/improving-layouts/smooth-scrolling.html

于 2013-04-08T10:23:39.873 回答