我想通过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"));
但我希望发送消息,我的应用检测到共享已完成。
答案 0 :(得分:0)
但我希望发送消息,我的应用检测到共享已完成。
ACTION_SEND
或ACTION_SENDTO
不支持。您无法确定用户是否共享内容或用户如何共享内容。