我正在呼吁从主要活动中分享新意图。 用户完成共享或取消共享后,需要加载或返回主活动。
我使用以下代码来调用新意图。 我无法弄清楚如何再次回到主要活动。
Intent shareImage = new Intent();
shareImage.setAction(Intent.ACTION_SEND);
String mimeTyp = "*/*";
shareImage.setType(mimeTyp);
shareImage.putExtra(Intent.EXTRA_TEXT, "This is the text that will be shared.");
shareImage.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://"+finalimagepath));
startActivity(Intent.createChooser(shareImage, "Share Click"));
使用此代码,在完成共享意图后,它不会进入主要活动。