I'm using ListActivity with my own ArrayAdapter class. When I override the methods ArrayAdapter.areAllItemsEnabled() and ArrayAdapter.isEnabled() the divider between some cells in the list view disappear. Does anyone know how to avoid this? I need the dividers to display even for disabled cells.

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

Return true in areAllItemsEnabled() and false in isEnabled for specific item. The disabled item wont be clickable but you will still be able to view the divider lines

link|improve this answer
Great, this works. Thank you very much. – saric Apr 1 '11 at 12:01
feedback

use setDivider(Drawable divider) method of the listview

link|improve this answer
Thanks for the answer. I tried to set the divider but the problem still retains. I found out that the divider disapears when the methods ArrayAdapter.areAllItemsEnabled() and ArrayAdapter.isEnabled() both returns "false". Do you have any ideas, how to solve my problem. Thanks in advance. – saric Mar 30 '11 at 8:23
feedback

I can verify that when areAllItemsEnabled() returns false, then for every specific row that you want to set as non-selectable via isEnabled(int position) the line separator (divider) disappears. Setting areAllItemsEnabled() to always return true, and playing just with isEnabled(int position) should make specific rows non-selectable with the divider showing just fine.

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.