i have a vertical grid view where it should show 3.5 rows which means 4 th row half should be visible at once.
once user comes to the 4th row then it should show 2nd row , 3rd row, 4th row and half of 5th row.
But now i was able to see quater of 1st row
i have tried gridlayout manager and snap helper but no use
You can customize the scrolling behavior by manipulating the RecyclerView position programmatically. You can scroll to the top row when the bottom row is focused by listening to scroll events and taking action based on the visible items.
When the user scrolls, we check if the last visible item is beyond the 4th row. If it is, we programmatically scroll to the top of the 2nd row.
Good Luck.