How to enable LogCat/Console in Eclipse for Android?

While working on a simple program in Android, I mistakenly closed LogCat window and I want to know how to show it again.

135404 次浏览

Window菜单中,打开 Show View-> Other ...并键入 log找到它。

在 Eclipse 中,Goto Window-> Show View-> Other-> Android-> Logcat。

Logcat 只是模拟器或设备的控制台。

System.out.println在 Android 系统中无法工作。所以你必须处理好 Logcat 的所有事情。更多信息注意这个 文件

编辑1: System.out.println 正在 Logcat 上工作。如果您使用这个标记,那么标记将类似于 System.out,而 Message 将是您的消息。

在“窗口”菜单中,打开“打开透视图”-> “调试”。

alt text 单击加号图像图标(您可以在状态栏中看到下面的图像) ,然后选择“ Logcat”... 。

进入你想要的透视图,进入“窗口-> 显示视图”菜单。

如果您在那里看到 logcat,单击它,您就完成了。

Else, click on 'other' (at the bottom), chose 'Android'->logcat.

希望这能有所帮助: -)

在您的 Eclipse 窗口的 快速访问编辑框中写入“ LogCat”(右上角,就在“打开展望”按钮之前)。只要选择 LogCat,它就会打开当前客户的 LogCat 窗口

enter image description here