If you want to both OnTouch
and OnClick
listener to parent and child view both, please use below trick:
User ScrollView as a Parent view and inside that placed your child view inside Relative/LinearLayout.
Make Parent ScrollView android:fillViewport="true"
so View not be scrolled.
Then set OnTouch
listener to parent and OnClick
listener to Child views.
And enjoy both listener callbacks.