Do you have ListView in your application? I'm sure you do.
Have you ever try to change color of fading edge of the list? I think you did.
For those of you who still struggling with edge color - I found really elegant way to change color:
<ListView
...
android:cacheColorHint="#00000000"
...
/>
I did put transparent white color (#00000000) to achieve nice looking integration of the ListView with the rest of UI elements...