How can i get rid of the shadow when I scroll ListView.

I have shadows appearing on top and bottom of the list.

link|improve this question

56% accept rate
feedback

2 Answers

up vote 36 down vote accepted
<ListView 
   android:fadingEdge="none"
   ...
/>
link|improve this answer
In code you can do that with setVerticalFadingEdgeEnabled and many other methods that control it. Look at: developer.android.com/reference/android/view/View.html – Ralphz Jun 8 '11 at 23:27
feedback

Simply add this attribute in list view:

android:fadingEdge="none"
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.