Cancelling Image Requests using Picasso

suggest change

In certain cases we need to cancel an image download request in Picasso before the download has completed.

This could happen for various reasons, for example if the parent view transitioned to some other view before the image download could be completed.

In this case, you can cancel the image download request using the cancelRequest() method:

ImageView imageView; 

//......

Picasso.with(imageView.getContext()).cancelRequest(imageView);

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents