Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

something similar to SDWebImage in iOS for Android?

Tags:

android

ios

I was looking for something similar to SDWebImage for Android. What SDWebImage does in iOS is this:

load images from URL, uses cache, does asynchronous downloading.

I am looking for something similar for Android. Any hint ?

Thanks.

like image 682
ahsan Avatar asked Sep 07 '11 23:09

ahsan


People also ask

What is SDWebImage in IOS?

SDWebImage Public. Asynchronous image downloader with cache support as a UIImageView category.

What is the preferred library for Android developers to load images?

You can use these libraries in your app to load images in the most optimized manner. We recommend the Glide library, which loads and displays images as quickly and smoothly as possible. Other popular image loading libraries include Picasso from Square, Coil from Instacart, and Fresco from Facebook.

Which library do we use to display images from Internet in Android?

Glide is an Image Loader Library in Android developed by bumptech and is a library that is backed by Google.

How do I make pictures faster on Glide Android?

Skip Memory Cache This will make Glide allow the loaded resource to skip the cache memory. Here is a code snippet: Note that this applies only to memory cache. Glide will still cache the loaded image on the disk to avoid another network request.


2 Answers

Something simple that I'm using for a project is called Picasso:

https://github.com/square/picasso

I use SDWebImage in my iOS side of the project and Picasso is just as easy.

like image 120
VodkaTonic Avatar answered Nov 15 '22 21:11

VodkaTonic


At Applidium, we recently ported SDWebImage to Android. It's called Shutterbug, and it does everything you asked for.

Here is a link to the project: https://github.com/applidium/Shutterbug. Enjoy!

like image 28
PatrickNLT Avatar answered Nov 15 '22 22:11

PatrickNLT