I want to create the following pseudo layout in android and I'd like some help to determine the best approach:
The months of the year will all be listed in buttons and when the user clicks on them an action will occur. The day of the month gets stored to storage if you need to know. The size of the circles are all the same and their behavior is identical, just their name is different (and they each store their own name of course). What is the best UI approach I can take in android to do this? I thought of a few things:
- obvious create 12 buttons for each day of the month and have onclicks that read there text and store it.
- create a custom button and programatically add 12 buttons to a linearLayout in code.
- could I somehow use a plural in android to get this done ?