Is it absolutely correct that Picasso understands NOT to load if the view has been recycled?
- 阅读更多 关于 Is it absolutely correct that Picasso understands NOT to load if the view has been recycled?
问题 I'm a little confused: as a rule when async loading images to some sort of list view (whether on Android or iOS or in the abstract on another platform), you essentially must do this .. -- make a note of "which" cell this is (say, #213) -- start getting the image from the net. -- it has loaded from the net. What cell are we now? -- if we are "still" 213, load the image to the image view! -- if we are "no longer" 213, just forget about it. this is a basic in lazy-loading async images. For