0

I have constructed something like the following:

enter image description here

It was done by creating a popupwindow and a layout inflater. I first inflate a custom view that draws the circle, gradient, etc, and then inflate a layout file including the textviews and button. I am wondering if there is a way, so that if the user clicks in the circular region, the clickEvent is bubbled through to the underlying region, thus making the underlying view handle the click.

rperryng
  • 3,233
  • 3
  • 22
  • 35

1 Answers1

1

If you return false from your touch event, it will be passed the the view below.

Some more details here

Community
  • 1
  • 1
Ben Pearson
  • 7,532
  • 4
  • 30
  • 50