Issue With AddHeaderView And Missing List Separator
I'm using mList.addHeaderView(mHeader, null, false); in Android add an (unselectable) header to my list. When the list is rendered the header isn't selectable however the list sep
Solution 1:
Try
mList.addHeaderView(mHeader)
In you onItemClick method take in consideration the extra index.
Post a Comment for "Issue With AddHeaderView And Missing List Separator"