Changing list view thumbnail size
#1
i've looked in references.xml and found how to change the thumbnail size of the icon views, but how do i change the thumbnail size in list view?

<control>
<description>default listcontrol</description>
<type>listcontrol</type>
<id>10</id>
<posx>211</posx>
<posy>100</posy>
<width>450</width>
<height>360</height>
<spinwidth>18</spinwidth>
<spinheight>16</spinheight>
<spincolor>ddffffff</spincolor>
<spinposx>625</spinposx>
<spinposy>438</spinposy>
<textureup>scroll-up.png</textureup>
<texturedown>scroll-down.png</texturedown>
<textureupfocus>scroll-up-focus.png</textureupfocus>
<texturedownfocus>scroll-down-focus.png</texturedownfocus>
<texturefocus>list-focus.png</texturefocus>
<texturenofocus>list-nofocus.png</texturenofocus>
<image>icon-folder.png</image>
<textureheight>25</textureheight>
<font>font13</font>
<selectedcolor>ffffffff</selectedcolor>
<textcolor>ffffffff</textcolor>
<textcolor2>60ffffff</textcolor2>
<colordiffuse>ffffffff</colordiffuse>
<suffix>|</suffix>
<textxoff>3</textxoff>
<textxoff2>0</textxoff2>
<aligny>center</aligny>
</control>
Reply
#2
modify this one:

<textureheight>25</textureheight>
XBMC Italian translator, Movieplayer.it scrapers developer and the old "The Orbs" skin creator.
Reply
#3
that doesn't actually make the thumbnail larger, just the row height. the thumbnail itself is still the same size, there's just more space around it.
Reply
#4
yep sorry, i was wrong :talktohand: but i did it long time ago in the orbs :d

you need to add this:

<itemwidth>100</itemwidth>
<itemheight>110</itemheight>

these tags are used in big list control in mymusicnav.xml for example.
XBMC Italian translator, Movieplayer.it scrapers developer and the old "The Orbs" skin creator.
Reply
#5
that was it, thanks.
Reply
#6
Can any one tell how to change the default view of Videos, Music, Picture to Thumbnail in xml so that when it will load,load it as thumbnail

which xml will i have to change and what to write ?
Reply
#7
In these windows the viewtypes to load are between the <views> tag at the top of the .xml's like MyVideoNav.xml.

The order in which these ID's are listed determines in which order they appear.

So in this example:

PHP Code:
<views>50,51,52</views

The viewtype with ID 50 is the default view.

Which ID is for used for thumbnails is mostly skin specific. So, you'll need to find out that ID first.
Reply
#8
(2014-03-18, 11:25)Jeroen Wrote: In these windows the viewtypes to load are between the <views> tag at the top of the .xml's like MyVideoNav.xml.

The order in which these ID's are listed determines in which order they appear.

So in this example:

PHP Code:
<views>50,51,52</views

The viewtype with ID 50 is the default view.

Which ID is for used for thumbnails is mostly skin specific. So, you'll need to find out that ID first.

I am using confluence skin and id=500 is for Thumbnail

I want only Thumbnail view ant not other and also do not want Sidebladeleft because i need only Thumbnail

Can you please help.........
Reply
#9
(2014-03-18, 11:59)manoj Wrote: Can you please help.........

I just did...
Reply
#10
(2014-03-18, 12:49)Jeroen Wrote:
(2014-03-18, 11:59)manoj Wrote: Can you please help.........

I just did...

MyVideoNav.xml having these views <views>50,51,500,550,551,560,501,508,504,503,515,505,511</views>

i have changed it to <views>500,51,50,550,551,560,501,508,504,503,515,505,511</views> as you told and created new xbmc apk

when i install this apk again i am getting id=50 as default

can you give any more clue
Reply
#11
One thing to keep in mind is that this viewtype loading order is only really relevant the first time you open a specific path.
After that, it will remember what you last set it to for that path/source/node. So when changed from the default to another viewtype, it will remember the last one, not the one first in the <view> tag
Reply
#12
(2014-03-18, 13:44)Jeroen Wrote: One thing to keep in mind is that this viewtype loading order is only really relevant the first time you open a specific path.
After that, it will remember what you last set it to for that path/source/node. So when changed from the default to another viewtype, it will remember the last one, not the one first in the <view> tag

Thanks for your help

I have done this.
i have removed all ids and kept only one id=500
it is taking only Thumbnail view

But i have to remove the SideBladeLeft so it should not come

any help...........
Reply
#13
(2014-03-18, 14:34)manoj Wrote:
(2014-03-18, 13:44)Jeroen Wrote: One thing to keep in mind is that this viewtype loading order is only really relevant the first time you open a specific path.
After that, it will remember what you last set it to for that path/source/node. So when changed from the default to another viewtype, it will remember the last one, not the one first in the <view> tag

Thanks for your help

I have done this.
i have removed all ids and kept only one id=500
it is taking only Thumbnail view

But i have to remove the SideBladeLeft so it should not come

any help...........


Thanks

i have removed SideBladeLeft also

now i have to remove the Getmore and Going back item from this.

do you have any idea...........
Reply
#14
library listings are handled by XBMC internally, skins cannot modify these

But you can remove these entries by going to settings -> appearance -> file lists

and then disable "show parent items" and " show add source buttons"
Reply
#15
If there is a need to change in any CPP file then please tell which file will i have to edit.

That means which file is giving this list ?

or can i disable "show parent items" and " show add source buttons"

writing in advancedsettings.xml file
Reply

Logout Mark Read Team Forum Stats Members Help
Changing list view thumbnail size0