Kalina
Kalina

Reputation: 5594

Fading at the bottom of a scrollable list on Android?

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?

Upvotes: 6

Views: 5694

Answers (1)

Kalina
Kalina

Reputation: 5594

Found my own answers:

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

EDIT: changing to dp instead of sp

Upvotes: 29

Related Questions