Android中的Listview延迟负载平滑[重复]

问题描述 投票:0回答:2

我有一个显示产品的ListView。每个产品都有产品详细信息和一个ImageView,但是我的问题是对图像进行延迟加载产品。而且图像很高解析度。滚动时变成笨拙(不光滑)。因为下载图像需要时间。 Facebook有同样的方式他们的图像,但滚动很多更流畅的解决方案,请帮忙。

listview scroll bitmapimage bitmapfactory lazylist
2个回答
1
投票
public class BitmapCacheManager {
    private static LruCache<Object, Bitmap> cache = null;
    private final Context context;
    private static final int KB = 1024;
    private final Drawable placeHolder;


    public BitmapCacheManager(Context context) {
        this.context = context;
        placeHolder = context.getResources().getDrawable(R.drawable.unknown);
        int maxMemory = (int) (Runtime.getRuntime().maxMemory() / KB);
        int cacheSize = maxMemory / 7;
        cache = new LruCache<Object, Bitmap>(cacheSize) {
            @Override
            protected int sizeOf(Object albumId, Bitmap bitmap) {
                return (bitmap.getRowBytes() * bitmap.getHeight() / KB);
            }

            protected void entryRemoved(boolean evicted, Object key, Bitmap oldValue, Bitmap newValue) {
                oldValue.recycle();
            }
        };
    }

    public void addBitmapToMemoryCache(Object key, Bitmap bitmap) {
        if (bitmap != null && key != null && cache.get(key) == null)
            cache.put(key, bitmap);
    }

    public Bitmap getBitmapFromMemCache(Object key) {
        return cache.get(key);
    }

    public void loadBitmap(final Object key, final ImageView imageView) {
        final Bitmap bitmap = getBitmapFromMemCache(key);
        if (bitmap != null) {
            imageView.setImageBitmap(bitmap);
        } else {
            imageView.setImageDrawable(placeHolder);
            BitmapWorker task = new BitmapWorker(imageView);
            task.execute(key);
        }
    }

    private class BitmapWorker extends AsyncTask<Object, Void, Bitmap> {
        private final ImageView imageView;
        private Object key;

        public BitmapWorker(final ImageView imageView) {
            this.imageView = imageView;
        }

        @Implement
        protected Bitmap doInBackground(Object... params) {
            key = params[0];
            final Bitmap b = SomeClass.GetSomeBitmap(context, key);
            addBitmapToMemoryCache(key, b);
            return b;
        }

        @Override
        protected void onPostExecute(final Bitmap bitmap) {
            if (bitmap == null) {
                imageView.setImageBitmap(SomeClass.DefaultBitmap);
                return;
            }
            if (imageView.getTag().toString().equalsIgnoreCase(key.toString()) && !bitmap.isRecycled())
                imageView.setImageBitmap(bitmap);
        }
    }

}

并致电:

bitmapCacheManager.loadBitmap(somekey, someImageView);

1
投票
  1. 将虚拟图像添加到所有占位符,因此滚动可以顺利进行。
  2. 使用异步任务根据需要获取图像,并在准备好图像后将伪图像替换为正确的图像。
  3. 使用适当的命名约定缓存图像,并根据您的图像大小正确选择缓存大小。
© www.soinside.com 2019 - 2024. All rights reserved.