How do you undo floating mode for the logcat window in Android Studio

前端 未结 12 2563
闹比i
闹比i 2021-02-18 20:26

While fiddling with the layout in Android Studio I somehow turned my logcat window into a floating window. I cannot for the life of me restore it to docked mode.

12条回答
  •  渐次进展
    2021-02-18 20:35

    I just realised that the settings controlling the window layout are not stored in the project because the layout was broken for all projects. I was able to fix the problem by doing this:

    $ cd ~/.AndroidStudio/config
    $ grep -r ddms
    $ vi options/runner.layout.xml
    

    Then I modified the Logcat configuration to look like this:

      
        
    

    The important change was the window option.

提交回复
热议问题