Android获取APP缓存大小
APP设置中需要用到获取APP的缓存大小。下面是我简单封装的一个获取APP存储的类供大家参考;public class CacheUtils { public static CacheUtils instance = null; public static CacheUtils getInstance() { if (instance == null) { synchronized (CacheUtils.class) { ...