ElectronicGeek
ElectronicGeek

Reputation: 3320

Android Studio Multi-Windows for One Project

I'm wondering if anyone knows how to open two windows of Android Studio with both having the same project. I know you can drag tabs out, but that allows you to only edit that one file. I want two fully-featured windows with each being able to see the Project Files/Structure.

I don't want to just split the editor, I want a separate window.

I want two of these windows, with both "looking" at the same project: enter image description here

I don't want another one of these windows, as I can't view the project structure and change that, and it's hard to change it to a different file in this view: enter image description here

Upvotes: 129

Views: 65815

Answers (9)

Luc-Olivier
Luc-Olivier

Reputation: 3973

on Mac:

1- drag & drop the project folder on the Android Studio icon in the bar

2- a new complete project window will open with the same currently open tabs in the primary project window.

3- From here you can change the tabs and so on.

You can apparently open many project windows on the same projet.

I use that for complexe edition (eg: multi-language strings)

The mess is that you lose the project windows at the next launch. A unique one remaining opened. I didn't check which one over all (maybe the last you change configuration of tabs).

Upvotes: 0

Chrispix
Chrispix

Reputation: 18221

Could you just make a copy of android studio & run it side / side? You can run different versions of android studio side/side.. Maybe that is an option.

Upvotes: 1

DragonFire
DragonFire

Reputation: 4082

One hacky way of doing this (but you will not be able to save in the same project) is to make a copy of the project folder and open it in Android Studio.

Upvotes: 1

Taha khozooie
Taha khozooie

Reputation: 11

right click on tab and click on windowed mode, it will open up a new window.

Upvotes: 0

Marco Acierno
Marco Acierno

Reputation: 14847

Right click on tab of the file and click "Split vertical / Horizontal"

enter image description here

After splitting, you can just drag one of the tab titles to the second monitor - it will open up a new window. You can then edit the same file in two separate windows

Upvotes: 282

Andres Diez
Andres Diez

Reputation: 21

Just drag the tab outside the current window.

Upvotes: 0

Punpuf
Punpuf

Reputation: 2144

Window -> Editor Tabs -> Split Vertically

if you don't use files tabs

enter image description here

Upvotes: 7

Fesswood
Fesswood

Reputation: 89

If you want to split tabs of android studio project beetween monitors, you can rigthclick to tab(project, debug, terminal etc) and check the "floating mode" option.

See the image: Floating mode tab option

After that you can drag this tab between your monitors as new window.

Upvotes: 2

Jacob McKay
Jacob McKay

Reputation: 2816

If you click and drag a file's tab out of your current window (over onto the desktop, for example), the file will open in a new window. However, this window doesn't seem to have the whole package explorer, console etc.

Although, if you click on the gear on any of the modules, you can uncheck 'pinned' mode and you'll be free to move them around your two monitors just like the window you created above.

Upvotes: 39

Related Questions