How I can hide or delete certain listview separator? Of course I can hide all dividers

getListView().setDivider( null ); 
getListView().setDividerHeight(0); 

but I need hide one or two dividers in my listview. for example by position. I am using custom Adapter for list data. Thanks.

link|improve this question

48% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You can either create a custom View for each ListItem where you can turn on or turn off the separator, or you can create a separator view that you add into your list view at the proper locations.

link|improve this answer
I have a custom layout for list item. But I dont know how to add or remove divider on each item. I suppose than divider is common thing for all listview. – Georgy Gobozov Sep 19 '11 at 22:05
so simply add a seperator looking view to the top or bottom of the layout and set it visible or invisible – slayton Sep 19 '11 at 22:23
slayton, sorry but dont undestand you. You talks that I can add a divider in my list item, but this divider what it is? TextView, ImageView etc? In listview prpoperties there is divider property - common for all list. How I can set up this property for every item? Maybe you mean disable "native" dividers as mentioned in my code above and emulate divider as additional view in my list item view? Right? – Georgy Gobozov Sep 19 '11 at 22:51
@Georgy gobozov. " Maybe you mean disable "native" dividers as mentioned in my code above and emulate divider as additional view in my list item view? Right? " yes this – slayton Sep 19 '11 at 22:54
feedback

Your Answer

 
or
required, but never shown

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