Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

2 Answers

up vote 3 down vote accepted

FrameLayout resolves this problem. You can place two children inside the FrameLayout, where the first child will be the background and the second will be the foreground. Let your ImageView be in background, then you can place any other View and it will overlay the ImageView. Hope this helps.

share|improve this answer
Thanks, but how can I position the popover element? with padding? – lfrodrigues Jul 26 '12 at 17:31
@lfrodrigues, It's recommended that you use android:layout_gravity, but surely you can use android:padding and android:layout_margin to achieve a better effect. – Egor Jul 27 '12 at 9:33

for overlaying views, you can wrap them in a FrameLayout. add first the ImaveView to it, then the overlay view.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.