我在我的应用中使用Firebase实时数据库。我想使用keepSynced
方法并将其设置为true
,但是问题是由于某些原因,我正在页面onCreate
中清除应用程序中的缓存。所以我想知道我是否将此顺序与我的方法一起使用,它将重新下载所有数据或会发生什么情况
这是用于清除缓存的方法:
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;
}
}