Android Question How to make Apps with Awesome UI and modern Style

M.LAZ

Active Member
Licensed User
Longtime User
Hi ,,
When I design an application I always have a problem of choosing the appropriate interfaces and the mode of data entry with the users.

I have seen many applications with beautiful interfaces, which are often based on graphic designers,
Also depends on the developer to choose a new style and tools and views , which some of them i did not even know their name and even have a problem in googling for them.

I wish to collect all new tools,views and styles in the forum with pictures and example, cos when you see an app with new style , views , tools or ui lib you can update your idea and use this new style..

i suggest to add a section named like B4A UI ,B4I UI,,,, with the new interface styles
with pics/screen shots and some examples...

i'm still use an old styles for data input and dialogues..

i Attached some screen shots of some apps with awesome UI interfaces .
 

Attachments

  • form1.png
    form1.png
    169.9 KB · Views: 1,008
  • form2.png
    form2.png
    189.4 KB · Views: 950
  • form3.png
    form3.png
    171.9 KB · Views: 889
  • form4.png
    form4.png
    200.6 KB · Views: 870
  • form5.png
    form5.png
    172.9 KB · Views: 850
  • Screenshot_2017-11-08-22-20-13.png
    Screenshot_2017-11-08-22-20-13.png
    157.5 KB · Views: 907
  • Screenshot_2017-11-08-22-21-09.png
    Screenshot_2017-11-08-22-21-09.png
    130.5 KB · Views: 777
  • Screenshot_2017-11-08-22-21-42.png
    Screenshot_2017-11-08-22-21-42.png
    135.1 KB · Views: 722
  • Screenshot_2017-11-08-22-29-03.png
    Screenshot_2017-11-08-22-29-03.png
    248.6 KB · Views: 783
  • Screenshot_2017-11-08-22-29-11.png
    Screenshot_2017-11-08-22-29-11.png
    232.1 KB · Views: 790
  • Screenshot_2017-11-08-22-29-18.png
    Screenshot_2017-11-08-22-29-18.png
    184.1 KB · Views: 801
  • Screenshot_2017-11-08-22-29-22.png
    Screenshot_2017-11-08-22-29-22.png
    231.1 KB · Views: 922
  • search progress.png
    search progress.png
    174.6 KB · Views: 726

Emme Developer

Well-Known Member
Licensed User
Longtime User
Start with this:
https://www.b4x.com/android/forum/t...best-ui-design-for-everyday-use-thanks.85387/

Don't forget Material Design :)

Progress bar: https://www.b4x.com/android/forum/threads/b4x-xui-custom-view-circularprogressbar.81604/#content

Top bar name is Status bar. Color is based on appcompact theme, but you can Always change the color programmatically
https://www.b4x.com/android/forum/threads/theme-colors-for-material-design.68286/#content

Start with this tutorial: https://www.b4x.com/android/forum/threads/material-design-1-basics.48077/#content


By the way, a good app should me made from a team with at least one developer and one
designer. UX designing is not simply the act of making a "good" UI
 
Last edited:
Upvote 0

M.LAZ

Active Member
Licensed User
Longtime User
thank you guys so much..


then how to make a guide steps like this in my app :
 

Attachments

  • Screenshot_2017-11-08-22-29-03.png
    Screenshot_2017-11-08-22-29-03.png
    248.6 KB · Views: 365
Upvote 0

M.LAZ

Active Member
Licensed User
Longtime User
and also how to do this when fill application form?
 

Attachments

  • form2.png
    form2.png
    189.4 KB · Views: 390
  • form3.png
    form3.png
    171.9 KB · Views: 346
Upvote 0

sorex

Expert
Licensed User
Longtime User
just add a panel of 1dip and full scroll panel height and place the numbers with extra white (background color) border on top of it?
 
Upvote 0

icarus

New Member
Licensed User
dont forgot the "InitializeContex" , sorry :(


B4X:
Dim jo As JavaObject
    jo.InitializeContext
    jo.RunMethodJO("getWindow", Null).RunMethod("setStatusBarColor", Array(Colors.RGB(45,136,121)))

and how to change the text color on status bar?
 
Upvote 0
Top