How can I limit fling in Android gallery to just one item per fling?

Simply override the Gallery Widget’s onFling() method and don’t call the superclass onFling() method.

This will make the gallery advance one item per swipe.

Leave a Comment