Home > Blockchain >  How to set feding at the bottom of recyclerview on xml?
How to set feding at the bottom of recyclerview on xml?

Time:08-07

what I am trying to do is set a fading to the recyclerview but just at the bottom item when scroll has to be done, when the amount of items is bigger than the screen.

I have tried

    android:fadingEdge="vertical"
    android:fadingEdgeLength="150dp"
    android:requiresFadingEdge="vertical"

But this sets fading to both top and bottom and I am just looking for bottom.

Any help or suggestion would be great, thanks

CodePudding user response:

maybe you can add an image view with transparent background at the bottom of your recyclerView

  • Related