我在搞乱" Google Analytics"用于跟踪用户行为。我可以跟踪pageViews并点击按钮。
我在将onClick()方法的edittext中的字符串发送到分析服务器时遇到问题。
我尝试过使用:
tracker.trackEvent(arg0, arg1, arg2, arg3);
但没有成功。请指导我在哪里做错了。
以下是我从编辑文本和OnClick()中获取字符串的代码,我想将其发送到服务器:
tracker.trackEvent("Application Android",
"viewPageFromCategory", txt, 0);
tracker.dispatch();
这里的txt是来自edittext的字符串。
答案 0 :(得分:0)
您正在通过0
获取事件“值”。我认为这意味着事件发生了0次,因此无需跟踪。
请参阅https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide#Values:
该值被解释为数字,报告根据每个事件计数添加总值
如果您启用了GA库的详细调试,您可以更详细地了解推送到Google的内容(如果有的话):
tracker = GoogleAnalyticsTracker.getInstance();
tracker.setDebug(true); /* send all updates to the log */
tracker.setDryRun(true); /* Do not actually send updates on the network */