Akash Shinde
Akash Shinde

Reputation: 955

Is there any other method to creating UI for android application rather than XML?

It seems to difficult to creating UI for android application using XML layout (:at least for me).is there any plug-ins or any other method by which I can create UI for Android application ??

Upvotes: 0

Views: 144

Answers (2)

Raghav Sood
Raghav Sood

Reputation: 82573

It is difficult at first but once you're used to it it is second nature. If you intend to take up Android development seriously, XML UIs is an essential skill and you should learn it well.

That said, the Eclipse setup for Android has a GUI layout maker as well, and there is DroidDraw as well.

You can also recreate about 95% of XML layouts using Java code if it suits you better.

Upvotes: 1

Ravit D
Ravit D

Reputation: 907

Check out http://developer.android.com/tools/help/adt.html which has GUI design tools. It's pretty easy, you can just drag and drop the widgets you like.

Upvotes: 0

Related Questions