什么时候是结束 Flurry 会话的合适时间?
我只有一个包含一些活动的普通应用程序,我希望 Flurry 记录信息以及崩溃。什么时候是结束会议的最佳时间?我应该在 onPause
、onStop
或 onDestroy
中执行此操作吗?在所有这些中还是没有?
根据文档,退出应用程序时始终会调用 onPause
和 onStop
,除非应用程序崩溃或被用户使用任务杀手破坏。但是,如果我确实将结束会话放入 onDestroy
中,则很少会调用它。
有人有这方面的经验吗?
I just have a normal app with a few activities, and I want Flurry to log information as well as crashes. When would be the best time to end the session? Should I do it in onPause
, onStop
, or onDestroy
? In all of them or none?
According to the documentation, onPause
and onStop
are always called when exiting an app unless the app crashes or is destroyed by the user using a task killer. However, if I do put the end session in onDestroy
, it will rarely be called.
Does anyone have any experience with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
扩展应用程序类并将其放入其中:
Extend the application class and put it in there: