Android. Reduce data acquisition time.

I am using httpRequest in Android to retrieve and store data from an online store (e.g. lazada.com.my). Anyway, I noticed that it would take a few minutes for this method to complete the entire HTTPRequest. I was wondering if there is any other way to reduce the time it takes to fetch data from an internet site since there is no API provided like what eBay provided.

thank

+3


source to share


1 answer


Google Volley or Square Retrofit can help for a relaxed conversation. If you drop a lot of images, check out Square Picasso as well. Also you are throwing too much data at once. You can have a look at the Lazy Loader methodologies.



0


source







All Articles