Add Info view mode
#1
Hi all, i'm writing my first add-on, the problem is i can't display movie description aside of listview.

I think this is "info" view mode, but in views i can select only:
  • list
  • big list
  • thmbnail
  • wide

How can i add "info" and "info 2"?

Thanks
Reply
#2
Read the documentation for the xbmcplugin dependency (http://mirrors.xbmc.org/docs/python-docs...lugin.html):

setContent(...)
setContent(handle, content)--Sets the plugins content.

handle : integer - handle the plugin was started with.
content : string - content type (eg. movies)

*Note: content: files, songs, artists, albums, movies, tvshows, episodes, musicvideos

example:
- xbmcplugin.setContent(int(sys.argv[1]), 'movies')
Reply

Logout Mark Read Team Forum Stats Members Help
Add Info view mode0