本文介绍了DiskLruCache从Android的教程缺少很多的方法。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

下面是磁盘缓存教程,我下面。我已经下载源$ C ​​$ c键DiskLruCache但在源$ C ​​$ C没有在本实施例中使用的方法都存在

Here is the disk cache tutorial I'm following. I've downloaded the source code to DiskLruCache but none of the methods used in this example exist in the source code.

我是否需要实现这些方法自己还是有一个版本DiskLruCache的我失踪的地方?

Do I need to implement these methods myself or is there a version of DiskLruCache that I'm missing somewhere?

推荐答案

您需要将包裹DiskLruCache用自己的高速缓存,提供更高层次的抽象。有人已经做到了这一点位图,请参阅Using DiskLruCache在安卓4.0不提供openCache方法

You will need to wrap the DiskLruCache with your own cache that offers higher level abstractions. Someone has already done this for bitmaps, see Using DiskLruCache in android 4.0 does not provide for openCache method

另外,你可以使用一个开源的库如毕加索。

Alternatively, you can use an open source library such as Picasso.

这篇关于DiskLruCache从Android的教程缺少很多的方法。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 13:33