Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio - How to open multiple project in single window?

I have downloaded Android Studio and started using it for my Android development.

I need to know, how to open multiple number of projects in a single window like Eclipse. Expecting some help, thanks.

like image 358
SelvaMariappan Avatar asked May 20 '13 09:05

SelvaMariappan


People also ask

How do I open multiple windows in Android Studio?

Window -> Editor Tabs -> Split Vertically Show activity on this post. Show activity on this post. Show activity on this post. Show activity on this post.

How do I open the project folder in Android Studio?

Launch Android Studio, and click File > New > Import Project. Locate your project directory, click the build. gradle file you created above to select it, and then click OK to import your project.


1 Answers

IntelliJ IDEA creates a project for the entire code base you work with, and a module for each of its individual components. So, IntelliJ IDEA module is more like an Eclipse project, and project is roughly similar to Eclipse workspace. There's no exact equivalent to Eclipse's workspace that contains all your work, but you can open multiple projects in multiple frames at the same time.

This table can help you see how Eclipse and IntelliJ IDEA concepts map to each other:

Eclipse               IDEA Workspace             Project Project               Module Project-specific JRE  Module JDK User library          Global library Classpath variable    Path variable Project dependency    Module dependency Library               Module library 

To use the library add it as a dependancy:

File > Project Structure > Modules > Dependencies

Then add the module (android library) as a module dependency.

like image 143
Chris Avatar answered Oct 03 '22 09:10

Chris