Can we place a small view over another large view? For example, i have a VideoView which is playing a file in the background. Over this, somewhere in the middle/corner, I want to place another ImageView.

But in Linear/Relative Layout, views can be placed only one after another or relativ to each other. And Absolutelayout is advised against. So what do I do?

link|improve this question

1  
RelativeLayout will work but you can use FrameLayout. – bhups Sep 29 '10 at 12:52
feedback

1 Answer

up vote 4 down vote accepted

FrameLayouts let you pile each view on top of the one below. This can also be achieved with a RelativeLayout.

link|improve this answer
Could you please give me an example of either case? I am not able to think it out. – kiki Sep 29 '10 at 12:54
@kiki - Google "android FrameLayout" and you'll find plenty of examples. – McStretch Sep 29 '10 at 13:47
feedback

Your Answer

 
or
required, but never shown

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