2

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!

enter image description here

petrnohejl
  • 7,581
  • 3
  • 51
  • 63
  • 1
    the 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 Answers2

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)

WEFX
  • 8,298
  • 8
  • 66
  • 102
tmbs
  • 43
  • 6
0

Set this on property on your ListView:

android:fadingEdge="none"
Carson Reinke
  • 713
  • 5
  • 16