0

我知道怎么做,start而且end Sessions in flurry 我也能够在我的Analytics部分成功地看到它们。

我现在要实现的是用户点击/查看的事件。

我有一个播放文件的媒体播放器。我想看看有多少用户播放了文件直到结束。How add such events inside a session for a user?

4

1 回答 1

3

使用后初始化 FlurryAgent onCreate()

FlurryAgent.init(YourClass.this, "YOUR_API_KEY");

使用以下方式开始/结束您的会话:(这将出现在您的活动课程中)

@Override
protected void onStart() {
    super.onStart();
    FlurryAgent.onStartSession(YourClass.this, "YOUR_API_KEY");
}

@Override
protected void onStop() {
    super.onStop();
    FlurryAgent.onEndSession(YourClass.this);
}

现在将这一行添加到您想要记录事件的任何位置:

FlurryAgent.logEvent("Your_event_name");

要使用某些参数记录事件,请使用:

HashMap<String, String> myMap = new HashMap<String, String>();
myMap.put("key", "value");
FlurryAgent.logEvent("even_name", myMap);

希望这会对某人有所帮助。

注意:如果您遇到两个术语FlurryAgent.logEventFlurryAgent.onEvent,请使用.logEvent

.onEvent已弃用。参考这里

于 2015-01-02T05:47:35.760 回答