Roku Developer Program

Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
nithyaak
Visitor

How to implement Roku's Setting like screen

Hi,
I would like to implement similar to "Settings" screen in Roku player. How can i do that.? I looked at the ListScreen sample and can able to display content in "Lists", however, when I selected a item, it displays a short description and an image but I want display another list screen/content in texts, like what Roku's Settings menu does. (e.g I would like to mimic roku (Home button) -> Settings -> About or Settings -> Network )
Any sample code would be much appreciated.

Thanks
0 Kudos
2 REPLIES 2
EnTerr
Roku Guru

Re: How to implement Roku's Setting like screen

I don't think the exact component used in Roku main screen is available. But you can implement functionality resembling that (sans the neat side-scroll) with roListScreen: when you get roGridScreenEvent, check if msg.isRemoteKeyPressed() and msg.getIndex() = 5 (right arrow), to show next screen. Ditto for msg.isListItemSelected() you get on OK.
0 Kudos
nithyaak
Visitor

Re: How to implement Roku's Setting like screen

Thanks for the suggestion.
0 Kudos