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
Oh, got it!
In my custom gallery class:
@Override public boolean onTouchEvent(MotionEvent event) { return false; }
Figured that put from the gallery source code posted here: http://www.devdaily.com/java/jwarehouse/android/core/java/android/widget/Gallery.java.shtml
:)