2

I looking for very fast Android image caching library. It's should support memory and disk caching, and also work fine with reusable views(such a ListView or GridView).

I've tried to use Picasso and UniversalImageLoader, but I want to add more speed. On the older devices GridView works slow. The problem is not in layout optimisation or heavy getView(int, View, ViewGroup) method, it's exactly in image cacher.

So what can you advise me on the basis of your experience?

bvitaliyg
  • 3,155
  • 4
  • 30
  • 46

1 Answers1

0

You can use Kaush's UrlImageViewHelper. It support image downloading, caching etc.

Vipul Purohit
  • 9,807
  • 6
  • 53
  • 76
  • Causes scroll lags in the GridView on Nexus 4 when image is loaded from disk or network. But surprisely works good on the old devices. – bvitaliyg Dec 25 '13 at 13:57