Guide to Creating a UI for a Google Android App with DroidDraw

Guide to Creating a UI for a Google Android App with DroidDraw
Page content

Now the we know more about the components of an Android Application let me introduce you to a new element we can work with: DroidDraw.

https://www.droiddraw.org/

This is a User Interface designer/editor for Android written in Java. With this application (we can work on-line or on our desktop). We can also download it for Linux, Mac or Windows.

Once we have it on our desktop, it’s time to have a look at it.

On the left side we can see a rectangle area, like our phone screen. This is the place where we are going to “draw” our UI. Above this screen we can see two values:

Root Layout -> Here we can set which is going to be the root layout of our UI. It can be a LinearLayout, AbsoluteLayout, RelativeLayout, ScrollView or TableLayout. So this is our first container of elements we are going to use.

Screen Size -> Here we can choose the size of our screen, as if we had different kinds of mobile phones and different screen sizes.

On the right side, we have, now, lots of widgets, that’s because we are on the “widgets” tab. We can see the names of the others tabs.

  • Layouts
  • Properties
  • Strings
  • Colors
  • Arrays
  • Support.

On the lower right side we can see the output of our creation. Here, we can generate the XML code from the UI we have created on the left side. On the other hand, we could write our own XML code and load it to the screen. This is a good way of testing the XML parameters to get familiar with them.

We are going to use the most important ones (in my opinion). Let’s have a look at them.

Widgets Tag

On this tab we can find most of the widgets we can use with an Application – Buttons, Checkboxes, RadioButtons, Images, Galleries…

To use them, just drag one of the elements and drop it on the left side of the screen. The element will be placed, depending on which “Root Layout” we are using. For example, if we are using “LinearLayout” It will be placed on the top side of the screen. On the other hand if we are using “AbsoluteLayout” we can place it wherever we want. To learn more about layouts, please visit this article:

How-To Create User Interfaces (UI) Using XML: Layouts

Layout Tag

This tag is simple, we just have the Layouts (containers) and we can place them inside the screen. In this way, a Layout can hold more layouts inside it, so we can create more complex structures.

Properties Tag

Depending on which element we have selected on the left screen, the Properties screen will change. Here we can see and edit the parameters of each element. It’s very intuitive, we just have to change values in the InputBox. You can play with values to see how they affect the layouts and the elements on the screen. One we have changed something and want to see it on the screen, just press the Apply button.

String Tag

In this tag we can add Strings. This strings can be used in our UI. We can reference them from other parts of the application. Instead of writing them manually we just made reference to a String we have created before.

More About DroidDraw

This application has more features, if you want to know more about it, visit the web page, there you will find tutorials and much more. If you find any bugs in it, please contact the author (you will find his email address on the webpage).

This post is part of the series: How to- Develop Applications on Android: One more step

In this second Serie of articles we will continue working on Android and Eclipse.This time, we will see different resources to make Android apps development more easy.

  1. How to Create Your UI Using DroidDraw
  2. Guide to the Dalvik Debug Monitor Service for Android
  3. Working With The Android Source Code
  4. Guide to Using Google Android Databases
  5. Guide to Android Development Terms