Since Eclipse can run in Linux and this tablet has the new Honeycomb (Linux Kernel), can Eclipse IDE run in Android Honeycomb ?

I know that isn't pretty much comfortable coding in a tablet, but I'd want to use for UML modeling.

link|improve this question

79% accept rate
1  
Waiting in an airport lounge turning pleasant at last ;-) !!! – Alain Pannetier Feb 22 '11 at 15:25
feedback

7 Answers

up vote 9 down vote accepted

Android (despite its Linux roots) is far from capable of running Eclipse IDE as is. Not only is the hardware inadequate for supporting such a large application, but Android lacks a full Java SE JVM (Dalvik is a subset) and SWT (Eclipse UI framework) implementation for native Android UI controls does not exist. On Linux, SWT implementations exist only for GTK and Motif.

You may be interested in project Orion, which is an effort at eclipse.org to create Eclipse-like experience in the browser. I understand that people have been able to use Orion from a mobile browser on devices such as the one on the iPad.

http://mmilinkov.wordpress.com/2011/01/11/introducing-orion/

link|improve this answer
IMO, Android's Linux roots is irrelevent -- what's interesting is its Java roots; that's what makes one fantasize that Eclipse might conceivably run on it. – Kirk Woll Sep 23 '11 at 3:42
feedback

No you can't.

But who forbid you to connect to your computer using VNC? You can access your Eclipse or whatever application you want.

link|improve this answer
+1 for give solutions – texai Feb 22 '11 at 16:05
feedback

You can use DroidDevelop. DroidDevelop allows to create native Android application on your mobile device. You don't need to install Android SDK, Eclipce and an other desktop program for Windows or Linux to start programing for Android.

https://market.android.com/details?id=com.assoft.DroidDevelop

http://en.assoft.ru/droiddevelop

link|improve this answer
feedback

The Eclipse downloads page lists packages for Windows, Linux, and Mac OSX. Android is not listed as one of the supported OSes for installation of the IDE.

link|improve this answer
ok But these are the packages ready to download, since Eclipse IDE is an open source project, source are available to download. Is posible compile it into Honeycomb? – texai Feb 22 '11 at 15:28
Here is a link to a HOWTO that explains how to get the Eclipse source code: wiki.eclipse.org/CVS_Howto I haven't heard of anyone porting the source to Android, but feel free to do so if you desire. – Zoot Feb 22 '11 at 15:45
feedback

Short answer, no.

Long answer, although Honeycomb is based on Linux, you'd have to do a lot of hacking to get to the point where you can have a full blown IDE installed on it. Android works with apps. There isn't an Eclipse app, so you can't have Eclipse.

link|improve this answer
feedback

You can't run Eclipse but you can try AIDE:

https://market.android.com/details?id=com.aide.ui

It is compatible with the Eclipse project file format, has a fast editor with syntax highlighting and supports the full edit-compile-run cycle.

link|improve this answer
feedback

Are you talking about actually running Java code with Eclipse APIs on the device? It's not impossible, but you will be doing most of the work yourself. The difficult part will be getting SWT to run and appear as native Android objects while supporting the full range of controls that Eclipse users expect.

There have been Eclipse projects in the past to get a workable subset of the APIs to run in an embedded space. One such project was eRCP, by IBM. I'm not aware of any activity to make a similar effort on Android, but there's no requirement to announce such work to the Eclipse community.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.