Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Volley vs Aquery vs Android Async HTTP

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

like image 631
fish40 Avatar asked Oct 18 '13 20:10

fish40


1 Answers

I have been using Aquery for three months now, It's great library and i recommend you to 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");
like image 185
zaPlayer Avatar answered Oct 23 '22 18:10

zaPlayer