Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从 imageView 中的 URL 加载和缩放图像。
然后,当用户触摸该图像时,我想在其他 imageView 或 webView 中加载图像(无比例)。
问题是我不想加载图像两次。第一次,它下载到某个地方(缓存?),我想恢复没有做两个请求......
一些例子?建议?
谢谢
您应该考虑首先加载图像的缩略图,然后等待下载真实的图像,直到用户真正想要看到它。
缓存见LruChache
本教程应该有助于缓存:http ://codehenge.net/blog/2011/06/android-development-tutorial-asynchronous-lazy-loading-and-caching-of-listview-images/
如果您有很多图像,请考虑使用LruCache. 它有助于管理大量缓存数据。
LruCache