解决 android.os.FileUriExposedException异常

本人在做分享图片的时候在华为mate 10  系统是android 8.0 上报错 android.os.FileUriExposedException

解决方法

1.0在清单文件Androidmaninfest.xml添加如下代码

<provider
    android:name="android.support.v4.content.FileProvider"
    android:authorities="app的包名.fileProvider"
    android:grantUriPermissions="true"
    android:exported="false">
    <meta-data
        android:name="android.support.FILE_PROVIDER_PATHS"
        android:resource="@xml/file_paths" />
</provider>
注意:
authorities:app的包名.fileProvider
grantUriPermissions:必须是true,表示授予 URI 临时访问权限
exported:必须是false
resource:中的@xml/file_paths是我们接下来要添加的文件

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

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-path name="my_images" path="Android/data/com.cccollector.bookstore.rongbaozhai.android/files/users" />
</paths>

3.0  具体diamante如下 兼容7.0以上版本

 Bitmap shareBitmap = CacheUtil.pdfToBitmap(format, currentPage - 1, muPDFCore);
                        CacheUtil.cachePhoto2(shareBitmap);
                        File file = CacheUtil.getFile();
                        //解决 Android N 7.0 上 报错:android.os.FileUriExposedException
                        //判断是否是AndroidN以及更高的版本
                        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
                            Intent intent = new Intent(Intent.ACTION_VIEW);
                            intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
                            Uri contentUri = FileProvider.getUriForFile(getApplicationContext(), BuildConfig.APPLICATION_ID + ".fileProvider", file);
                            intent.setDataAndType(contentUri, "application/vnd.android.package-archive");
                            intent.setAction(Intent.ACTION_SEND);
                            intent.putExtra(Intent.EXTRA_STREAM, contentUri);
                            intent.setType("image/*");
                            startActivity(Intent.createChooser(intent, "分享到"));
                        } else {
                            Uri imageUri = Uri.fromFile(file);
                        Intent shareIntent = new Intent();
                        shareIntent.setAction(Intent.ACTION_SEND);
                        shareIntent.putExtra(Intent.EXTRA_STREAM, imageUri);
                        shareIntent.setType("image/*");
                      // shareIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                       startActivity(Intent.createChooser(shareIntent, "分享到"));
                        }




评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值