I'm working on an Android Project as a junior developer and am still learning as I go, I'm having a bit of a design issue and was wondering if somebody could enlighten me.
I have to display items on a horizontal list, I've done so with a RecyclerView, I can only have three items on screen at a time (one centered and two partially visible) and I'm always keeping one in the center thanks to a LinearSnapHelper. The problem I'm having is that the items on the side need to have a lower alpha than the one in the middle (0.5 vs 1). Ideally I would like to make them fade out and in progressively while the user I scrolling but I am completely at a loss as to where I am supposed to do this.
Is there a clean way to do this ?
Thank you very much :)