android.os.FileUriExposedException: file://orage/emulated/0/temp.png exposed beyond app through ClipData.Item.getUri()
时间: 2023-07-19 21:03:24 浏览: 202
这个异常是由于在 Android 7.0 及以上版本中,系统引入了 FileProvider 来限制应用访问外部存储的安全性问题。如果你的应用需要共享文件,则必须使用 FileProvider 来共享文件。
你可以尝试以下解决方法:
1. 在 AndroidManifest.xml 文件中添加一个 FileProvider 的声明。
```xml
<application>
...
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths"/>
</provider>
...
</application>
```
2. 创建一个名为 file_paths.xml 的文件,并将其放置在 res/xml/ 目录下
```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. 在你的代码中,使用 FileProvider.getUriForFile() 方法来获取 Content URI:
```java
File file = new File("/orage/emulated/0/temp.png");
Uri uri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".fileprovider", file);
```
4. 最后,将 Content URI 放入 Intent 中:
```java
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("image/png");
intent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(Intent.createChooser(intent, "Share Image"));
```
这样就可以避免 FileUriExposedException 异常了。
阅读全文