Android Fedor 的延迟加载将图像传递给其他活动
I m using Fedor's lazy Loader Adapter for showing images on a list view.
I want to pass the image(already downloaded) of the row which is clicked to new activity. I dont want to re download the image again.
How can this be done ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Fedor 的代码(根据我读到的内容)使用文件缓存和内存缓存来缓存下载的文件...
所以只需使用
并
注意:如果两者都返回
null
,那么您将拥有再次下载。Fedor's Code (from what i've read) uses a File Cache aswell as a Memory Cache to Cache the downloaded files...
So Simply use
and
Note : If both return
null
, then you'll have to download it again.