I would like to remove or change color of image overlay at the end of ListView (Android Honeycomb). In the screenshot which I attached, I mean the blue image effect on the bottom of list. It is not android:cacheColorHint - it must be something else and I don't know what. Can somebody help me? Thanks!
Asked
Active
Viewed 1,022 times
2
-
1the below thread suits your needs.Hope it helps. http://stackoverflow.com/questions/5897909/how-can-i-change-the-overscroll-color-in-android-2-3-1/6623169#6623169 – drooooooid Nov 11 '11 at 12:16
2 Answers
2
The API level 9 introduced the function onOverScrolled() for ListViews.
listView.setOverScrollMode(View.OVER_SCROLL_NEVER);
http://developer.android.com/reference/android/view/View.html#setOverScrollMode(int)