Android Java、FileProviders、getUriFromFile 失败,出现错误无法找到包含 /storage/1018-2710/Pictures/Sarx7IIJi-o.jpg 的已配置根目录

Android Java, FileProviders, getUriFromFile failed with error Failed to find configured root that contains /storage/1018-2710/Pictures/Sarx7IIJi-o.jpg

所以我一直在尝试通过电子邮件(或任何应用程序)发送我的图片。我使用 MediaStore API 将图像加载到我的应用程序中。我有他们的绝对路径 /storage/1018-2710/Pictures/Sarx7IIJi-o.jpg,但是当我尝试从他们那里获取 Uri 时,我收到一条错误消息 Failed to find configured root that contains /storage/1018-2710/Pictures/Sarx7IIJi-o.jpg

这是我的 AppManifest

    <provider
            android:name="androidx.core.content.FileProvider"
            android:authorities="com.nikolam.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/file_paths" />
        </provider>

还有我的 file_paths.xml,我有所有这些条目,所以我可以尝试正确调试它

<?xml version="1.0" encoding="utf-8"?>
<paths>
    <external-path
        name="external"
        path="." />
    <external-files-path
        name="external_files"
        path="." />
    <external-files-path
        name="external_files_pictures"
        path="storage/1018-2710/Pictures/" />
    <cache-path
        name="cache"
        path="." />
    <external-cache-path
        name="external_cache"
        path="." />
    <files-path
        name="files"
        path="." />
    <external-media-path name="media" path="." />
    <files-path name="my_images" path="images/"/>
</paths>

这是我尝试获取 URI 的地方

  {
           File myFile = new File(mViewModel.selectedImages.get(0).getmImageUrl());
           MimeTypeMap mime = MimeTypeMap.getSingleton();
           String ext = myFile.getName().substring(myFile.getName().lastIndexOf(".") + 1);
           String type = mime.getMimeTypeFromExtension(ext);
           Intent sharingIntent = new Intent("android.intent.action.SEND");
           sharingIntent.setType(type);
           Uri contentUri = getUriForFile(requireContext(), "com.nikolam.fileprovider", myFile);
           sharingIntent.putExtra("android.intent.extra.STREAM", contentUri);
           startActivity(Intent.createChooser(sharingIntent, "Share using"));
}

我尝试了许多不同的路径和配置,但 none 到目前为止都有效。

这是有问题的项目https://github.com/Nikola-Milovic/GalleryClone

我就是这样load images for reference

这是其中一张图片

/storage/1018-2710/Pictures/Sarx7IIJi-o.jpg

您的路径表明该文件位于可移动微型 SD 卡上。

遗憾的是,FileProvider 无法提供来自可移动媒体的文件。

你必须为此编写自己的 ContentProvider。