我在我的测试应用程序中使用fedor的延迟加载列表实现,我可以通过单击按钮清除缓存。如何在列表视图中获取已加载图像的缓存大小并以编程方式清除缓存?
以下是保存缓存图像的代码:
public ImageLoader(Context context){
//Make the background thead low priority. This way it will not affect the UI performance.
photoLoaderThread.setPriority(Thread.NORM_PRIORITY-1);
mAssetManager = context.getAssets();
//Find the dir to save cached images
if (android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED))
cacheDir = new File(android.os.Environment.getExternalStorageDirectory(),"LazyList");
else
cacheDir = context.getCacheDir();
if(!cacheDir.exists())
cacheDir.mkdirs();
}
修改
所以基本上我在clearCache()方法中添加了这段代码,但是当我滚动时我仍然看不到图像再次开始加载。
public void clearCache() {
//clear memory cache
long size=0;
cache.clear();
//clear SD cache
File[] files = cacheDir.listFiles();
for (File f:files) {
size = size+f.length();
if(size >= 200)
f.delete();
}
}
答案 0 :(得分:5)
要查找缓存目录的大小,请使用下面的代码。
public void clearCache() {
//clear memory cache
long size = 0;
cache.clear();
//clear SD cache
File[] files = cacheDir.listFiles();
for (File f:files) {
size = size+f.length();
f.delete();
}
}
这将返回字节数。
答案 1 :(得分:2)
这对我来说更准确:
private void initializeCache() {
long size = 0;
size += getDirSize(this.getCacheDir());
size += getDirSize(this.getExternalCacheDir());
}
public long getDirSize(File dir){
long size = 0;
for (File file : dir.listFiles()) {
if (file != null && file.isDirectory()) {
size += getDirSize(file);
} else if (file != null && file.isFile()) {
size += file.length();
}
}
return size;
}
答案 2 :(得分:1)
...并清除缓存,只需delete the directory并重新创建一个空缓存。
答案 3 :(得分:0)
在 Kotlin 中,您可以使用:
context.cacheDir.walkBottomUp().fold(0L, { acc, file -> acc + file.length() })
或定义为扩展函数
fun File.calculateSizeRecursively(): Long {
return walkBottomUp().fold(0L, { acc, file -> acc + file.length() })
}
// usage
val size = context.cacheDir.calculateSizeRecursively()