How do I add an image to the Media Info page?
#1
I am writing an addon that scapes video feeds from a website. I have almost everything working, except this:

How do I add an image to the 'Media Info' screen? I have called both ListItem.setThumbnail() and ListItem.setIcon(), neither have any effect - I just get the default skin image. Thumbnails appear to be working fine.

Cheers,
Andrew.

Image
Reply
#2
On line 65 of bmctv_main.py change this:

li = xbmcgui.ListItem(label=item["title"], thumbnailImage=info["thumbnail"])

to this:

li = xbmcgui.ListItem(label=item["title"], thumbnailImage=info["thumbnail"], iconImage=info["thumbnail']) or whatever other image you have that's appropriate.

Nice addon.
Reply

Logout Mark Read Team Forum Stats Members Help
How do I add an image to the Media Info page?0