I would like to override Default Gallery widget provided by Android to get an infinite rolling effect. I mean I can scroll circularly, as if the data in the gallery is provided by a circular linked list type, instead of the present Linear Linked List, which has an ending.
I have looked into the source of gallery, and found some points of entry like:
- trackMotionScroll(), which tell when to stop the scrolling, and is all about motion events.
- detachOffScreenChildren(), which detaches views which are not being shown in the gallery at present.
I would like to have some inputs to create such a gallery, which upon scroll can give me the effect of an infinity item gallery. Please shed some light on these.