使用意图查看和共享图像

时间:2019-01-15 17:49:31

标签: java android

我想使用2个Intent查看和共享图像,这是我的代码:

Intent IntentView = new Intent(Intent.ACTION_VIEW);
IntentView.setDataAndType(Uri.fromFile(imageFile), "image/jpg");

Intent IntentShare = new Intent(Intent.ACTION_SEND);
IntentShare.setType("image/jpg");
IntentShare.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(imageFile));
IntentShare.createChooser(IntentShare, "Share with:");

Intent[] TwoIntents = {IntentView, IntentShare};

CurrentActivity.startActivities(TwoIntents);

“ CurrentActivity”作为方法的参数,而“ imageFile”是File对象。

不幸的是,该图像没有显示,只有选择者出现,并且在完成共享活动之前,该图像出现了。

我该怎么办?

非常感谢您的帮助。

致谢!

0 个答案:

没有答案