我正在使用发送意图(ACTION_SEND)共享图像。
我想知道是否选择了任何应用程序进行共享。我该怎么做以及如何知道图像是否发送成功?
我用来分享图像的代码在这里:
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/*");
share.putExtra(Intent.EXTRA_STREAM,Uri.fromFile(new File(imageSharePath)));
startActivity(Intent.createChooser(share, "Share Image"));