Android Objects Cache

后端 未结 7 1709
南旧
南旧 2020-12-14 23:14

Looking for a simple open source non-copyleft caching for Android (SDK 7+) class.

The purpose is primary to store the Bitmaps fetched asynchronously (so

7条回答
  •  既然无缘
    2020-12-14 23:57

    You can create your own image cache following this official android documentation that not only gives you the code, but also explains how it works:

    http://developer.android.com/training/displaying-bitmaps/cache-bitmap.html

    They also explain the whole process, from loading bitmaps, processing them in a background thread, caching them and displaying them

    http://developer.android.com/training/displaying-bitmaps/index.html

提交回复
热议问题