I have a custom gallery in my app and after doing some testing I\'ve decided that I don\'t want the gallery to navigate with finger swipes. I\'ve set up a left and right bu
A better approach (as described here) is to override the fling method in your custom gallery class:
@Override public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { return false; }