loopj / android-smart-image-view

Android ImageView replacement which allows image loading from URLs or contact address book, with caching
http://loopj.com/android-smart-image-view/
1.3k stars 510 forks source link

Use OkHttp #21

Open devesh opened 11 years ago

devesh commented 11 years ago

It handles caching and uses SPDY when possible.

devesh commented 11 years ago

http://square.github.io/okhttp/

devesh commented 11 years ago

Additionally, see the note in http://developer.android.com/training/displaying-bitmaps/cache-bitmap.html, which says that using SoftReferences for a bitmap cache as the current implementation does is not recommended.

devesh commented 11 years ago

Even easier, use http://corner.squareup.com/2013/05/picasso-one-dot-oh.html to take care of fetching and caching the image.