Possible Duplicate:
How to create a closed (circular) ListView?
I would like to develop a listview which can loop the elements such as,
if the listview detected is the end element, then it will get the first element at the end. "1,2,3,4,5,6,7,1,2,3,4,5......."
if the listview detected is the first element, then it will get the end element at the top. "6,7,1,2,3,4,5,6,7,1,2,3,4,5......"
I found that has some solutions about the circular listview, but I think it is not fit for my case.
Is it possible to implement the looping adapter on android?