How can I turn off the auto show of ADB consoles in Eclipse? How can I turn off the auto show of ADB consoles in Eclipse? android android

How can I turn off the auto show of ADB consoles in Eclipse?


I simply put the console under the package hierachy in eclipse, it doesnt take too much space there since i put ratio ~15%.

With this setup I can see if there is red stuff going in the console + fully see my logcat which take the rest of the bottom part of eclipse.

Here some ASCII hot skill to express my setup.

<pre>###################################################       #                                #       ##Package#                                #       ## stuff #  Code stuff                    # out   ##       #                                # line  ##       #                                # stuff ##       #                                #       ##       #                                #       ##       #                                #       ##       #                                #       ##       #                                #       ##       ###########################################       #     |                                  ##       #     |                                  ##########     |    logcat stuff                  ##console#     |                                  ## stuff #     |                                  ###################################################</pre>


I found it in the DDMS plugin source. Basically, if there is an error message, then the console is automatically popped up. The switch button to prevent this is not implemented at all. I have a library project that does not produce an apk file (since it doesn't have to) at the end of the build process and adt cries about this.


What I did to prevent this annoying behavior while using the Dalvik Debug Monitor stand alone version instead of logcat was the following:

In the console window click on the drop down furthest to the right (next to minimize) and choose "New Console View".Set the new console to DDMS, then pin it(important) and set it to be a Fast View (right click on the tab itself).Finally, in the original console view select Android and pin this one as well. DDMS should stay hidden now, assuming you don't close the console you pinned it in.