R.D
R.D

Reputation: 19

RecyclerView how to make cyclic

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

Upvotes: 1

Views: 3819

Answers (1)

ap6491
ap6491

Reputation: 835

Please refer to the following question which answers a similar problem: How do I create a circular (endless) RecyclerView?

Upvotes: 2

Related Questions