我正在尝试将图像发送到其他应用程序,但使用此代码不起作用。(删除文件或显示文件的其他操作,有效)
ByteArrayOutputStream bos = new ByteArrayOutputStream();
myBitmap.compress(CompressFormat.JPEG, 100, bos);
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.setType("image/jpeg");
intent.putExtra(Intent.EXTRA_STREAM, bos.toByteArray());
startActivity(Intent.createChooser(intent, getString(R.string.app_name)));
当我从其他应用程序发送“图像”时,这些崩溃