在Android中存储应用程序活动日志
我想记录我的应用程序活动的一些数据,以便稍后在系统中读取它。数据包括按下按钮时收集的字符串、浮点数等。最好的方法是什么?
I would like to log some data of my application activity so as to read it latter on in the system. The data includes strings, floats etc collected when a button is pressed. What is the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我最终编写了自己的用于登录设备的函数。
SO 的相关问题位于此处。
I ended up writing my own function for logging on the device.
The related question on SO is here.
Logcollector 是适合您的选项,但您需要先在设备上安装它。
保存活动日志
您可以再次通过 adb Run
adb shell logcat > 。命令提示符下的 your_log_file.txt
。Logcollector is the option for you but you need to install it first on your device.
Again you can save the activity log via adb
Run
adb shell logcat > your_log_file.txt
from your command prompt.