Context.getFilesDir()の対応するXMLは何ですか?getFilesDir()からのFileProvider
私の現在のXML:
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<files-path name="internal" path="." />
</paths>
ファイルcreateion:
File video = new File(getFilesDir(), "movie.mp4");
videoUri = FileProvider.getUriForFile(this, "my.package.name.provider", video);
"stuff" 「内部」に変更します。 – greenapps