I need put effect blur in image, but when convert imageview into bitmap it is showing an error (NullPointerException).
See the code:
// mImages is a list of string (links http of images in web)
Picasso.with(mContext).load(mImages.get(position)).fit().centerInside().into(imageView);
Bitmap bitmap = ((BitmapDrawable) imageView.getDrawable()).getBitmap();