如何在 Android 版 Eclipse 中启用 LogCat/Console?
在 Android 中编写一个简单的程序时,我错误地关闭了 LogCat 窗口,我想知道如何再次显示它。
While working on a simple program in Android, I mistakenly closed LogCat window and I want to know how to show it again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
在 Eclipse 中,转到窗口 ->显示视图->其他->安卓->日志猫。
Logcat 只是模拟器或设备的控制台。
System.out.println
在 Android 中不起作用。所以你必须在Logcat中处理所有事情。更多信息请查看此文档。编辑 1:System.out.println 正在 Logcat 上运行。如果您使用该标签,则该标签将类似于 System.out,而消息将是您的消息。
In Eclipse, Goto Window-> Show View -> Other -> Android-> Logcat.
Logcat is nothing but a console of your Emulator or Device.
System.out.println
does not work in Android. So you have to handle every thing in Logcat. More Info Look out this Documentation.Edit 1: System.out.println is working on Logcat. If you use that the Tag will be like System.out and Message will be your message.
在 Eclipse 窗口的快速访问编辑框中写入“LogCat”(右上角,就在“打开预期”按钮之前)。只需选择 LogCat,它就会在您当前的潜在客户中打开 LogCat 窗口
Write "LogCat" in Quick Access edit box in your eclipse window (top right corner, just before Open Prospective button). And just select LogCat it will open-up the LogCat window in your current prospect
在
Window
菜单中,打开Show View
->Other ...
并输入log
来查找它。In the
Window
menu, openShow View
->Other ...
and typelog
to find it.在“窗口”菜单中,打开“打开透视图”-> “调试”。
单击加号图像图标(您在状态栏上看到下图),然后选择“Logcat”...
In the "Window" menu, open "Open Perspective" -> "Debug".
click On the plus image icon(you see the below image at status bar), and then select "Logcat"....
转到您想要的视角。转到“窗口->显示视图”菜单。
如果您在那里看到 logcat,请单击它即可完成。
否则,单击“其他”(位于底部),选择“Android”->logcat。
希望有帮助:-)
Go to your desired perspective. Go to 'Window->show view' menu.
If you see logcat there, click it and you are done.
Else, click on 'other' (at the bottom), chose 'Android'->logcat.
Hope that helps :-)