Volleyball vs Aqueria vs Android Async HTTP

I am wondering which libraries are better or faster. In my application, I use network request and image caching. I need to know which libraries are best.

+6
source share
2 answers

I have been using Aquery for three months, it’s a great library, and I recommend you use it,

https://github.com/androidquery/androidquery/releases/tag/0.26.8

https://code.google.com/p/android-query/wiki/AsyncAPI?tm=6

//load an image to an ImageView from network, cache image to file and memory aq.id(R.id.image1).image("http://www.vikispot.com/z/images/vikispot/android-w.png"); 
+1
source

The AsyncHTTP client has serious design issues, and you sometimes need to override several OnSuccess and onFailure methods to get an answer. A number of improvements are currently underway. Volley, on the other hand, seems to be having a memory leak problem: check out this post about leaking will-slow memory . However, I have been using it now for several weeks, this seems like the best option, and I myself have not experienced any memory leaks. It is also important to note that volleyball has better response time compared to Asynchttp, at least from a few tests that I did

0
source

Source: https://habr.com/ru/post/956281/


All Articles