if footerview added in listview, then divider disappears from last item of listview.

even i have set android:footerDividersEnabled="true" with listview and my footer view is just textview.

link|improve this question

78% accept rate
feedback

3 Answers

up vote 5 down vote accepted

The ListView implementation in Android never draws dividers between items that are disabled, which if you are just calling the addFooterView(View v) method then by default your footer will be.

Instead you need to call the addFooterView(View v, Object data, boolean isSelectable) method with isSelectable set to true. You can just pass null for the data object if you don't need it.

link|improve this answer
Yes, added a footerView like this: listView.addFooterView(view, null, true) , and it worked fine... thanks – Zoombie Apr 17 '11 at 11:13
feedback

Setting isSelectable to true didn't work for me, maybe because I was also calling removeFooterView when my list was done loading.

What finally fixed it for me was setting android:layout_height to "fill_parent" instead of "wrap_content" on the ListView.

link|improve this answer
feedback

This almost worked for me. I was after a divider after the last list item, but not after the footer as my footer was empty space. I ended up adding two footers, one selectable of zero height and one not selectable containing the padding.

TextView view = new TextView(this);
view.setLines(0);
TextView view1 = new TextView(this);
view1.setLines(4);
mListView.addFooterView(view, null, true);
mListView.addFooterView(view1, null, false);
mListView.setFooterDividersEnabled(true);
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.