Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an Eclipse plugin for WSYIWYG UI for Android

Tags:

android

I'm just starting out working with Android and it was recommended to me to try and find an Eclipse WYSIWYG plugin that could handle the top layer UI.

So far my searches haven't come up with much other than App Inventor (which won't really do the trick).

Any help would be greatly appreciated.

Mt

like image 970
Mike Avatar asked Jan 26 '11 20:01

Mike


1 Answers

In eclipse, you can get a WYSIWYG editor for the xml layout files. It can be found in the tab called "Graphical Layout" when you have a layout xml file open.

For example, if you create a new project, in the layout folder there is the main.xml file which automatically created. If you open this file, you should see two tabs at the bottom left of the editor. One which says "Graphical Layout" and another which says "main.xml". Open the Graphical Layout tab and it's as close to a WYSIWYG editor as I've found.

This is natively supported by the android sdk.

like image 181
Noel Avatar answered Sep 25 '22 17:09

Noel