Reputation: 10771
I have several Views in my Activity. I want to draw a Drawable over these views. The Drawable should be on top of the views (that means it hides the views below it. The Drawable may appear over several views (that is I can't just draw it in one view). How can this be done?
Thank you
Upvotes: 1
Views: 1714
Reputation: 46844
The FrameLayout allows you to have overlapping views. This is often used if you have some sort of background, with widgets over it.
Upvotes: 4
Reputation: 77995
Maybe you could use a Dialog or view with Dialog Theme with your drawable as the background?
Upvotes: 0