My application has a custom view which contains other custom views of a different type. The subviews have their own click listeners (which I can’t change, as these are in 3rd party libraries). How can I intercept a user’s click at the level of my view to do some processing, and then pass the click on to the proper subview?
My application has a custom view which contains other custom views of a different
Share
Justin, you can play with dispatchTouchEvent() or onInterceptTouchEvent().