1

我在我的应用程序中添加了分享按钮,我想知道是否有什么要知道的:

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

这可能吗?

在此先感谢,任何帮助将不胜感激。

我添加共享的代码如下:

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

1 回答 1

0

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

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

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

于 2012-05-19T12:48:28.893 回答