gpt4 book ai didi

android - 没有 EasyTracker 的 Google Play 商店 Activity 测量?

转载 作者:行者123 更新时间:2023-11-29 21:48:18 24 4
gpt4 key购买 nike

我正在尝试实现 Google Play 商店广告系列衡量。 https://developers.google.com/analytics/devguides/collection/android/v2/campaigns?hl=en#google-play-implement

在示例中,Google 使用 EasyTracker.getInstance().activityStart(this) 和 ...activityStop(this) 来跟踪开始/停止 一个 Activity 。

在我的应用程序中,我只使用 Tracker 类,而不是 EasyTracker 来发送事件。在这种情况下,我如何跟踪 Activity 的开始/停止? Tracker 类没有此功能,我不明白这些功能实际上做了什么。

最佳答案

哈...刚刚找到answer...

Manual Screen Measurement

You can also manually send a screen view by calling sendView(). Even if you're already using EasyTracker's automatic screen measurement, you can manually send screen views to measure user engagement with Fragments or other content that might not be an Activity.

sendView() is usually called in the onStart() callback of an Activity or Fragment as win the following example:

/**
* Within an Activity or Fragment
*/
@Override
public void onStart() {
super.onStart();
... // Your other onStart() code.
myTracker.sendView("Home Screen"); // Where myTracker is an instance of Tracker.
}

关于android - 没有 EasyTracker 的 Google Play 商店 Activity 测量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15140438/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com