Ibad Baig
Ibad Baig

Reputation: 2294

Android UI home screen design

I am up to create a section on my Android Home screen similar to this one,

Icons

but cannot really figuring out where to start. I mean is this a ListView I should go with? or are these simple images that are placed as different objects surrounded by straight lines? In either case, how to put these things together, is a question that I am wondering..

Upvotes: 0

Views: 1826

Answers (1)

Vincent Mimoun-Prat
Vincent Mimoun-Prat

Reputation: 28541

You can either use:

For the buttons, use TextView or Button with a top drawable.

Please note that the dashboard pattern is now discouraged (link 1, link 2) (you should present useful information to the user on first screen such as there latest trips, friend's news, ...).

Instead of that, you could put your buttons in a sliding menu (jfeinstein has a nice implementation on github which can be integrated within an hour)

Upvotes: 1

Related Questions