The solution is to use setOverscrollFooter(null)
and setOverscrollHeader(null)
.
The documentation is here !
You can also set it directly in the XML :
<ListView android:overScrollMode="never" />
Or specify the footer and the header :
<ListView
android:overscrollHeader="@null"
android:overscrollFooter="@null" />
N.B. : There is also a property fadingEdge
that may interest you.
"Overscroll" methodes are supported starting API level 9
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…