I'm trying to display all contact list in my activity, what is the best way for showing/caching the contact photos? assuming I have 1000+ contacts and all of them have profile photo.
I already read about Google volley library but it's for loading pictures from HTTP.
Also, I've read the Caching Bitmaps in developer.com.
Thanks for the help
http://square.github.io/picasso/
...............................
File file = new File(uri);
Picasso.with(context).load(file).skipMemoryCache()
.placeholder(R.drawable.note_fold).into(holder.thumb);