是否应该在 onStartSession 和 onEndSession 之间调用 Flurry.onEvent
Flurry.onEvent可以在onStartSession和onEndSession之间调用吗?或者它可以被称为会话的“外部”吗?
Could Flurry.onEvent be called between onStartSession and onEndSession? or could it be called "outside" of a session?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它必须在会话“期间”调用(即在调用
onStartSession
和onEndSession
之间)。请注意,FlurryAgent.onEvent
不会将您的 Flurry ID 作为参数,这是因为它使用您之前调用onStartSession
时提供的相同 ID。It must be called "during" a session (that is, in between calls to
onStartSession
andonEndSession
). Notice thatFlurryAgent.onEvent
does not take your Flurry ID as an argument, this is because it uses the same ID you provide when you callonStartSession
earlier.