Skip to content

Instantly share code, notes, and snippets.

View hunnihundert's full-sized avatar

Hoon Jung hunnihundert

View GitHub Profile
@adavis
adavis / blur_darken_transform
Last active December 23, 2020 22:51
This is a Picasso transform that blurs and darkens an image.
private final class BlurTransform implements Transformation {
WeakReference<Context> context;
public BlurTransform(Context context) {
super();
this.context = new WeakReference<>(context);
}
@Override