Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Horizontal recyclerview with fading edges

Tags:

If I look at the stackoverflow app's horizontal recyclerview, I can see that they use the "fading edge" technique so that the user will know that there are items on the left and right of the recyclerview and he / she can scroll.

stackoverflow

In listview, I think this effect is enabled by calling the below as described by Romain Guy (http://www.curious-creature.com/category/android/page/2/):

android:cacheColorHint="#00000000"

No such option exist in Recyclerview unfort. Is there a built in method to allow for these fading edges for recyclerview or will it just have to be a hack?

like image 809
Simon Avatar asked Nov 15 '15 14:11

Simon


1 Answers

I think the attribute you are looking for is:

android:requiresFadingEdge="horizontal|vertical" 

you can search and better understand this attribute from the recycler view's documentation.

The other attribute you are talking about, 'cacheColorHint', can be used to match the fading color with that of your background. This attribute is the color upon which the list view is drawn, and is defined as an opaque color, because you don't always have a white background (which I think is the default color... but I'm not sure), the best option is to use a transparent color, "#00000000", as suggested by Romain Guy.

Hopefully this is what you are looking for!

Cheers

like image 177
Juan Avatar answered Oct 09 '22 20:10

Juan