2012-11-29 116 views
3

我對android非常陌生。我想開發一個應用程序的研究,其中點擊一個按鈕將清除Android設備中所有安裝的應用程序的緩存。我知道這種類型的應用程序可以在谷歌播放,但我想自己開發它。我嘗試下面的代碼,但它清除當前的一個應用程序的緩存內存並拋出空指針異常。我需要同時清除每個應用程序的緩存。請幫我提前解決這個problem.Thanks ..而不是把的Android:如何同時清除所有應用程序的緩存

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(); 
} 
+0

u能請幫助毫瓦如何ü解決這個問題? – user3233280

回答

-3

ClearApplicationData放像ClearApplicationDataAll或使其在那裏將針對所有應用程序。

+2

這個「答案」質量很差。你有什麼建議?發佈適當的代碼 - 「ClearApplicationData」只是OP的方法名稱。 – andr

+1

從不這樣回答。你沒有指定你的邏輯建議。更改方法名稱不影響代碼.. –

-1

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

相關問題