Android 调试并开启 DDMS
现在,我没有 DDMS 在 Logcat 上输出任何内容。一切都在控制台上。
DDMS 是否会在代码上不使用 Log.d Log.e 语句的情况下自动启动? 我的代码中没有这样的 Log 语句。现在,如果我想使用 DDMS 并需要日志语句,我应该将这些日志语句放在哪里以及这些语句的内容是什么?
Right now, I don't have the DDMS to output anything on the Logcat. Everything is just on the console.
Is DDMS launched automatically without using the Log.d Log.e statements on the code?
I don't have such Log statements in my code. Now if I want to use DDMS and log statement needed where I should put those log statements and what's content of those statement?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DDMS 永远不会“自动”启动。并且不需要特殊的Log语句。日志不断写入设备上的循环缓冲区,并且当您启动时,DDMS 将显示来自连接设备的日志(以及其他内容)。
如果您想从 android eclipse 插件使用 DDMS,只需启动 eclipse(安装了 ADT)就会开始在 DDMS 视角中提取日志。只需在 eclipse 中切换视角即可查看日志。
如果你想在没有android eclipse插件的情况下启动DDMS,那么你可以从android sdk tools文件夹启动它来查看日志。
DDMS is never launched "automatically". And no special Log statements are required. Logs are continually written to a circular buffer on the device and DDMS will display the logs from connected devices (among other things) if/when you start it up.
If you want to use DDMS from the android eclipse plugins, just starting up eclipse (with ADT installed) will start pulling in logs in the DDMS perspective. Simply switch perspective in eclipse to view the logs.
If you want to start up DDMS without the android eclipse plugins, then you can start it up from the android sdk tools folder to view the logs.