退出应用程序后如何删​​除我的应用程序缓存?

时间:2018-08-29 05:50:05

标签: android caching android-glide

是否有任何方法可以删除退出时的应用程序缓存,因为使用Glide从不同片段将图像加载到recylerview中,并且活动为应用程序生成了大量缓存。(不要使用磁盘缓存策略滑行,因为在运行时需要缓存)

1 个答案:

答案 0 :(得分:0)

如果您正在寻找自己应用程序的删除缓存,那么只需删除缓存目录即可!

public static void deleteCache(Context context) {
    try {
        File dir = context.getCacheDir();
        deleteDir(dir);
    } catch (Exception e) { e.printStackTrace();}
}


public static boolean deleteDir(File dir) {
    if (dir != null && dir.isDirectory()) {
        String[] children = dir.list();
        for (int i = 0; i < children.length; i++) {
            boolean success = deleteDir(new File(dir, children[i]));
            if (!success) {
                return false;
            }
        }
        return dir.delete();
    } else if(dir!= null && dir.isFile()) {
        return dir.delete();
    } else {
        return false;
    }
}