Good user interface for Android

I am developing an Android application for my university project. I developed an interface with a built-in XML editor in eclipse, but it does not give a good look. I have seen many applications with good and easy user interface integration, but I don’t know how they did it. I did an internet search and found that HTML was used to develop the user interface, but did not find a good tutorial. if you can tell me a good tutorial user interface generator to find out what would be great. I participate in android, so I will be grateful for your kind help.

Thanks.

+4
source share
2 answers

Dimal, there is no royal shortcut for developing good user interfaces. This is why some program the call of "art." The Eclipse plugin is not so bad. A separate tool is DroidDraw, but I doubt you will like it. My advice is to go through all the applications in the samples directory and in APIDemos. Select the parts you need and use the code. You can also create your own custom views by extending the View class and overriding the Draw method. Basically, there are no restrictions on creating graphical interfaces on Android.

+3
source

The best user interfaces for Android are rarely created with a user interface tool. To have good control over everything, you will want to edit the XML yourself.

This is really not all that scary, and eclipse tools do a good job of autocomplete and point out problems.

0
source

Source: https://habr.com/ru/post/1442368/


All Articles