the scenario that I'm trying to accomplish is the following: I have the main layout - that is a framLayout, and inside it I have linearLayouts that contains different view. I want that the global frameLayout will receive a touch event form the child view classes.
In every child view I'm getting the global frameLayout object, and doing setOnTouchListener on it. Then, from the UI, when I'm touching the last view that was inserted to the inner linearLayout, I'm getting the touch event. but for the other views I don't.
FramLayout
LinearLayout
View1 - not getting touch event
View2 - not getting touch event
View3 - not getting touch event
View4 - getting touch event
does anyone encountered in similar behavior?
