I've read the Google TV Design Patterns article and still can't figure out how to change the default "global" zone size/position or how to get more than one item to show up in it.
There are some vague (to me) statements. E.g.: "Because the global zone persists throughout the life of the application, you should not allow it to take up too much screen space.". (OK, how do I change it in the layout?)
It then states that the global zone "[...] holds all of the top-level 'global' items in your application hierarchy [...]". Then goes on to state "It also contains all the categories for your application [...]"
What is considered a global item? An activity with a "LAUNCHER" and "MAIN" <intent-filter> category and action? (Tried that and no joy)
What do "categories" mean? Categories as defined in each activity's <intent-filter> "category" manifest entry? (Tried that too and no joy)
I've run through the SDK's ApiDemos code relating to Fragments and it's not jumping out at me. I have successfully ported part of an existing app to extend Fragment and ListFragment but for the life of me can't figure this one out.