我想使用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对象。
不幸的是,该图像没有显示,只有选择者出现,并且在完成共享活动之前,该图像出现了。
我该怎么办?
非常感谢您的帮助。
致谢!