做一个笔记留着自己看
关于7.0访问相册或者访问文件资源时file:// URI 会触发FileUriExposedException。
因为7.0对权限做了限制。Google认为直接使用file://URI是不安全的。解决如下,就不多说什么了。假如有兴趣的话可以去看api关于FileProvider的介绍。
首先在res/xml下建立一个xml文件名字是file_paths。
<!-- path :代表设置的目录下一级目录<external-path path="images/"
整个目录为Environment.getExternalStorageDirectory()+"/images/"
-->
<?xml version="1.0" encoding="utf-8"?>
<paths>
<external-path path="" name="files_root" />
</paths>
然后在配置文件中
android:name="android.support.v4.content.FileProvider"
android:authorities="你的包名.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
然后版本判断使用
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
Uri contentUri = getUriForFile(this,"你的包名.fileprovider",file);
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.setDataAndType(contentUri, type);
startActivity(intent);
}
网友评论