I am using Picasso library. I know that there is a call back method if i am loading a picture from a URL into an image view. But i don't want to load into an imageview. Instead, i want save it as a bitmap. so i used below code
Bimap bmp=Picasso.with(getActivity()).load(urlString).get();
How can i get a callback method for this to know that my image is downloaded successfully using picasso?
Dont say that null check for bitmap object. It causes error.