Is there a way to listen for events from Picasso when using the builder like:
Picasso.with(getContext()).load(url).into(imageView);
I\'m trying
As a complement to other answers, in case you don't know where to use original image view, e.g. ImageView myIV:
Original:
Picasso.with(activity).load(url).into(myIV);
New (inside onBitmapLoaded() of new Target()):
public void onBitmapLoaded(Bitmap bitmap, Picasso.LoadedFrom from) {
myIV.setImageBitmap(bitmap);
}