我怎么知道分享意图完成了?
how can I know sharing intent done?
我想通过 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"));
但我想要我的应用检测到共享已完成的传送消息。
but I want delivery message that my app detect sharing done.
ACTION_SEND
或 ACTION_SENDTO
不支持。您不知道用户是否共享内容或用户如何共享内容。
我想通过 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"));
但我想要我的应用检测到共享已完成的传送消息。
but I want delivery message that my app detect sharing done.
ACTION_SEND
或 ACTION_SENDTO
不支持。您不知道用户是否共享内容或用户如何共享内容。