Any ideas on how to overlay a View over an ImageView?
More specifically I would like to popover view when the user clicks in certain regions of my ImageView.
I’m solving this problem drawing the popover view after the image in the onDraw() method but it has been a pain to handle events when the user clicks in the popover.
Thanks in advance
FrameLayoutresolves this problem. You can place two children inside theFrameLayout, where the first child will be the background and the second will be the foreground. Let yourImageViewbe in background, then you can place any otherViewand it will overlay theImageView. Hope this helps.