You can customize the way users see the first container of your music service when they browse into it on the Sonos app. This is known as the root browse container. On larger devices such as tablets with screens 7 inches high or larger, the app’s default is to display icons as a grid. On devices smaller than 7 inches such as mobile devices, the Sonos app’s default is to display icons in a list. You can override this default behavior using the RootNodeDisplayType
in your presentation map. See Customize display for details.
To customize the root browse container, edit your presentation map file by adding a RootNodeDisplayType
element to your DisplayType
presentation map and specify a DisplayMode
of EDITORIAL
, GRID
, or LIST
. For example, the following presentation map displays the root container as a grid:
1 2 3 4 5 6 7 8 9 10 11 |
<?xml version="1.0" encoding="UTF-8"?> <Presentation> . . . <PresentationMap type="DisplayType"> <RootNodeDisplayType> <DisplayMode>GRID</DisplayMode> </RootNodeDisplayType> . . . </PresentationMap> . . . </Presentation> |