I have an activity that allows users to swipe between 3 different views. Each view displays a list of images. The images have onClick events that call a new activity and makes the images full screen. This all works ok however if I try to swipe between the 3 different views and my finger swipes over an image it will trigger the onClick event and open the image fullscreen. So I am wondering how can I put priority on onTouch (for the page/view swapping) ?
(the onTouch event uses a gestureListener and i'm using onFling and flipper methods..) (the onClick is simply a imageView.setOnClickListener(new OnClickListener() )