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.
我已经在我的应用程序中实现了 AQuery 以进行图像加载。我还没有使用 Volley Image 缓存,想知道我是否也可以将它用于图像缓存。出于什么目的,Volley API 可能比 AQuery 更适合?
ImageCache如果您使用 Volley ,您将需要编写自己的实现。
ImageCache
如果您想要一个您可以控制最多的集成实现,请使用 Volley。GitHub 上可能已经有 ImageCache 的实现了。
如果您想要一种快速加载图像的方法,请使用 Android 通用图像加载器或 AQuery。如果您还没有尝试过,Android Universal Image Loader 可以很好地工作。
编辑
ImageCache 接口在这里有一个很好的实现:
https://github.com/rdrobinson3/VolleyImageCacheExample/blob/master/CaptechBuzz/src/com/captechconsulting/captechbuzz/model/images/BitmapLruImageCache.java
这需要支持库。