Google Analytics(分析)报告中的自定义维度和指标(Android SDK)

通过使用Google Analytics(分析)Android SDK 3,我可以成功查看本机Android应用程序的统计信息.

关于this documentation,我为我的应用创建了自定义尺寸. (似乎不需要从Web界面设置尺寸.编码就足够了)

// May return null if EasyTracker has not yet been initialized with a
// property ID.
EasyTracker easyTracker = EasyTracker.getInstance();

// Send the custom dimension value with a screen view.
// Note that the value only needs to be sent once, so it is set on the Map,
// not the tracker.
easyTracker.send(MapBuilder
    .createAppView("Home screen")
    .set(Fields.customDimension(1), "premiumUser");
    .build()
);

但是,当我检查Google Analytics(分析)网络界面时,在任何地方都看不到尺寸.在分析的“屏幕”部分中,存在自定义变量,但没有放置尺寸的地方.如何在分析报告中查看自定义维度?

解决方法:

您必须创建一个包含自定义指标,维度…的自定义报告,

Customisation tab -> New custom report

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...