I have a custom ViewSwitcher in which I implemented touch events so I am able to scroll through screens using the touchscreen.
ViewSwitcher
My layout hierarchy looks
The simplest way to pass child view's TouchEvent to parent view is by adding this to child view:
@Override public boolean onTouchEvent(MotionEvent event) { super.onTouchEvent(event); return false; }