Hi! I am using the VideoPlayer template from the SDK and trying to implement the following idea:
Channel opens to a HomeScreen with 2 posters - Movies and TV Shows
Movies opens a PosterScreen with a a category for each genre (Action, Comedy, etc). I have this set up to work exactly how I want it.
TV Shows opens a PosterScreen with a poster for each TV Show. Now the idea is to have every one of these posters open ANOTHER PosterScreen. There will be a different PosterScreen for every TV Show, with the categories being seasons. My question is a) Is this possible? and b) how can I implement this.
If it is of any help, I am parsing from an XML which is currently structured like this:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<categories>
<category title="Movies" description="Lorem Ipsum" sd_img="http://www.url.com/image.png" hd_img="http://www.url.com/image.png">
<categoryLeaf title="Action" feed="http://www.url.com/examplefeedAction.xml"/>
<categoryLeaf title="Comedy" feed="http://www.url.com/examplefeedComedy.xml"/>
<categoryLeaf title="Drama" feed="http://www.url.com/examplefeedDrama.xml"/>
<categoryLeaf title="Family" feed="http://www.url.com/examplefeedFamily.xml"/>
<categoryLeaf title="Horror" feed="http://www.url.com/examplefeedHorror.xml"/>
<categoryLeaf title="Romance" feed="http://www.url.com/examplefeedRomance.xml"/>
<categoryLeaf title="Sci-Fi" feed="http://www.url.com/examplefeedSciFi.xml"/>
</category>
<category title="TV Shows" description="" sd_img="http://www.url.com/image.png" hd_img="http://www.url.com/image.png">
<categoryLeaf title="TV Shows" description="a" feed="http://www.url.com/examplefeedTV.xml"/>
</category>
</categories
And my TV Shows feed will look like this:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<categories>
<category title="TV Shows" description="" sd_img="http://www.url.com/image.png" hd_img="http://www.url.com/image.png">
<categoryLeaf title="Community" description="a" feed="http://www.url.com/examplefeedCommunity.xml"/>
<categoryLeaf title="Fresh Prince" description="a" feed="http://www.url.com/examplefeedFreshPrince.xml"/>
<categoryLeaf title="Game of Thrones" description="a" feed="http://www.url.com/examplefeedGoT.xml"/>
<categoryLeaf title="The Office" description="a" feed="http://www.url.com/examplefeedOffice.xml"/>
</category>
</categories>