gpt4 book ai didi

Android:如何同时清除所有应用程序的缓存

转载 作者:太空狗 更新时间:2023-10-29 15:29:09 25 4
gpt4 key购买 nike

我是 android 的新手。我想开发一个用于研究的应用程序,单击一个按钮将清除 android 设备中所有已安装应用程序的缓存内存。我知道这种类型的应用程序可以在 google play 上使用,但我想自己开发它。我尝试了以下代码,但它清除了当前一个应用程序的缓存内存并抛出空指针异常。我需要同时清除每个应用程序的缓存内存。请帮我解决这个问题。提前致谢..

Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);

mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);

List<ResolveInfo> mainList = getPackageManager().queryIntentActivities(mainIntent, 0);

Context context;

for(ResolveInfo rInfo : mainList)
{

String packageName = rInfo.activityInfo.applicationInfo.packageName;

context = createPackageContext(packageName, Context.CONTEXT_IGNORE_SECURITY);

clearApplicationData(context);

}

public void clearApplicationData(Context context) {

if(context.getCacheDir()!=null)
{

File cache = context.getCacheDir();


File appDir = new File(cache.getParent());
if(appDir.exists()){
String[] children = appDir.list();
for(String s : children){
if(!s.equals("lib")){
deleteDir(new File(appDir, s));
Log.i("TAG", "File /data/data/APP_PACKAGE/" + s +" DELETED");
}
}
}
}
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();
}

最佳答案

private void clearAllCache() {
PackageManager pm = getPackageManager();
Method[] methods = pm.getClass().getDeclaredMethods();
for (Method m : methods) {
if (m.getName().equals("freeStorage")) {
try {
long desiredFreeStorage = Long.MAX_VALUE;
m.invoke(pm, desiredFreeStorage , null);
} catch (Exception e) {
e.printStackTrace();
}
break;
}
}
}

关于Android:如何同时清除所有应用程序的缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13622690/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com