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.
|
|
|
The Instead you need to call the |
|||
|
|
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. |
|||
|
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.
|
|||
|
|
|
Try setting the
When the
|
|||
|
|