我怎么知道共享意图呢?

时间:2015-03-05 11:30:39

标签: java android android-intent android-sharing

我想通过android中的所有共享应用程序分享一些东西(纯文本)。 这是我的代码

Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
String shareBody = toast;
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
startActivity(Intent.createChooser(sharingIntent, "Share via"));

但我希望发送消息,我的应用检测到共享已完成。

1 个答案:

答案 0 :(得分:0)

  

但我希望发送消息,我的应用检测到共享已完成。

ACTION_SENDACTION_SENDTO不支持。您无法确定用户是否共享内容或用户如何共享内容。