FlurryAgent.onPageView() 如何工作?
我正在一个只有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
首先,您需要调用
FlurryAgent.onStartSession(Context, String)
。可能位于onStar()
中。然后,您可以调用FlurryAgent.onPageView();
。请记住,onCreate
事件首先是onStar
first, you need call to
FlurryAgent.onStartSession(Context, String)
. Could be inonStar()
. Then, after that, you can call toFlurryAgent.onPageView();
. Just remember that the eventonCreate
is first thatonStar
根据 FlurrySDK
.jar
文件中的混淆代码,onPageView()
方法所做的唯一事情是增加静态int
页面视图计数器。所以我认为@Litux关于使用方式是正确的,但是由于这个字段是静态的,我认为使用它不是一个好主意,例如,计算Fragment
视图的数量,特别是如果一个Activity
中有多个Fragments
。According to the obfuscated code from FlurrySDK
.jar
file the only thing thatonPageView()
method do is increasing of staticint
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 ofFragment
views, especcially if you have severalFragments
in oneActivity
.正如...“页面浏览量跟踪是 Flurry SDK 的一个可选部分,它允许您报告用户生成的页面浏览量,以便跟踪广告。由于每个应用程序的页面浏览量定义不同,Flurry SDK 无法自动为您跟踪这些内容,您需要添加适当的集成点来跟踪与您的应用程序相关的页面视图。”
如果您想记录特定。页面/Activity/Fragment使用和用户路径,您需要将自定义事件与
FlurryAgent.logEvent()
一起使用,也可以选择与FlurryAgent一起使用.endTimedEvent()。
您可以将其集成到 Activity/Fragment
onResume
、onPause
回调中。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 withFlurryAgent.endTimedEvent()
.You can integrate that in Activity/Fragment
onResume
,onPause
callbacks.