I want to position a FrameLayout
in the center of the screen, regardless of the height and position of the parent. So for instance, if I have a parent view that moves around the screen, I don't want my FrameLayout
to move with it and instead always be centered on the screen.
How can I do this in Android?
I recommend you use a RelativeLayout as a root, then use your FrameLayout. Something like this: