从 Java 角度删除 Logcat
如何从 Java 角度永久删除 logcat 窗口?每次我收到错误(我期待的)时,它都会弹出 logcat 窗口(即使我关闭它/从角度删除它)并显示输出。我只想在调试视角中显示此内容。这非常烦人,并且在尝试修复已知问题时使迭代测试变得困难。我真的不需要 Eclipse 将我的注意力转移到我已经见过几十次的错误上。
我尝试过“自定义视角”,但我只能看到添加它的选项,即使它没有被选中(并且可能没有添加),它仍然会弹出。
How can I remove the logcat window from the Java perspective permanently? Every time I get an error (that I'm expecting) it pops up the logcat window (even if i close it/remove it from the perspective) and shows the output. I only want this showing in the debug perspective. It's very annoying and makes iterative testing difficult when trying to fix known issues. I really don't need eclipse changing my focus to an error I've already seen a few dozen times.
I've tried going to "customize perspective" but I can only see options to add it, and even though it's not checked (and presumably not added) it still pops up.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过您的首选项阻止 Eclipse 自动打开基于您所在透视图的视图,请检查下图中所示的设置:
You can prevent Eclipse from automatically opening views like that based on which perspective you're in via your preferences, check the settings seen in the image below:
我未选中
监视 logcat 以获取工作区中应用程序的消息
,而不是当工作区中存在来自应用程序的消息时显示 logcat 视图
SDK 版本:20。
I have unchecked
Monitor logcat for messages from applications in workspace
instead ofDisplay logcat view when there are messages from an application in the workspace
SDK version: 20.
在窗口 -> 中将其关闭首选项->安卓-> Logcat->当工作区中有来自应用程序的消息时显示 logcat 视图。
Turn it off in Window -> Preferences -> Android -> Logcat -> Display logcat view when there are messages from an application in the workspace.