Reputation: 2970
I am wondering how i can setup my lower tool pane (terminal in this example) in AndroidStudio that it behaves like it does in the other IntelliJ based tools (like AppCode)
Here is a screen of the current Android Studio Layout
But i want the lower pane to look like it does in AppCode for example. (I mean the lower pane should be full window width instead the left pane full window height)
Any ideas?
Upvotes: 0
Views: 749
Reputation: 33408
The default view of Android view is as you want it to be (Second screenshot in your question). Try to restore to the default layout
Window -> Restore Default Layout
Shortcut Shift + F12
(The above is on a Windows machine. Other operating systems will have a similar option inside Android Studio.)
Update: (If the above does not work)
Goto
Settings - > Appreance And Behavior -> Appearence
Uncheck the option "Widescreen Tool Window Layout"
Click Apply
It will give you the full width tool window layout. Tried and tested.
Upvotes: 7