• Stars
    star
    290
  • Rank 142,981 (Top 3 %)
  • Language
    Java
  • Created over 11 years ago
  • Updated over 9 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A basic twitter feed reader that uses Volley and DiskLRUCache to cache user profile images.

Volley Image Cache

An Android application that demonstrates how to implement a memory based and disk based L1 image cache with the the Volley library. The default implementation uses an in-memory cache (as recommended in the Volley comments) but there is a disk based implementation as well. You can change the implementation by altering the MainApplicatin file and passing in the desired Enum value for the cache type. This code demo has a companion blog post, Google I/O 2013: Volley Image Cache Tutorial, which goes over the components and architecture used in this demo.