I have already implemented AQuery in the entire image upload application. I have not used Volley Image Image Caching yet and wondered if I can also use it for image caching. For what purposes is the Volley API better than AQuery?
You will need to write your own ImageCache implementation if you are using Volley.
ImageCache
If you need an integrated implementation that you control the most, use Volley. There is probably already an implementation for ImageCache on GitHub.
If you need a quick way to download images, use the Android Universal Image loader or AQuery. If you havenβt tried it yet, Android Universal Image Loader works quite well.
EDIT
Here's a good implementation of the ImageCache interface:
https://github.com/rdrobinson3/VolleyImageCacheExample/blob/master/CaptechBuzz/src/com/captechconsulting/captechbuzz/model/images/BitmapLruImageCache.java
This requires a support library.
Source: https://habr.com/ru/post/1495032/More articles:How to show different path-based content in Racket web servlets? - webDisable specific Django middleware during tests - djangoHow to get xml output from running grunt jasmine - junitC # OpenXML (Word) AutoFit to Window Table - c #Problem with Android paint on different APIs - androidOperation that may succeed / fail - return type and naming convention - c #Which constructor invokes this semantics? - c ++https://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1495035/c-array-error-expect-elements-to-be-initialized-but-they-are-not-and-my-setters-appear-not-to-work-sometimes&usg=ALkJrhjyFfMCAJrl4k7adOsJ2bVqEP3mVwUse RazorEngine IsolatedTemplateService with a recognizer? - razorengineThe error "Do not name type", but the class pointer already has a declaration forward? - c ++All Articles