I want a GridView in Android to loop endlessly / repeat all items when the GridView is scrolled.
For example let’s say the GridView has 1 column and 3 items.
I want it to be displayed like that:
…
item 1
item 2
item 3
item 1
item 2
item 3
item 1
….
Make your adapter return
Integer.MAX_VALUEforgetCount()and then for getView grab your data by usingmyData[position % myData.length]