problem with listview
#1
Please take a look at my partially stripped listview code:
http://pastebin.com/sdn9mpcL

The problem I am having is that whenever I choose a video from the listview and then stop the video, the listview returns to the top entry, instead of staying focused on the video that was started before.

I can't for the life of me figure out why... Oo

Any help would be appreciated

Jeroen
Reply
#2
Usually the cause of that problem is duplicating id's with different visibles, something like this:

Quote:<control type="list" id="50">
<visible>tvshows</visible>

Quote:<control type="list" id="50">
<visible>seasons</visible>

Quote:<control type="list" id="50">
<visible>movies</visible>

I had that same problem and so did the Backrow guys, they told me about the duplicating id's and once I switched this up it behaved correctly....
Image

Check out The Carmichael - A Skin For XBMC

Check out Night - A Skin For XBMC

Check out Unfinished - A Skin For XBMC
Reply
#3
Thanks a bunch, that was the problem. I use this listview for all mediatypes so they are all within the same container. But I do use another container with ID 50 for other parts, so that's where it went wrong. I can give that one another ID, but unfortunately I will have to code around some other obstacles in that case Sad

Thanks again Smile
Reply

Logout Mark Read Team Forum Stats Members Help
problem with listview0