PDA

View Full Version : Changing list view thumbnail size


Elevated
2005-09-29, 18:35
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>

KoTiX
2005-09-30, 01:11
modify this one:

<textureheight>25</textureheight>

Elevated
2005-09-30, 02:49
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.

KoTiX
2005-09-30, 10:11
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.

Elevated
2005-10-05, 00:20
that was it, thanks.