Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android: remove divider of some listitems in listview

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!

like image 849
Xander Avatar asked Mar 20 '13 19:03

Xander


2 Answers

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.

like image 79
user1666456 Avatar answered Sep 17 '22 16:09

user1666456


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
like image 39
William Kinaan Avatar answered Sep 17 '22 16:09

William Kinaan