次のコードを使用して画像を共有します。画像の種類が png であれば問題ありません。しかし、画像の種類が jpeg であれば、それでも OK であることに非常に驚いています。なんで?ありがとう!
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"));