解决 Android N 上 报错:android.os.FileUriExposedException

前一段时间在调试项目拍照上传的时候,发现在 Android N 上 报错:android.os.FileUriExposedException

测试手机:小米5 

系统:MIUI8开发版,android 7.0

查资料后得知报错的原因是:Android N对访问文件权限收回,按照Android N的要求,若要在应用间共享文件,您应发送一项 content://URI,并授予 URI 临时访问权限。 
而进行此授权的最简单方式是使用 FileProvider类。

解决办法:

1、在AndroidManifest.xml中添加如下代码

        ...

	
    <provider
    	android:name="android.support.v4.content.FileProvider"
    	android:authorities="包名.fileProvider"
    	android:grantUriPermissions="true"
    	android:exported="false">
    	<meta-data
        	android:name="android.support.FILE_PROVIDER_PATHS"
        	android:resource="@xml/file_paths" />
	provider>

   

2、在res目录下新建一个xml文件夹,并且新建一个file_paths的xml文件(如下图)


file_paths的内容:

xml version="1.0" encoding="utf-8"?>
<paths>
    
    <external-path path="Android/data/com.lzy.imagepickerdemo/" name="files_root" />
    <external-path path="." name="external_storage_root" />
paths>
3、修改Uri,适配不同的系统
if (Build.VERSION.SDK_INT>=Build.VERSION_CODES.N){ 
    Uri photoURI = FileProvider.getUriForFile(context, context.getApplicationContext().getPackageName() + ".provider", file); 
}else { 
    Uri photoURI = Uri.fromFile(file); 
}
 
  
参考地址:http://stackoverflow.com/questions/38200282/android-os-fileuriexposedexception-file-storage-emulated-0-test-txt-exposed

你可能感兴趣的:(Android)