AndroidXMLayouter 1.0.0

1  

Categories:
Login or register to tag items

If you like to write UI for Android by hands, you know everything about XML. All known issue XML is large and contains a lot of no need characters to type them again and again. Remember Lisp? Good.

Now you do not need type "<......="...."....="...">........" and etc. All you need is open "(" and close ")", nothing else.

For example:
You need to write something like this:

Now you gonna write only this:

(LinearLayout
(layout_height match_parent)
(layout_width match_parent)
(orientation vertical))

As you can notice it's a simple format: (NAME VALUE)
Value can be new element, so: (NAME1 (NAME2 VALUE2)) and now

As you can see if simple element defined (NAME VALUE), it will be an attribute to parent element. Of course you must be able to implement children elements, it's still same way: (NAME1 (NAME2 (NAME3 VALUE3))) and now

I think it's simple and very easy to type in code editor. When you finish typing, right-click and find out "Android Generate XML", click and you'll see XML, now click, for mac, Command + Shift + F to format XML, and that's it!

Thanks and good luck.

Additional Details

  • Version Number: 1.0.0
  • Eclipse Versions: Indigo
  • Organization: Vladimir Lichonos
  • Date Created: 11/09/2011
  • Date Updated: 12/09/2011
  • Development Status: Beta
  • License: Free for non-commerical use
  • Submitted by: Vladimir Lichonos

Reviews

Add a Review

Source

Did you use LazyAndroid source? You should just add it to the code tree.