美文网首页
Android如何避免 context.getExternalC

Android如何避免 context.getExternalC

作者: 晖仔Milo | 来源:发表于2023-09-06 17:00 被阅读0次
            if (Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState())
                    || !Environment.isExternalStorageRemovable()) {
                if (context.getExternalCacheDir() != null) {
                    return context.getExternalCacheDir().getPath();
                } else {
                    return context.getCacheDir().getPath();
                }
            } else {
                return context.getCacheDir().getPath();
            }
    

    相关文章

      网友评论

          本文标题:Android如何避免 context.getExternalC

          本文链接:https://www.haomeiwen.com/subject/zhokvdtx.html