Skip to content

Instantly share code, notes, and snippets.

View sensen's full-sized avatar
Building Typing Hero - https://typinghero.app

sensen

Building Typing Hero - https://typinghero.app
View GitHub Profile
@sensen
sensen / LollipopBitmapMemoryCacheParamsSupplier.java
Created September 4, 2015 03:33
Fresco's custom BitmapMemoryCacheParamsSupplier for Lollipop devices
public class LollipopBitmapMemoryCacheParamsSupplier implements Supplier<MemoryCacheParams> {
private ActivityManager activityManager;
public LollipopBitmapMemoryCacheParamsSupplier(ActivityManager activityManager) {
this.activityManager = activityManager;
}
@Override
public MemoryCacheParams get() {