getExternalFilesDir()方法获取自己的存储地址时候内部文件外部无权访问,如果想暴露可以使用
Uri photoURI = FileProvider.getUriForFile(this,
"com.example.android.fileprovider",
photoFile);
来获取uri,详见https://developer.android.com/training/camera/photobasics.html#TaskCaptureIntent
网友评论