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

后端 未结 3 854
攒了一身酷
攒了一身酷 2020-12-01 01:09

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 Ec

3条回答
  •  遥遥无期
    2020-12-01 01:45

    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.

提交回复
热议问题