来自 getFilesDir() 的 FileProvider

FileProvider from getFilesDir()

Context.getFilesDir()对应的XML是什么?

我现在的 XML:

<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <files-path name="internal" path="." />
</paths>

文件创建:

File video = new File(getFilesDir(), "movie.mp4");
videoUri = FileProvider.getUriForFile(this, "my.package.name.provider", video);

XML,用于提供从getFilesDir()FileProvider的文件。

XML 应该是:

 <files-path
        name="avatar_image"
        path="camera" />

更多信息here