Skip to content

Instantly share code, notes, and snippets.

@nuhkoca
Created January 12, 2018 23:21
Show Gist options
  • Save nuhkoca/24b8a122551c9c253db0c4d441cf28c7 to your computer and use it in GitHub Desktop.
Save nuhkoca/24b8a122551c9c253db0c4d441cf28c7 to your computer and use it in GitHub Desktop.
@GlideModule
public class YourAppGlideModule extends AppGlideModule {
@Override
public void applyOptions(Context context, GlideBuilder builder) {
MemorySizeCalculator calculator = new MemorySizeCalculator.Builder(context)
.setMemoryCacheScreens(2)
.build();
builder.setMemoryCache(new LruResourceCache(calculator.getMemoryCacheSize()));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment