我在我的应用程序中添加了分享按钮,我想知道是否有什么要知道的:
谁在我的应用程序中按下了分享按钮,谁收到了该分享,
这可能吗?
在此先感谢,任何帮助将不胜感激。
我添加共享的代码如下:
Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
String shareBody = "Here is the share content body";
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject Here");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
startActivity(Intent.createChooser(sharingIntent, "Share via"));