I want to detect gesture on my ScrollView and its childs . I wanna have all those onClick method working as well. Say there is a button surrounded with LinearLayout and the whole thing is surrounded with ScrollView . I wanna call an action when user swipe anywhere of the ScrollView..
I applied onTouchListener to ScrollView.. But as the LinearLayout is clickable, event isn't fired when I swipe over the linear layout.
and if I set touch listener to all those child view, then onclick doesn't work.
remebmer using facebook lite ? user reads, scrolls news feed taps "like" button. clicks on links.. But still it can show chat list when user swipes from right to left on any part of screen.. how do they do it ?