Java 安卓开发的轻量级ide

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/19704734/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-12 19:32:19  来源:igfitidea点击:

Light ide for android development

javaandroidwindowside

提问by Bringoff

Now I'm using IntelliJ Idea. But my notebook has only 2Gb RAMand Idea is very slow sometimes. I want to have little IDE for education projects. There is AIDE, which run on Android devices, but I want something like AIDE on Windows for simple coding.

现在我正在使用 IntelliJ Idea。但是我的笔记本只有2Gb 内存,Idea 有时很慢。我想要一些用于教育项目的 IDE。有 AIDE,它可以在 Android 设备上运行,但我想要像 Windows 上的 AIDE 这样的东西来进行简单的编码。

采纳答案by Timmetje

jEditis a lightweight Java IDE, you'll need to install some plugins to use for android development. See here for a small tutorial on this: http://ashish-yadav.blogspot.nl/2012/09/android-development-using-jedit-part-1.html

jEdit是一个轻量级的 Java IDE,您需要安装一些插件才能用于 android 开发。有关此问题的小教程,请参见此处:http: //ashish-yadav.blogspot.nl/2012/09/android-development-using-jedit-part-1.html

But developing Android apps isn't very easy like in Eclipse or IntellijIDEA. Debugging possibilities in jEdit are not remotly as good as these two.

但是开发 Android 应用程序并不像在 Eclipse 或 IntellijIDEA 中那样容易。jEdit 中的调试可能性远不如这两个。

Note:You can use the android tools to set up a project, use any plain text editor to edit java sources and use ant to compile everything and adb to install to the emulator.

注意:您可以使用 android 工具设置项目,使用任何纯文本编辑器编辑 java 源代码,使用 ant 编译所有内容,使用 adb 安装到模拟器。

This will require some further knowledge on compilen and installing with adb manually though.

不过,这将需要一些关于使用 adb 手动编译和安装的进一步知识。

See http://developer.android.com/guide/developing/other-ide.html

http://developer.android.com/guide/developing/other-ide.html

I would stick with Eclipse or IntellijIdea if I were you, while slower I think you get more good than bad at the end.

如果我是你,我会坚持使用 Eclipse 或 IntellijIdea,虽然速度较慢,但​​我认为你最终会变得更好。

Note 2:If your biggest point is the slowness of the emulator, well that's tough the emulator is slow on even the heaviest of machines. You can run a x86 system image as emulator, but I doubt your laptop will handle this.

注意 2:如果您最大的问题是模拟器的速度慢,那么即使在最重的机器上,模拟器也很慢,这很困难。您可以将 x86 系统映像作为 emulator 运行,但我怀疑您的笔记本电脑能否处理此问题。