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
Simply override the Gallery Widget's onFling() method and don't call the superclass onFling() method.
onFling()
This will make the gallery advance one item per swipe.