I am suing cusotm row view in Listview widget.

i am having getview method in my implementation.

What i want that i want to hide divider image of 2nd row how can i do it ?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

If you're talking about the image that displays when you call setDivider, or android:divider in XML, I don't think you can hide it on some rows and show it on other rows.

Instead, you can create a PNG (probably with draw9patch) with a border on the top or the bottom, and in your ListAdapter.getView() set it as the background on whatever rows you want. On the other rows, you can set a background that has no border. This will give the appearance that some rows have a divider, and others don't.

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.