Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

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

share|improve this question

2 Answers

up vote 48 down vote accepted
<ListView 
   android:fadingEdge="none"
   ...
/>
share|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

Be sure to watch your padding on the ListView. I had a Linear Layout that was in shade at the top and bottom, this was because I had set padding on the layout above and below, so it is crucial that you look at the padding.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.