devflow
Results
2
comments of
devflow
Please show your error stacktraces.
You can blurring downloaded image with picasso. ``` Picasso.with(getContext()).load("image").transform(new Transformation() { @Override public Bitmap transform(Bitmap bitmap) { Bitmap b = Blur.fastblur(getContext(), bitmap, 13); bitmap.recycle(); return b; } @Override public String...