I have a ViewFlipper which should react to a fling gesture, but it does not.
Activity
@Override public void onCreate(Bundle savedInstanceState) {
This is my xml code used.
Override dispatchTouchEvent instead of onTouchEvent
@Override public boolean dispatchTouchEvent(MotionEvent event) { super.dispatchTouchEvent(event); return gestureDetector.onTouchEvent(event); }
This works fine :) Scroll View and flipper both works fine.