2

我正在尝试向我的 Google Analytics(分析)报告中添加有关我的 Android 应用程序使用情况的更多数据。

我从昨天开始使用自定义维度,但还没有得到任何结果,我想确保我做得对。

我想将页面视图与要发送的其他信息联系起来,这就是我使用自定义维度的原因。在特定活动的 onCreate 方法中,我正在执行此操作 -

            Tracker tracker = EasyTracker.getTracker();

            tracker.setCustomDimension(1, 128));
            tracker.setCustomDimension(2, 2));
            tracker.setCustomDimension(3, 45));
            EasyTracker.getTracker().trackView();

我已将我的自定义报告设置为按屏幕视图指标和上面的维度 ID 之一工作。

所有这些数据都会与 trackView 命令一起发送吗?因为我仍然看不到昨天的任何数据。

谢谢!

4

2 回答 2

1

有用。这次我需要等待大约 2 天才能显示数据。

现在我需要弄清楚如何同时显示所有这些维度的数据,但我想这适合另一个问题。

于 2013-01-24T05:37:51.080 回答
0

I don't have any experience with GA tracking using the android sdk api but I did find this page in the GA documentation. In the code examples they use the following as the trigger:

tracker.sendView();

于 2013-01-22T17:46:24.753 回答