picasso: how to cancel all image requests made in an adapter

前端 未结 3 1984
情歌与酒
情歌与酒 2021-02-13 20:02

as usual we use an adapter to populate a listView. in the adapter we use picasso to load the images. i see that as rows are recycled when loading an image into an target (imageV

3条回答
  •  梦谈多话
    2021-02-13 20:55

    But only if you are not in a list/grid adapter! Requesting an image for the same imageview/target (e.g., in an adapter getView) will do this automatically. You should only need to cancel (and you don't actually need to) if you're making requests and then leaving the screen.

    https://github.com/square/picasso/issues/83

提交回复
热议问题