I want when the user scrolls horizontally in the recycler view the view holder of recycler view zoom a little bit like this. Like the first recycler view of the below picture.Thanks!
Asked
Active
Viewed 275 times
-2
-
you can do this much easier with `ViewPager2` – Zain May 04 '20 at 23:45
-
I would recommend implementing the top `RecyclerView` with a `ViewPager`. You can have the desired behavior following the answer here - https://stackoverflow.com/questions/9693836/fragmentpageradapter-swipe-to-show-listview-1-3-screen-width – Reaz Murshed May 05 '20 at 00:16
1 Answers
0
This can be easily created by android ViewPager2
follow this tutorial and use scale
effect to zoom your selected view a little bit. Here is android's official sample project of ViewPager2
, this will help you much too.

Md. Yamin Mollah
- 1,609
- 13
- 26