我使用下面的代码来分享一张图片,如果图片类型是png就可以了。但是我很惊讶如果图像类型是 jpeg 仍然可以。为什么?谢谢!
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Uri screenshotUri = Uri.parse("file://"+arrPath[i]);
sharingIntent.setType("image/png");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
startActivity(Intent.createChooser(sharingIntent, "Share image using"));