有办法删除一个模块在Android工作室? 当我右键单击一个模块,我找不到删除选项,是在其他地方吗?


当前回答

假设:

你正在使用Android Studio 1.2.1或1.2.2(我还没有最新的版本,当我这样做时,我会再次编辑它)。 您的项目工具窗口显示以下视图之一:“项目”,“包”,“Android”或“项目文件”

删除Android Studio模块的操作如下:

In the Project Tool Window click the module you want to delete. Between the Tool Bar and the Project Tool Window the tool bar you will see two "chips" that represent the path to the selected module, similar to: your-project-name > selected-module-name Right click on the selected-module-name chip. A context menu with multiple sections will appear. In the third section from the bottom there will be a section that contains "Reformat Code..", "Optimize Imports..." and "Delete". Select "Delete" and follow any prompts.

其他回答

在Android studio v1.0.2中

方法1

进入项目结构,文件->项目结构…,如下图所示,单击-图标可移除模块。

方法2

编辑文件设置。Gradle并删除要删除的条目。例如,将文件从包含“:app”,“:apple”编辑为包含“:app”。

这在大多数情况下都是可行的,但是最后如果你不再需要它,你必须手动从磁盘中删除它。

“被排除在外”的选项已经不存在了。

当前(Android Studio 0.8。x - 2.2.x)的方法是通过项目结构对话框。它可以通过“文件->项目结构”或通过右键单击模块并选择“模块设置”来访问。

然后选择该模块,点击“减去”按钮将其删除。

目录仍然会在“Project”视图中可见(虽然不是在“Android”视图中),因为它实际上没有被删除,但它将不再被视为一个模块。

如果你愿意,你可以通过右键单击并按“删除”来物理删除文件。

编辑项目的设置。Gradle文件:删除模块名(,':xxxxx'),其中xxxxx是要删除的模块名 使用文件资源管理器删除模块文件夹

顺便说一下,当前版本的Android Studio (v3.1.2)抛出一个异常,并退出删除与一个错误,而我正在删除模块通过模块设置=>选定模块=> -(减)

最好的问候,谢谢)

在Android Studio 1.0 - 1.1b4中,我发现这是删除模块的最简单方法:

打开设置。gradle在gradle脚本下找到 从include语句中删除模块名 用Gradle文件同步项目 可选地,从项目文件夹手动删除它

例子

Old:

include ':app', ':greendao'

New:

include ':app'

在Android Studio中删除模块:3.1.4。

Goto Project-->Right Click on Module (FolderIcon-GreywithGreenColorDot) -->Load/UnLoadModules in PopUp -->Select Which Module to Unload in PopUpWindow Again RightClick on Module (FolderIcon-OrangeColor) -->Remove module. Finally, RightClick again on Module (FolderIcon-GreyColor) -->Delete. Note:Incase Project Enabled with Git please remove module from settings.gradle, otherwise deleted module.iml will show in project module list(Reference Link).gradle.xml which is located in project/.idea/gradle.xml--remove a module from here.

希望能有所帮助。 感谢。