I have a parent activity for all my activities (they are a lot) which also acts as broadcast receiver. After I get a broadcast I need to show a view on the bottom of the screen no matter on which activity I am. All activities have different layouts, drawer, frame, linear, relative. Any guides or solutions or suggestions on how should I achieve this behavior?
If they were all relative it would have been easy I guess. but now with the other ones, I'm kinda stuck
EDIT:
I solved the problem by inflating and adding a view on the WindowManager which allows me enough options to play with it without having to go and change any layouts. Although the answers would below would be nice in the long run I needed the simplest and fastest solution.