在文件夹res/xml中,我具有包含以下行的文件analytics.xml

<string name="ga_logLevel">verbose</string>


但是,在我的onCreate()Activity方法中,当我这样调用时:

GoogleAnalytics.getInstance(this).newTracker(R.xml.analytics);
Log.d("abc",""+(GoogleAnalytics.getInstance(this).getLogger().getLogLevel() == Logger.LogLevel.VERBOSE));


输出为假,不是真。那为什么呢?

最佳答案

这应该可以解决问题:

GoogleAnalytics.getInstance(this).getLogger().setLogLevel(LogLevel.VERBOSE);

关于android - 如何在Google Analytics(分析)中将日志级别正确设置为详细?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24446072/

10-08 23:21