how can I set the width of my custom ListView divider, in order to have it smaller than my row width?

Thanks

link|improve this question

78% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Make a 9 patch png that has transparent pixels on the left and right. For example, a 53x4 .9.png that has 25 transparent pixels either side (+ pixels to 9patch it) would stretch the 1 pixel out so there is 25 pixels either side of it.

link|improve this answer
1  
beat me by 24 seconds =p – Tim Nov 4 '11 at 13:48
You wasted time putting in the link to the setDivider call :P I assumed he knew how to change the divider, just not what too. – FunkTheMonk Nov 4 '11 at 13:53
feedback

You should be able to call

mListView.setDivider(Drawable d);

And pass it a drawable that you can include in your res/drawable folders. If you want to make it go almost all the way across you could just make a 9 patch that contains a horizontal line with as much transparency on the left and right sides as you want. And set it to stretch the middle portion of the line.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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