0

我正在尝试将图像发送到其他应用程序,但使用此代码不起作用。(删除文件或显示文件的其他操作,有效)

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)));

当我从其他应用程序发送“图像”时,这些崩溃

4

1 回答 1

0

试试这个代码

Intent i = new Intent(Intent.ACTION_SEND);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
i.setType("image/jpg");
i.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///sdcard/Pictures/
 image.jpg"));  // choose your path of the image
startActivity(i);

希望它会帮助你

于 2014-05-22T18:07:50.070 回答