I have an Android application which loads into a ListView a set of elements from a database (there are 10 elements in my ListView). This elements are always the same and do not change. Also it doesn't loads or adds more from any source or way, they are fixed.
What I want to do is when user scrolls to the bottom of the list (element 10), the next element that appears would be the first one (element 1), then element 2 and so on. Also when user scrolls to the top of the list, the previous element would be the last element on the list (element 10) then element 9 and so on. Like a carousel! Like some kind of "Endless list"!
I have been looking for solutions, but I got no approach using ListView. Only using other type of views, 3D views, animated views or elements which are not suitable for what I have built in my app. I want a simple ListView with no animations or stuff like that.... a simple view.
Also I tried to do it programatically by myself... but results are awkward: sometimes ListView does strange things, sometimes it does nothing.... and sometimes my app just crashes!!!
Has anyone implemented this before or done something similar? Any library or add-in to achieve this? I prefer a solution using ListView because is what I am using, but any idea or similar solutions are accepted.
Thank you so much in advance for the help!!!