为什么在 Eclipse 中调试时看不到局部变量?
我正在尝试在设备上调试 Android 应用程序。我希望局部变量显示在 Eclipse 调试透视图的表达式视图中,但整个视图是空的。
控制台中的最后一条消息是:尝试将调试器连接到端口 8601 上的“my.app.id”
,这似乎有问题。我确实在设备上的清单中启用了调试,并且清单中包含 SET_DEBUG_APP 权限。
为什么我看不到我的局部变量?
I'm trying to debug an Android app on a device. I expect the local variables to be displayed in the Expressions view in the Debug perspective in Eclipse, but that entire view is empty.
The last message in the console is: Attempting to connect debugger to 'my.app.id' on port 8601
which seems questionable. I do have debugging enabled on the device, in the manifest, and I have the SET_DEBUG_APP permission included in the manifest.
Why can't I see my local variables?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些变量通常在调试透视图的“变量”视图中看到,而不是在“表达式”视图中看到。您的必须关闭,因此只需从菜单中使用“窗口”、“显示视图”、“变量”选项添加它即可。
The variables are normally seen in the 'Variables' view of the debug perspective not the 'Expressions' view. Yours must be closed, so just add it from the menu, with Window, Show View, Variables option.