Android7.0 FileUriExposedException 问题解决

Posted 静待花开*^_^*

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android7.0 FileUriExposedException 问题解决相关的知识,希望对你有一定的参考价值。

一、 FileUriExposedException 的原因

android7.0不识别uri以file://开头,要将其转换为content://才能识别uri

二、如何解决

1.xml的创建:

file_paths.xml中编写该Provider对外提供文件的目录:文件放置在res/xml/下。 为了避免和其它app冲突,最好带上自己app的包名。

文件内容:

<?xml version="1.0" encoding="utf-8"?>
<paths>
<external-path path="." name="external_storage_root" />
</paths>

内部的element可以是files-path,cache-path,external-path,external-files-path,external-cache-path,分别对应Context.getFilesDir(),Context.getCacheDir(),Environment.getExternalStorageDirectory(),Context.getExternalFilesDir(),Context.getExternalCacheDir()等几个方法。后来翻看源码发现还有一个没有写进文档的,但是也可以使用的element,是root-path,直接对应文件系统根目录。不过既然没有写进文档中,其实还是有将来移除的可能的。使用的话需要注意一下风险。

2.Manifests.xml中配置

<manifest>

   ...

  <application>

     ...

    <provider
    android:name="android.support.v4.content.FileProvider"
    android:authorities="${APPLICATION_ID}"
    android:exported="false"
    android:grantUriPermissions="true">
      <meta-data
      android:name="android.support.FILE_PROVIDER_PATHS"
      android:resource="@xml/file_paths"/>
    </provider>

    ...

  </application>

</manifest>

3.Uri使用

1)getUriForFile方法转换:

public static Uri getUriForFile(Context context, File file) {
return FileProvider.getUriForFile(context, GB.getCallBack().getApplicationId(), file);
}

//第二个参数是manifest中定义的`authorities`:因为当时file_paths.xml中赋值为.,故第二个参数是:"com.up366.mobile.fileProvider"

2)intent加Flags

intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);

注:获取本地图片,没有uri就不用写

完成。

 

 

 

 

 


以上是关于Android7.0 FileUriExposedException 问题解决的主要内容,如果未能解决你的问题,请参考以下文章

Android7.0 FileUriExposedException 问题解决

Android7.0打包安装问题

Android7.0下载Apk自动安装

Android7.0 Phone应用源码分析 phone拒接流程分析

Android7.0 Phone应用源码分析 phone来电流程分析

android7.0 怎样启动service