The problem
Suppose you have a view inside a layout view, and you wish that each touching event on the layout would affect the view's background selector.
for example, when you touch the layout , the selector of the view will choose the state_pressed state.
What I've tried
I've read about duplicateParentState and addStatesFromChildren , but I think it's the opposite of what I'm searching for.
I've also tried to use splitMotionEvents, but it didn't help.
The question
How do you do this?
Also, what should be done in case the layout is inside a listView (as an item within it) ?