FitAndroid7 icon indicating copy to clipboard operation
FitAndroid7 copied to clipboard

android8.0分享无法分享图片;

Open HanseyChan opened this issue 7 years ago • 2 comments

尝试在8.0的系统上分享图片的时候,分享的应用提示无法找到文件; 但是我在相册中分享是成功的;

HanseyChan avatar Jan 08 '18 03:01 HanseyChan

`

    Intent shareIntent = new Intent();
    shareIntent.setAction(Intent.ACTION_SEND);
    shareIntent.putExtra(Intent.EXTRA_STREAM, FileProvider7.getUriForFile(this, new File(imagePath)));
    shareIntent.setType("image/*");
    shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
    startActivity(Intent.createChooser(shareIntent, "分享到"));`

HanseyChan avatar Jan 08 '18 04:01 HanseyChan

+1,微信可以分享成功,但是TIM不可以

LeonShannon avatar Feb 07 '18 07:02 LeonShannon