Reputation: 1903
I'm relatively new to Android development, so bear with me. I'm creating an app that features many calculations and formulas for weather, distance, speed, etc. Anyway, I'm looking to create the main menu with rows of buttons similar to how the iPhone does it, i.e. you press one button row and it takes you to the next page of a rows of buttons.
Sort of like:
Is this done using layouts and controls or a menu?
Upvotes: 0
Views: 56
Reputation: 23483
Your best bet would be to use a list view. I did this where you would have a list of items, similar to your home, About Drupal, Typography, etc., and then when the user clicked on one of those buttons, you would be taken to a detail page, or in Android's case, another Activity
. Here is a great tutorial that will show you how to implement the list view:
http://www.ezzylearning.com/tutorial.aspx?tid=1763429
Hope this helps.
Upvotes: 1