Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Divider disappears from last item in listview if footerview added

If footer view 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 TextTiew.

like image 320
Zoombie Avatar asked Apr 14 '11 10:04

Zoombie


1 Answers

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.

like image 151
inky Avatar answered Sep 19 '22 13:09

inky