Android - How to change color of an ScrollView/ListView Overscroll?(see Desc. for example)
android
Solution
Use the following attributes in your xml `ListView`
android:overScrollHeader="@drawable/the_header"
android:overScrollFooter="@drawable/the_footer"
Or you can do it programmatically, too:
SetOverscrollHeader(R.drawable.the_header);
setOverscrollFooter(R.drawable.the_footer);
These methods and attributes are only available since API 9; they won't work on the previous versions.
Problem
Possible Duplicate: Changing the color of over scroll in scrollview in android I wanted to ask, if somebody knows how to change the color this "overscroll"? I know you can get rid of it by calling `setOverscrollmode="never"`. But how do you cahnge its color? Here the Picture, so you know what I mean: Thanks