Example #1
0
 public static BitmapCache CreateCache(Android.Content.Context ctx, string cacheName, string version = "1.0")
 {
     return(new BitmapCache(DiskCache.CreateCache(ctx, cacheName, version)));
 }
Example #2
0
 public static BitmapCache CreateCache(Context ctx, string cacheName, string version = "1.0", bool useRoundCorners = true)
 {
     return(new BitmapCache(ctx, DiskCache.CreateCache(ctx, cacheName, version), useRoundCorners));
 }