如何清除android中所有其他已安装应用程序的缓存

时间:2015-04-02 15:10:42

标签: android

我想清除所有其他已安装应用程序的缓存。请给我一些问题的解决方案。

1 个答案:

答案 0 :(得分:0)

简单的回答:

你不能。

更复杂/准确的答案

权限android.permission.GET_TASKS签名级权限,可以允许应用执行此操作。但是,由于它是签名级权限,因此它意味着它只能用于系统/固件应用程序。

编辑:

我似乎误解了这个问题 - 如果你试图清除缓存的应用程序(即最近的应用程序),上述内容是有效的

要清除所有已安装的应用程序缓存,下面的答案(基于this之前的答案)显然是正确的 - 请注意答案错误尝试调用freeStorage而不是freeStorageAndNotify反思:

PackageManager  pm = getPackageManager();
// Get all methods on the PackageManager
Method[] methods = pm.getClass().getDeclaredMethods();
for (Method m : methods) {
    if (m.getName().equals("freeStorageAndNotify")) {
        // Found the method I want to use
        try {
            long desiredFreeStorage = 8 * 1024 * 1024 * 1024; // Request for 8GB of free space
            m.invoke(pm, desiredFreeStorage , null);
        } catch (Exception e) {
            // Method invocation failed. Could be a permission problem
        }
        break;
    }
}

另外,请务必向AndroidManifest.xml添加以下权限:

<uses-permission android:name="android.permission.CLEAR_APP_CACHE"/>