Fading at the bottom of a scrollable list on Andro

2020-06-17 15:31发布

问题:

I have a long ListView with a white background (android:background="@android:color/white") and transparent cache color (android:cacheColorHint="#00000000"). Two questions:

  1. I am testing on a variety of devices. On older ones, the fade works fine. But on the newer ones, I am not seeing any fade at all, just a sharp cutoff. Why might that be and how do I fix it?

  2. A lot of the times the elements in my list line up so that there is just enough whitespace at the bottom, that the fade doesn't reach the text and is not visible. Is there a way to make the fade cover more of the list?

回答1:

Found my own answers:

  1. android:requiresFadingEdge="vertical"
  2. android:fadingEdgeLength="48dp"

EDIT: changing to dp instead of sp