use of com.bumptech.glide.load.engine.cache.ExternalPreferredCacheDiskCacheFactory in project anitrend-app by AniTrend.
the class GlideAppModule method applyOptions.
@Override
public void applyOptions(@NonNull Context context, @NonNull GlideBuilder builder) {
boolean isLowRamDevice = CompatUtil.isLowRamDevice(context);
MemorySizeCalculator calculator = new MemorySizeCalculator.Builder(context).setMemoryCacheScreens(isLowRamDevice ? 2 : 3).build();
// Increasing cache & pool by 25% - default is 250MB
int memoryCacheSize = (int) (1.25 * calculator.getMemoryCacheSize());
int bitmapPoolSize = (int) (1.25 * calculator.getBitmapPoolSize());
int storageCacheSize = 1024 * 1024 * 350;
if (context.getExternalCacheDir() != null) {
long total = context.getExternalCacheDir().getTotalSpace();
storageCacheSize = (int) (total * 0.2);
}
builder.setMemoryCache(new LruResourceCache(memoryCacheSize));
builder.setBitmapPool(new LruBitmapPool(bitmapPoolSize));
builder.setDiskCache(new ExternalPreferredCacheDiskCacheFactory(context, storageCacheSize));
// Setting default params for glide
RequestOptions options = new RequestOptions().format(isLowRamDevice ? DecodeFormat.PREFER_RGB_565 : DecodeFormat.PREFER_ARGB_8888).timeout(KeyUtil.GLIDE_REQUEST_TIMEOUT).diskCacheStrategy(DiskCacheStrategy.AUTOMATIC).error(CompatUtil.getDrawable(context, R.drawable.ic_broken_image_white_48dp, R.color.colorStateOrange));
builder.setDefaultRequestOptions(options);
}
Aggregations