Example usage for android.support.v4.util LruCache subclass-usage

List of usage examples for android.support.v4.util LruCache subclass-usage

Introduction

In this page you can find the example usage for android.support.v4.util LruCache subclass-usage.

Usage

From source file me.andgeek.develop.net.BitmapLruCache.java

public class BitmapLruCache extends LruCache<String, Bitmap> implements ImageCache {
    public BitmapLruCache(int maxSize) {
        super(maxSize);
    }

    @Override

From source file dev.dworks.apps.anexplorer.misc.ThumbnailCache.java

public class ThumbnailCache extends LruCache<Uri, Bitmap> {
    public ThumbnailCache(int maxSizeBytes) {
        super(maxSizeBytes);
    }

    @Override

From source file com.lib.volley.BitmapLruCache.java

public class BitmapLruCache extends LruCache<String, Bitmap> implements ImageCache {
    public BitmapLruCache(int maxSize) {
        super(maxSize);
    }

    @Override

From source file github.volley.BitmapLruCache.java

public class BitmapLruCache extends LruCache<String, Bitmap> implements ImageCache {
    public BitmapLruCache(int maxSize) {
        super(maxSize);
    }

    @Override

From source file com.android.volley.examples.toolbox.BitmapLruCache.java

public class BitmapLruCache extends LruCache<String, Bitmap> implements ImageCache {
    public BitmapLruCache(int maxSize) {
        super(maxSize);
    }

    @Override

From source file com.yao.app.api.BitmapLruCache.java

public class BitmapLruCache extends LruCache<String, Bitmap> implements ImageCache {
    public BitmapLruCache(int maxSize) {
        super(maxSize);
    }

    @Override

From source file com.LAW.lift.model.BitmapLruCache.java

public class BitmapLruCache extends LruCache<String, Bitmap> implements ImageCache {
    public BitmapLruCache(int maxSize) {
        super(maxSize);
    }

    @Override

From source file com.bdevlin.apps.utils.BitmapLruCache.java

public class BitmapLruCache extends LruCache<String, Bitmap> implements ImageCache {
    public BitmapLruCache(int maxSize) {
        super(maxSize);
    }

    @Override

From source file com.example.faceapp.BitmapLruCache.java

public class BitmapLruCache extends LruCache<String, Bitmap> implements ImageCache {
    public BitmapLruCache(int maxSize) {
        super(maxSize);
    }

    @Override

From source file com.mapgoo.zero.api.BitmapLruCache.java

public class BitmapLruCache extends LruCache<String, Bitmap> implements ImageCache {
    public BitmapLruCache(int maxSize) {
        super(maxSize);
    }

    @Override