Is there a tool or a website that could help me create a UI for an Android application using drag-and-drop?

I found this site but want to know if there is a more stable tool or website for this?

link|improve this question
feedback

8 Answers

The Android Development Tools (ADT) plugin for Eclipse includes a visual editor for android application layout files:

http://developer.android.com/guide/developing/eclipse-adt.html

link|improve this answer
3  
Especially the one that comes with Android SDK 1.5, it is much better than DroidDraw. – Isaac Waller May 15 '09 at 23:01
5  
If anyone's having trouble finding this (I know I did), just open your main.xml in Eclipse. If that fails, right-click on it, Open With > Android Layout Editor. If that fails, your ADT may not be installed correctly. – billynomates Dec 7 '10 at 10:27
The visual editor in Eclipse sucks. It really is inhibiting in allowing the user to lay things out properly. – Igor G. May 16 '11 at 3:45
feedback

Allow me to be the one to slap a little reality onto this topic. There is no good GUI tool for working with Android. If you're coming from a native application GUI environment like, say, Delphi, you're going to be sadly disappointed in the user experience with the ADK editor and DroidDraw. I've tried several times to work with DroidDraw in a productive way, and I always go back to rolling the XML by hand.

The ADK is a good starting point, but it's not easy to use. Positioning components within layouts is a nightmare. DroidDraw looks like it would be fantastic, but I can't even open existing, functional XML layouts with it. It somehow loses half of the layout and can't pull in the images that I've specified for buttons, backgrounds, etc.

The stark reality is that the Android developer space is in sore need of a flexible, easy-to-use, robust GUI development tool similar to those used for .NET and Delphi development.

link|improve this answer
I agree. Working with layouts in Android is an absolute pain in the ass! – Kris B Dec 10 '11 at 2:39
feedback

DroidDraw seems to be very useful. It has a clean and easy interface and it is a freeware. Available for Windows, Linux and Mac OS X. I advice a donation.

If you don't like it, you should take a look at this site. There are some other options and other useful tools.

link|improve this answer
feedback

Droiddraw is good. I have been using it since long and haven't faced any issues yet (though it crashes sometimes, but thats ok)

link|improve this answer
3  
"it crashes sometimes, but thats ok" - that's my mantra too ;) – demoncodemonkey Oct 30 '09 at 11:57
feedback

I found that using the http://pencil.evolus.vn/ together with the pencil-stencils from the http://code.google.com/p/android-ui-utils/ project works exceptionally well. Very simple to use, its very easy to mock up elaborate designs

link|improve this answer
Perhaps I'm missing something but, as far as I can see, you can only place stuff on a Nexus one and I'm not sure how to get the xml code for main.xml – the_new_mr Aug 24 '11 at 13:42
feedback

Not saying this is the best way to go, but its good to have options. Necessitas is a project that ports Qt to android. It is still in its early stages and lacking full features, but for those who know Qt and don't wanna bother with the terrible lack of good tools for Android UI would be wise to at least consider using this.

link|improve this answer
feedback

http://www.appinventor.mit.edu/

Creating an App Inventor app begins in your browser, where you design how the app will look. Then, like fitting together puzzle pieces, you set your app's behavior. All the while, through a live connection between your computer and your phone, your app appears on your phone.

link|improve this answer
feedback

You can also try http://code.google.com/p/simpleui/

If you like the model view controller concept and fast prototyping then I would say you will like the idea behind it;)

I created it because I don't like UI development that much and needed something which i can integrate very fast into any project.

Tell me what you think about it, I would be really thankful for some feedback :)

Here is an example screenshot of a working UI I created in 5 minutes using SimpleUI:

Example screenshot of a working UI created in 5 minutes

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.