DDMS(Android 调试监视器)未列出 Galaxy S II 上的进程
我正在使用 eclipse 和 eclipse android 插件在 Samsung Galaxy S II 上进行开发。这不是我第一次在这台计算机或手机上使用 DDMS,以前一切都工作得很好。
现在,当我连接设备时,DDMS 将其显示在设备列表上,LogCat 显示输出,我什至可以浏览文件系统,但单击设备不会显示其进程列表。
我尝试过重新启动计算机、重新启动手机、关闭然后再次打开调试模式、将其连接到另一台计算机、通过连接另一台设备检查电缆,但均无济于事。
有什么想法吗?
I'm developing on a Samsung Galaxy S II using eclipse and the eclipse android plugin. This is not the first time I'm using DDMS on this computer or phone and everything used to work just fine.
Now, when I connect the device, DDMS shows it on the device list, LogCat shows output, I can even browse the file system, but clicking on the device does not show its process list.
I have tried restarting my computer, restarting the phone, turning debug mode off and on again, connecting it to another computer, checking the cable by connecting another device, all to no avail.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
只有正在“调试”的特定应用程序才会显示在物理设备下。
由于与模拟器不同 - 实际设备不会在调试模式下运行。
如果您要调试的应用程序未列出,请确保它是:
参考:https:// stackoverflow.com/a/27111467/483588
Only a particular app being 'debugged' will show under a physical device.
Since unlike the emulator - an actual device does not run in
debug
mode.If the app you wish to debug is not listed then make sure that it is:
Reference: https://stackoverflow.com/a/27111467/483588
设置
->应用程序
->开发
->USB 调试
:设置为ON,保持清醒
:设置为ON嗯,这就是我所知道的。
Settings
->Application
->Development
->USB Debug
: set ON ,Stay awake
: set ONWell, that's all I know.
对于到达这里的人,我按照@Fenix Voltres上面所说的方法解决了问题,并将 AndroidManifest 标志更改为 android:debuggable="true"。
For whom ever gets here, I solved the problem doing what @Fenix Voltres said above, and changed the AndroidManifest flag to android:debuggable="true".
如果您打开了 2 个 eclipse 实例,这可能会导致问题。
关闭其他实例并重试。
if you have 2 instances of eclipse open this could cause the problem.
close the other instances and try again.