Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android listview shadow

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

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

like image 331
rzajac Avatar asked Jul 10 '10 22:07

rzajac


2 Answers

<ListView 
   android:fadingEdge="none"
   ...
/>
like image 155
Fedor Avatar answered Oct 06 '22 02:10

Fedor


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.

like image 30
Redsmurf Avatar answered Oct 06 '22 02:10

Redsmurf