user2550078
user2550078

Reputation: 11

fastest way of downloading multiple images in android

I am facing an issue with downloading images from server. I tried webservice and direct url downloading of images. I found direct downloading is much slower when we have large number of images to be downloaded. Can anyone refer me,which is the fastest way of downloading images for an android application.

Thanks

Upvotes: 0

Views: 781

Answers (2)

Flavio Capaccio
Flavio Capaccio

Reputation: 706

I use this https://code.google.com/p/android-query/ but I'm curious to know if there is something better!

Upvotes: 0

Vikram Singh
Vikram Singh

Reputation: 1806

There is a good tutorial and sample application (BitmapFun) by Google: http://developer.android.com/training/displaying-bitmaps/index.html

You can get a lot of insights on how to load multiple images asynchronously and fast.

Upvotes: 1

Related Questions