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