BitmapCache(DiskCache diskCache) { this.diskCache = diskCache; this.memCache = new LRUCache <string, Bitmap> (10); }
public static BitmapCache CreateCache(Android.Content.Context ctx, string cacheName, string version = "1.0") { return(new BitmapCache(DiskCache.CreateCache(ctx, cacheName, version))); }
BitmapCache(DiskCache diskCache) { this.diskCache = diskCache; this.memCache = new LRUCache<string, Bitmap> (10); }