How to make logcat windows grow in android studio?

The title says it all

How to make logcat windows grow in android studio?

Right now my logcat windows are very small and I need to scroll to see it.

thank

+3


source to share


3 answers


You can use the resize bar knobs to enlarge it, or use the settings option (the cog icon to the right of the DDMS bar) to select float and maximize this window.



+3


source


Better yet (at least OS X, maybe others?): SHIFT-COMMAND- 'toggles maximize / minimize



0


source


I have pointed out all the trivial steps to match each Android Studio preset configuration, after it is implemented, it will take roughly 200 milliseconds to maximize Logcat!

The document is divided into Settings (just once) and then Real Shortcut (to do as soon as the settings are in memory):

Settings

1) Alt + 6 to open the Android debug window (you don't need this step if you are in the middle of debugging, namely if you pressed the debug button)

2) Drag the logcat tab in front of the others (probably ADB, Memory, CPU logs for android studio 1.3.1), this way the system will remember this preset.

Real shortcut:

When you are in debug mode, press Alt + 6 (in case Logcat is not displayed as the main table) and CTLR + SHIFT + quote, where quote means " Quote

LOGCAT will be maximized to switch to debug alt + 5, no need to press Ctrl + Shift + Quote again! Note that if only this application from the dropdown menu is debugged for this parameter, you will not see many events, so it's up to you to select "No filters" (if you only want to see "Error", the tab in the Dropdown menu where it says "Details" and change it with "Error".)

Once the settings are correct Alt + 6 -> Ctrl + Shift + Quote (to maximize) -> Alt + 5 to return to the debugger table

EDIT: There is a second possibility depending on your taste: from the main Debug screen (Table Debugger) you can press Ctrl + Shift + Quote, then the TAB key and then Arrow Right, Left to switch between Logcat, Debugger and Console. Personally, I only use this option when I have long debugging, because it is helpful to switch between Debugger and Logcat using Alt + Arrow

0


source







All Articles