【发布时间】:2023-03-24 09:21:01
【问题描述】:
目前,FileProvider getUriForFile 方法在文件位于外部 SD 时会生成 IllegalArgumentException
当文件在设备内存中(/storage/emulated/0 下)时,它可以正常工作。
Uri videoUri = FileProvider.getUriForFile(this,
getApplicationContext().getPackageName() + ".provider",
new File(videoPath));
这里 videoPath 具有以下值:
videoPath = /storage/extSdCard/Android/data/com.podcastcutter.debug/files/episodeMp3/TEDTalks (video)/Why you should love statistics - Alan Smith.mp4
我的清单文件包含:
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
这里是provider_paths:
<external-path name="external_files" path="."/>
如何修改 FileProvider 配置来解决这个问题?
提前致谢。
产生异常:
java.lang.IllegalArgumentException: Failed to find configured root that contains /storage/extSdCard/Android/data/com.podcastcutter.debug/files/episodeMp3/TEDTalks (video)/Why you should love statistics - Alan Smith.mp4
android.support.v4.content.FileProvider$SimplePathStrategy.getUriForFile(FileProvider.java:711)
android.support.v4.content.FileProvider.getUriForFile(FileProvider.java:400)
其他配置信息:
compileSdkVersion 25
buildToolsVersion "23.0.3"
minSdkVersion 16
targetSdkVersion 25
support libraries version : 25.1.1
【问题讨论】:
-
你最好扩展 ContentProvider 类。然后,您可以从每个存储位置提供文件。更加灵活。
标签: android android-sdcard android-fileprovider