views:

815

answers:

4

Hi, I am a new comer in Android development, I have downloaded and installed the Android SDK, but not find any GUI or Form designer, can any one know about some Form designer in for Android, Thanks in advance.

+13  A: 

The form designer is part of the Android Development Tools (ADT) Plugin for Eclipse which comes with the Android SDK.

Eclipse Screenshot

Dave Webb
+1 for correct answer, but the form designer is terrible, and it mutilates your code even worse than the visual studio design view
David Hedlund
There is no form designer related info in the given link.
Create a new Android project in Eclipse, double-click on res/layout/main.xml and you will see the GUI editor. New XML files created in that directory should also open with the GUI editor.
Chris Boyle
+1  A: 

Google has not announced any plans for a wysiwyg designer for Android app development. However, there is a tool available for this. Check out this link http://www.designerandroid.com/?p=165

Murtaza
I don't see how that's helpful as in the post you linked to it makes it clear the App Inventor for Android "is only available to participating university students."
Dave Webb
+3  A: 

There is DroidDraw which is free and web-based.

Rich
I just tried the new standalone version and they really need to update it with the new graphics (it's still using pre-1.0). It's also terribly inaccurate.
fiXedd
+2  A: 

As d. correctly mentioned the built-in designer does not truly represent your view. And if we keep in mind that even after 4 years of trying, Microsoft's equivalent for their XAML code still doesn't reach minimum usefulness level, I would strongly recommend to go manual. It's faster, much more difficult but equally rewarding. Once you get a hang of editing the XML files manually the development becomes much easier and WAY faster in my humble opinion. Regards

BeMeCollective