欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android webview 遇到android.os.FileUriExposedException错误解决办法

程序员文章站 2023-11-26 16:39:52
android webview 遇到android.os.fileuriexposedexception错误解决办法 1. 在 manifest 文件中添加:...

android webview 遇到android.os.fileuriexposedexception错误解决办法

1. 在 manifest 文件中添加:

<manifest ...> 
  <application ...> 
    <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> 
  </application> 
</manifest> 

2. 创建 xml 文件: res/xml/provider_paths.xml

<?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代码替换成新的api:

... 
imageuri = uri.fromfile(createimagefile()); 
 
 
replace with : 
 
 
file file = createimagefile(); 
        imageuri = fileprovider.geturiforfile(mactivity, mactivity.getpackagename() + ".provider", file); 
 
 
... 

如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!