我正在尝试在我的活动中显示所有联系人列表,显示/缓存联系人照片的最佳方式是什么?假设我有1000多个联系人,所有人都有个人资料照片。
我已经阅读了Google volley library,但它是用于从HTTP加载图片。
另外,我已经阅读了developer.com中的Caching Bitmaps。
感谢您的帮助
答案 0 :(得分:3)
http://square.github.io/picasso/
...............................
File file = new File(uri);
Picasso.with(context).load(file).skipMemoryCache()
.placeholder(R.drawable.note_fold).into(holder.thumb);