我们希望通过 Google Analytics 跟踪用户在一项活动的每个片段上花费的时间。
为了清楚起见,我们有一个活动和许多属于同一活动的片段。
我需要知道用户在每个片段中花费了多少时间,并将其作为“屏幕上的时间”发送。我怎样才能做到这一点?
我们希望通过 Google Analytics 跟踪用户在一项活动的每个片段上花费的时间。
为了清楚起见,我们有一个活动和许多属于同一活动的片段。
我需要知道用户在每个片段中花费了多少时间,并将其作为“屏幕上的时间”发送。我怎样才能做到这一点?
为了实现这一点,我们应该使用谷歌分析手动屏幕测量
来自:https ://developers.google.com/analytics/devguides/collection/android/v3/screens
// May return null if EasyTracker has not yet been initialized with a property
// ID.
Tracker easyTracker = EasyTracker.getInstance(this);
// This screen name value will remain set on the tracker and sent with
// hits until it is set to a new value or to null.
easyTracker.set(Fields.SCREEN_NAME, "Home Screen");
easyTracker.send(MapBuilder
.createAppView()
.build()
);
请注意注释:“此屏幕名称值将在跟踪器上保持设置并与点击一起发送,直到它设置为新值或为空。 ”