Im having this problem I cant get rid of on froyo and gingerbread. I am using clipToPadding="false" attribute to not have the top and bottom padding around listView unless its ends. However on 2.2 and 2.3 this with the clipToPadding, causes the overscroll indicator or how should I call it, to ignore my clipToPadding setting and makes those white lines appear on my images not the screen edges.
This is however not present on ICS
I believe those white lines you're seeing are the fadingEdge
of the ListView
. You can get rid of them by adding this attribute to your ListView
in xml:
android:fadingEdge="none"
or in code:
listview.setVerticalFadingEdgeEnabled(false);
In ICS and forward, fading edges are disabled by default which is why you don't see them.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With