项目中出现这个问题是因为android 7.0版本在打开文件时,会出现该bug,在7.0以上的版本需要特殊的uri。
1.在AndroidManifest.xml中添加provider,如下
<!-- file provider -->
<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>
2.上面的provider中的@xml/provider_paths是我们需要创建的资源文件。即在res目录下去创建一个xml文件夹,添加资源provider_paths。
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path
name="external_files"
path="." />
</paths>
3.最后的引用修改
Uri fileURI;
if(Build.VERSION.SDK_INT > Build.VERSION_CODES.M ){
fileURI = FileProvider.getUriForFile(mParent, mParent.getApplicationContext().getPackageName() + ".provider", dfile);
}else{
fileURI = Uri.fromFile(dfile);
}