roListScreen/roParagraphScreen Background

Hi,
I have been reading the documentation and have been playing with some examples too but could not find a way to set the background of ListScreen or ParagraphScreen to an image. Or if it is not possbile have the color as transparent. Can anyone of you please help?

Thanks.

For roListScreen, you want SDBackgroundImageUrl, HDBackgroundImageUrl http://sdkdocs.roku.com/display/sdkdoc/ … +Meta-Data

roParagraphScreen doesn’t support anything but a solid color for a background.

“RokuChris” wrote:
For roListScreen, you want SDBackgroundImageUrl, HDBackgroundImageUrl http://sdkdocs.roku.com/display/sdkdoc/ … +Meta-Data

roParagraphScreen doesn’t support anything but a solid color for a background.

Thank your for the reply. But I believe SDBackgroundImageUrl/HDBackgroundImageUrl will give me an image on the right side of screen associated with the focused item.
What I need is a full background image regardless of the focused item.

Thanks.

SDBackgroundImageUrl/HDBackgroundImageUrl are associated with the items, but they are displayed in the background starting in the upper-right corner, just below the overhang, so if you supply a full 1280x720 image, it’ll appear as the background of the screen. Note that this can slow navigation a bit as the screen updates the image while you scroll through the list.

“TheEndless” wrote:
SDBackgroundImageUrl/HDBackgroundImageUrl are associated with the items, but they are displayed in the background starting in the upper-right corner, just below the overhang, so if you supply a full 1280x720 image, it’ll appear as the background of the screen. Note that this can slow navigation a bit as the screen updates the image while you scroll through the list.

Thank you for the info. The image worked but I couldnt get the results I wanted. I wanted a list of scrollable text with an checkmark at the left side. But with list screen, I could not get the small icon on the left. Also, the title wont diplay the full text, it will only diplay partial text followed by “…”.
I believe I can create my own custom scrollable text area through roregions and bitmaps. Can you please confirm.

The screens you are using do not expose a drawable interface. So even if you created bitmaps you would not be able to display them yourself. There is no drawobject or drawtext like the 2D. Perhaps you should look at the imagecanvas or Scene Graph as was suggested

“NewManLiving” wrote:
The screens you are using do not expose a drawable interface. So even if you created bitmaps you would not be able to display them yourself. There is no drawobject or drawtext like the 2D. Perhaps you should look at the imagecanvas or Scene Graph as was suggested

Thank you for the information. If I go with the Scene Graph route, I believe it is still in beta phase and will not be compatible for older devices. Isn’t it?

“bcoding” wrote:
Thank you for the information. If I go with the Scene Graph route, I believe it is still in beta phase and will not be compatible for older devices. Isn’t it?
It will be available on all “current” Roku players, which includes devices all the way back to 2011, once the 7.0 firmware rolls out to all players. The only players excluded are the obsolete “classic” models, which Roku dropped support for a few months ago.

“TheEndless” wrote:

“bcoding” wrote:
Thank you for the information. If I go with the Scene Graph route, I believe it is still in beta phase and will not be compatible for older devices. Isn’t it?
It will be available on all “current” Roku players, which includes devices all the way back to 2011, once the 7.0 firmware rolls out to all players. The only players excluded are the obsolete “classic” models, which Roku dropped support for a few months ago.

Thanks. By the way are there any other resources/examples that I can look to for Scene Graph other than the documentation.