I have a custom view with ImageView and TextView on it and implemented onClickListener for my custom view. The problem is that ImageView consumes an onClick event (I just want the user to be able to click on my control, no matter where). I could also listen to onClick from Image / TextView, but it seems dirty to me.
Is there any way to bubble / route events in Android? Or maybe another good solution?
source share