如何知道谁共享我的应用程序以及谁获得该共享

时间:2012-05-19 12:44:44

标签: android android-intent

我向我的应用添加分享按钮,我想知道是否有消息要知道:

谁按下我的应用中的分享按钮,谁收到了该分享,

可以这样做。

提前感谢,任何帮助将不胜感激。

我的代码添加分享如下:

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")); 

1 个答案:

答案 0 :(得分:0)

将谷歌分析添加到您的应用程序。 并跟踪这样的共享事件。

  tracker.trackEvent(
      "Share",  // Category
      CategoryName,  // Action
      filename // Label
      ,1);       // Value

https://developers.google.com/analytics/devguides/collection/android/