tags:

views:

123

answers:

2

I thought ADT should come with a visual editor for building GUI : http://stackoverflow.com/questions/851882/easy-way-to-build-android-ui

However, I just cannot find it. I was wondering where is the Visual Editor for Eclipse with the ADT plugin.

I can run HelloWorld application without problem. However, whenever I click on main.xml at the left navigation tree layout folder, here is what I get. What I wish to get is a WYSIWYG editor. alt text

+3  A: 

Select your main.xml file. At the bottom of eclipse you can see a Layout tab, click on it and eclipse will open the android gui editor.

ArtWorkAD
OK. I found that. But not pleasant to be used, when I compare it with Netbeans Matisse.
Yan Cheng CHEOK
+1  A: 

If you want to edit the layout visually, rather than through XML, click on the Layout tab at the bottom left of the main.xml window (in your screenshot, just above Problems).

DoctorRuss