在 Android 中保存有关用户的信息以进行分析
我的 Android 应用程序有两个主题。 我想知道有多少用户正在使用每个主题。
我正在使用 Flurry 进行分析,但找不到保存每个用户状态的方法(Flurry 是一个事件驱动服务,这不是我想要的)。
这听起来像是分析服务应该支持的常见事情。 Flurry 有办法做到这一点吗?或谷歌分析? 如果不是,那么进行此类分析的最佳工具是什么?
I have two themes for my Android application.
I want to know how many users are using each theme.
I'm using Flurry for analytics, but can't find way to save sate about each user (Flurry is an event driven service, which isn't what I want).
It sounds like a common thing that analytics service should support.
Is there a way to do so with Flurry? or Google Analytics?
If not, what is the best tool for this kind of analytics?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需生成一个具有适合您想要收集的信息的参数的事件。我通过主要活动入口点中的一个事件来执行此全局状态。
数据将根据该事件而不是每个用户提供,但只要一个主题的用户与另一个主题的用户没有明显不同的使用专利,那么统计数据就应该有效。
You just need to generate an event with a suitable parameter for the information you want to gather. I do this global state with an event in my main activity entry point.
The data will be per that event rather than per user but so long as the users of one theme don't have distincly different usage pattent to another then the stats should be valid.