35

我在使用新的 Volley 库实现图像缓存时遇到问题。在演示文稿中,代码如下所示

mRequestQueue = Volley.newRequestQueue(context);
mImageLoader = new ImageLoader(mRequestQueue, new BitmapLruCache());

BitmapLruCache 显然不包含在工具包中。知道如何实现它或向我指出一些资源吗?

http://www.youtube.com/watch?v=yhv8l9F44qo @14:38

谢谢!

4

5 回答 5

50
import android.graphics.Bitmap;
import android.support.v4.util.LruCache;

public class BitmapLruCache extends LruCache<String, Bitmap> implements ImageCache {
    public static int getDefaultLruCacheSize() {
        final int maxMemory = (int) (Runtime.getRuntime().maxMemory() / 1024);
        final int cacheSize = maxMemory / 8;

        return cacheSize;
    }

    public BitmapLruCache() {
        this(getDefaultLruCacheSize());
    }

    public BitmapLruCache(int sizeInKiloBytes) {
        super(sizeInKiloBytes);
    }

    @Override
    protected int sizeOf(String key, Bitmap value) {
        return value.getRowBytes() * value.getHeight() / 1024;
    }

    @Override
    public Bitmap getBitmap(String url) {
        return get(url);
    }

    @Override
    public void putBitmap(String url, Bitmap bitmap) {
        put(url, bitmap);
    }
}
于 2013-05-22T06:11:06.250 回答
7

Ficus 为 Bitmap LRU 提供了这个示例代码:

https://gist.github.com/ficusk/5614325

于 2013-05-24T21:29:29.757 回答
5

这是一个使用 Volley 的基于磁盘的 LRU 缓存的示例。它基于使用由 Jake Wharton 维护的 AOSP 的 DiskLruCache 版本。http://blogs.captechconsulting.com/blog/raymond-robinson/google-io-2013-volley-image-cache-tutorial

编辑:我已经更新了项目,将内存中的 LRU 缓存作为默认实现,因为这是推荐的方法。Volley 在其自己的 L2 缓存中隐式处理基于磁盘的缓存。图像缓存只是 L1 缓存。我更新了原始帖子并在此处添加了更多详细信息:http ://www.thekeyconsultant.com/2013/06/update-volley-image-cache.html 。

于 2013-06-03T12:49:29.763 回答
1

我的建议是使用单例位图缓存,以便在您的应用程序的整个生命周期中都可以使用此缓存。

public class BitmapCache implements ImageCache {
    private LruCache<String, Bitmap> mMemoryCache;

    private static BitmapCache mInstance;

    private BitmapCache(Context ctx) {
        final int memClass = ((ActivityManager) ctx
                .getSystemService(Context.ACTIVITY_SERVICE)).getMemoryClass();
        // Use 1/16th of the available memory for this memory cache.
        final int cacheSize = 1024 * 1024 * memClass / 16;
        mMemoryCache = new LruCache<String, Bitmap>(cacheSize) {
            @Override
            protected int sizeOf(String key, Bitmap value) {
                return value.getRowBytes() * value.getHeight();
            }
        };
    }

    public static BitmapCache getInstance(Context ctx) {
        if (mInstance == null) {
            mInstance = new BitmapCache(ctx);
        }
        return mInstance;
    }

    @Override
    public Bitmap getBitmap(String url) {
        return mMemoryCache.get(url);
    }

    @Override
    public void putBitmap(String url, Bitmap bitmap) {
        mMemoryCache.put(url, bitmap);
    }
}
于 2013-05-23T15:20:25.960 回答
0

这是处理 OOM 的新 API

public class BitmapMemCache extends LruCache<string, Bitmap> implements ImageCache {

    public BitmapMemCache() {
        this((int) (Runtime.getRuntime().maxMemory() / 1024) / 8);
    }

    public BitmapMemCache(int sizeInKiloBytes) {
        super(sizeInKiloBytes);
    }

    @Override
    protected int sizeOf(String key, Bitmap bitmap) {
        int size = bitmap.getByteCount() / 1024;
        return size;
    }

    public boolean contains(String key) {
        return get(key) != null;
    }

    public Bitmap getBitmap(String key) {
        Bitmap bitmap = get(key);
        return bitmap;
    }

    public void putBitmap(String url, Bitmap bitmap) {
        put(url, bitmap);
    }
}
于 2014-09-03T07:39:26.667 回答