I am dynamically adding views to my layout . These views all have gesture-detection. When the adding of views ends I want to overlay a View which has a specific gesture. the OnLongPress to be precise.
The problem is that because of this overlay view all the other events dont get caught anymore.
the way I am solving this now is to pass the OnLongPress to every single dynamically added view. This doesn't seem ideal .
How can I pass through the uncaught events ?