FlurryAgent.onPageView() 如何工作?

发布于 2024-10-04 21:38:06 字数 295 浏览 5 评论 0原文

我正在一个只有一个 Activity 的简单 Android 应用程序上测试 Flurry。

我从 Activity 的 onCreate 方法调用 FlurryAgent.onPageView();

这是计算页面浏览量的正确方法吗?

另外,我在 http://dev.flurry.com/ 上找不到 PageView 报告,在哪里它?

谢谢, 贾科莫

I'm testing Flurry on a simple Android app that has just a single Activity.

I call the FlurryAgent.onPageView(); from the Activity's onCreate method.

Is this the correct way to count page views?

Also, I can't find the PageView report on http://dev.flurry.com/, where is it?

Thanks,
Giacomo

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

冬天旳寂寞 2024-10-11 21:38:06

首先,您需要调用FlurryAgent.onStartSession(Context, String)。可能位于 onStar() 中。然后,您可以调用FlurryAgent.onPageView();。请记住,onCreate 事件首先是 onStar

first, you need call to FlurryAgent.onStartSession(Context, String). Could be in onStar(). Then, after that, you can call to FlurryAgent.onPageView();. Just remember that the event onCreate is first that onStar

可爱咩 2024-10-11 21:38:06

根据 FlurrySDK .jar 文件中的混淆代码,onPageView() 方法所做的唯一事情是增加静态 int 页面视图计数器。所以我认为@Litux关于使用方式是正确的,但是由于这个字段是静态的,我认为使用它不是一个好主意,例如,计算 Fragment 视图的数量,特别是如果一个 Activity 中有多个 Fragments

According to the obfuscated code from FlurrySDK .jar file the only thing that onPageView() method do is increasing of static int page view counter. So i think @Litux is right about way of usage, BUT since this field is static i think it would'nt be a good idea to use it, for example, to count number of Fragment views, especcially if you have several Fragments in one Activity.

正如...“页面浏览量跟踪是 Flurry SDK 的一个可选部分,它允许您报告用户生成的页面浏览量,以便跟踪广告。由于每个应用程序的页面浏览量定义不同,Flurry SDK 无法自动为您跟踪这些内容,您需要添加适当的集成点来跟踪与您的应用程序相关的页面视图。”

如果您想记录特定。页面/Activity/Fragment使用和用户路径,您需要将自定义事件与FlurryAgent.logEvent()一起使用,也可以选择与FlurryAgent一起使用.endTimedEvent()。

您可以将其集成到 Activity/Fragment onResumeonPause 回调中。

As... "Page View tracking is an optional part of the Flurry SDK that allows you to report the number of page views generated by your users for the purpose of tracking advertising. Since the definition of Page View differs for each application, the Flurry SDK cannot track these for you automatically. Instead, you need to add the appropriate integration points to track page views as they pertain to your application."

If you want to log specific Page/Activity/Fragment usage and User Paths, you need to use custom events with FlurryAgent.logEvent(), optionally with FlurryAgent.endTimedEvent().

You can integrate that in Activity/Fragment onResume, onPause callbacks.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文