设备上的 Android 调试 - LogCat 不起作用!
您好,我使用 Nexus One 来调试我的项目...
但是当连接到计算机(调试模式打开)时,没有日志处于调试模式(Eclipse)。该应用程序已安装并从计算机启动,但日志不显示...
我该怎么办?和想法?
Hi I use Nexus One to debug my project...
But when connected to computer (with Debugging mode ON) no Log is in Debug mode (Eclipse). The app is installed ad started from computer, but logs don't show...
What can I do? And idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试切换到 Android 视角 (DDMS)。应该有一个连接到 ADB 的所有正在运行的设备的列表。选择您正在使用的设备,然后应该会显示 LogCat。
Try switching to the Android Perspective (DDMS). There should be a list of all running devices connected to the ADB. Select the device you're using and the LogCat should be displayed.
首先,通过输入
adb devices
确保 ADB 能够识别您的 Nexus One。在那里吗? (在 Windows 上,您需要 Nexus One 的设备驱动程序)。
然后,输入 ddms 以独立于 Eclipse 调用 DDMS 视图。
First, make sure that your Nexus One is recognized by ADB by typing
adb devices
.Is it there? (on Windows you will need a device driver for the Nexus One).
Then, type
ddms
to invoke the DDMS view independently of Eclipse.