In my application I want to get the touch event of all child view\'s in my parent view\'s onTouchListener but I could not get this.
onTouchListener
Example:
It can be achieved by using "onInterceptTouchEvent". Please try this,it may work
@Override public boolean onInterceptTouchEvent(MotionEvent ev) { onTouchEvent(ev); return false; }