I have a gallery with several full screen images. I want to limit the fling gesture to only advance one image at a time (like the HTC Gallery app). What's the right/easiest way to achieve this?
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.