AndroidXMLayouter

Solution Description

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:

android:layout_height="match_parent" android:layout_width="match_parent"
android:orientation="vertical" />

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.

Tags: android, xml

Additional Details

Organization Name: Vladimir Lichonos

Development Status: Beta

Date Created: Sunday, September 11, 2011 - 04:43

License: Free for non-commerical use

Date Updated: Monday, September 12, 2011 - 11:55

Submitted by: Vladimir Lichonos

Screenshot
Date Ranking Installs Clickthroughs
March 2024 0/0 0 2
February 2024 0/0 0 5
January 2024 0/0 0 7
December 2023 0/0 0 9
November 2023 0/0 0 12
October 2023 0/0 0 14
September 2023 0/0 0 16
August 2023 0/0 0 10
July 2023 0/0 0 11
June 2023 0/0 0 10
May 2023 0/0 0 5
April 2023 0/0 0 9
View Data for all Listings

Unsuccessful Installs

Unsuccessful Installs in the last 7 Days: 0

Download last 500 errors (CSV)

Reviews Add new review

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