Scrollable views such as the ListView have a fade out of the content along the edges where there is more content in that direction. How can I turn this fading off? I know you can change the cacheColorHint as discussed here: http://developer.android.com/resources/articles/listview-backgrounds.html but that is not what I am looking for and will not achieve what I am looking for in this case.

I want to disable the fade completely or be able to reduce the size and or transparency of it. Is this possible?

link|improve this question

feedback

1 Answer

up vote 28 down vote accepted

I can't actually test it right now, but I believe fadingEdge is what you're looking for:

android:fadingEdge="none"

or

listView.setVerticalFadingEdgeEnabled(false);

http://developer.android.com/reference/android/view/View.html#setVerticalFadingEdgeEnabled(boolean)

link|improve this answer
1  
That did it! Thank you. Also, I see there is a field called android:fadingEdgeLength for controlling the length of the fade. Thanks again. – littleFluffyKitty Nov 9 '10 at 4:39
You're welcome! Glad it did the trick. – kcoppock Nov 9 '10 at 4:41
A a big thanks to you! – Kevin Apr 12 '11 at 19:25
Wow! I have been looking for this the whole afternoon, you made my day :) – Amokrane Chentir Feb 21 at 17:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.