I have RecyclerView with elements, for example from 1 to 10. Can somebody help? Thanks!
1 2 3 4 5 6 7 8 9 10 //On create
and when I scroll i want to make something like this:
9 10 1 2 3 4 5 6 7 8 //On Scroll
5 6 7 8 9 10 1 2 3 4
I have RecyclerView with elements, for example from 1 to 10. Can somebody help? Thanks!
1 2 3 4 5 6 7 8 9 10 //On create
and when I scroll i want to make something like this:
9 10 1 2 3 4 5 6 7 8 //On Scroll
5 6 7 8 9 10 1 2 3 4
Please refer to the following question which answers a similar problem: How do I create a circular (endless) RecyclerView?