Hi,
I want to create an sports application that contains the following.
- TabHost with three main categories. (News, Tables, live score)
- The news category will have 2 sub categories. (Team news, league news)
- Tables will have 3 sub categories. (Table, Stats, Schedule)
- Live score will just Be a ListActivity.
How should I design this? Should all main categories be separate activities? Should my sub categories be activities or just views?
If my sub categories are views i guess i would have to keep track of which view is the current to update/display the proper information.
Also how do i switch between views? Lets say i want to go from view 1 to 3? Using ViewFlipper i can only go to the next one step at the time.
Thanks!