I use my own icon image as indicator for ExpandableListView, but the icon seems to be stretched, I tried to put the image file in /drawable and /drawable-hdpi with no luck. If I do not use my own icon, the built-in Android one looks nice, so I wonder is there any restriction on image dimension, or is there anything I've done wrong?

Thanks!

link|improve this question

65% accept rate
feedback

1 Answer

up vote 4 down vote accepted

The expandable list is a pain. It always stretches the icons. An easy solution is to use a nine patches images which contains only a stretchable pixel at both top and bottom. Thus only those two pixels are stretched and the rest of your image remains unmodified.

hope this make sense

link|improve this answer
"only a stretchable pixel at both top and bottom", does it mean there is no stretchable pixel on left/right? – hzxu May 30 '11 at 8:48
also, my icons is a solid circle with a triangle inside, it looks like impossible to make this to be a nine patch. – hzxu May 30 '11 at 8:54
when I do not use my own icon, the Android's built-in icon is not stretched, so I suppose there is a way to solve the problem. – hzxu May 30 '11 at 9:04
to see an example, search for expander_ic_maximized.9 in the Android resources folder. That is the icon that Android uses by default for expandable list and it has the pixels that I mentioned. – omega May 30 '11 at 10:16
thanks, it looks like expander_ic_maximized.9 is a nine patch image, but in my case, it is impossible to make it nine patch, also, even it is nine patch, it appears smaller than my stretched icon. – hzxu May 30 '11 at 23:06
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.