So I've been trying to do a layout that wraps around the camera (like on the A-series or galaxies). After trying a lot of things from this forum, stack overflow etc, the only thing that seems to work is to set in MainActivity:
Window.SetFlags(WindowManagerFlags.LayoutNoLimits, WindowManagerFlags.LayoutNoLimits);
The problem is that you can now no longer use "AdjustResize" for your Soft Input it seems? Is there a better way to accomplish this or is it just a current limitation? There's so many Window flags so hard to know how to use them.
(For clarity, I want statusbar icons visible, but overlapping with the background, and completely transparent (not translucent) statusbar)