缓存联系人照片的最佳方式

时间:2014-02-03 09:16:14

标签: android caching bitmap android-volley lru

我正在尝试在我的活动中显示所有联系人列表,显示/缓存联系人照片的最佳方式是什么?假设我有1000多个联系人,所有人都有个人资料照片。

我已经阅读了Google volley library,但它是用于从HTTP加载图片。

另外,我已经阅读了developer.com中的Caching Bitmaps

  1. 这两者之间有什么不同?
  2. 我应该使用什么来加载联系人个人资料图片?
  3. 感谢您的帮助

1 个答案:

答案 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);