Remove the bottom divider of an android ListView
I have a fixed height ListView . It has divider between list items, but it also displays dividers after the last list item. Is there a way to not display a divider after the last item in ListView ? Just add android:footerDividersEnabled="false" to your ListView description As @ScootrNova said, this seems to be behaving differently (a.k.a buggy) in android 4.4.x (I don't know exactly when the problem is introduced) This is related to the specific case of using using padding + clipToPadding="false" - in 4.4.x the footer is drawn outside of the view but clips to padding reveals it. The solution I