Can I import an android studio project to eclipse?(我可以将android studio项目导入eclipse吗?)
问题描述
我想知道是否可以将android studio项目导入eclipse.
I would like to know if it is possible to import an android studio project to eclipse.
到目前为止我尝试过:
直接从eclipse导入:导入一堆奇怪的项目,没有任何代码
Import directly from eclipse: imported a bunch of weird projects without any code
InteliJ 似乎有导出到 Eclipse 的功能,但我在 android studio 中没有看到任何对它的引用...
It seems like InteliJ has an export to eclipse feature, but I don't see any reference to it in android studio...
谢谢!
推荐答案
不能直接导入项目,但实现起来并不难:
You cannot import the project directly but it's not to hard to achieve it:
在eclipse中新建一个Android空项目
Create a new Android empty project in eclipse
用 Android Studio 项目中的文件覆盖新的 res/
文件夹和 AndroidManifest.xml
文件
Overwrite the fresh res/
folder and the AndroidManifest.xml
file, with the ones from the Android Studio project
基本上,Android 应用程序的基本元素是 java 文件、清单文件和资源.从那里你可以在你最喜欢的 IDE 中重新构建一个项目
Basically the Android application fundamental elements are the java files, the manifest file and the resources. From there you can build back a project in your favorite IDE
这篇关于我可以将android studio项目导入eclipse吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我可以将android studio项目导入eclipse吗?
基础教程推荐
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01