Android Studio工具窗格/窗口布局(全窗口宽度)

时间:2016-02-11 11:55:54

标签: android android-studio intellij-idea

我想知道如何在AndroidStudio中设置我的下方工具窗格(此示例中的终端),它的行为与其他基于IntelliJ的工具(如AppCode)的行为类似

以下是当前Android Studio布局的屏幕

enter image description here

但我希望下部窗格看起来像在AppCode中那样。 (我的意思是下部窗格应该是全窗口宽度而不是左窗格全窗口高度)

enter image description here

有什么想法吗?

1 个答案:

答案 0 :(得分:2)

Android视图的默认视图是您想要的(在您的问题中的第二个屏幕截图)。尝试恢复默认布局

Shift + F12

快捷方式Settings - > Appreance And Behavior -> Appearence Uncheck the option "Widescreen Tool Window Layout" Click Apply

(以上是在Windows机器上。其他操作系统在Android Studio中也有类似选项。)

更新:(如果上述方法无效)

转到

(a = new Date()) < (b = new Date())
a  // Thu Feb 11 2016 12:24:19 GMT+0000 (GMT)
b  // Thu Feb 11 2016 12:24:19 GMT+0000 (GMT)
a < b    // false (correct)
a === b  // false (incorrect)  <<<
a > b    // false (correct)
a <= b   // true (correct)
a >= b   // true (correct)

它将为您提供全宽工具窗口布局。经过试验和测试。

Source