android.os.FileUriExposedException: file:///storage/emulated/0/temp.png exposed beyond app through Intent.getData()
时间: 2023-07-09 10:55:43 浏览: 269
这个问题通常出现在 Android 7.0 及以上版本中,是由于 Android 7.0 引入了一项安全机制,禁止应用使用 file:// URI 访问其他应用或用户的文件。解决此问题的方法是使用 FileProvider 来共享文件。您可以按照以下步骤解决此问题:
1. 在 Manifest 文件中添加一个 FileProvider:
```
<application>
...
<provider
android:name="androidx.core.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>
```
2. 在 res/xml 文件夹中创建一个 provider_paths.xml 文件,指定要共享的文件路径:
```
<paths>
<external-path name="external_files" path="."/>
</paths>
```
3. 在代码中使用 FileProvider 获取文件的 URI:
```
File file = new File(getExternalFilesDir(null), "temp.png");
Uri uri = FileProvider.getUriForFile(this, BuildConfig.APPLICATION_ID + ".provider", file);
```
4. 在 Intent 中使用获取到的 URI:
```
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(uri, "image/*");
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(intent);
```
这样就可以避免出现文件 URI 暴露的问题。
阅读全文