Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get rid of the overscroll glow

I have a listview with overscroll mode on - (I need it on)

And there is a blue overscroll glow everytime I overscroll

how do I get rid of the overscroll glow ?

EDIT:

I am using a custom listview that streches the overscroll drawable (picture) - the way it should be however, along with the picture there is a glowing effect which i want to get rid of

see the blue thing above the image?

the image IS the overScrollDrawable - but i want the same thing - without the glow

enter image description here

like image 672
Lena Bru Avatar asked Oct 22 '13 10:10

Lena Bru


2 Answers

android:overScrollMode="never"
like image 195
pengwang Avatar answered Nov 04 '22 13:11

pengwang


You just need to set your ListView property fadeEdge to none in your layout xml file and you will not get the shadow blue on OVERSCROLL.

android:fadingEdge="none"

EDIT:

this is now deprecated, you can use android:overScrollMode="never" instead.

like image 28
GrIsHu Avatar answered Nov 04 '22 14:11

GrIsHu