Domanda

I've created a listview with a BaseAdapter. I want some of the listitems to have a divider, but from some of the listitems, I want to remove the divider. I know you can remove the divider of the whole list by setting .setDivider(null) and .setDividerHeight(0), but is it also possible to remove the divider from a single listitem inside a list?

Thanks in advance!

È stato utile?

Soluzione

You could disable the divider for the whole list and set a custom View for each ListItem, e.g. setting different background drawables with or without a bottom border.

Altri suggerimenti

Yes you can remove divider from specific list items using the `getView` method in your adapter (which extends the baseadapter)

ofc you have something like data in your adapter which refers to the data been displayed into the listview, so in your getview method check for the specific items like this:

if(data[position].ID == YourElemetnsID)
inflate with the specific list item layout
else
inflate with the general list item layout
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top