Android FullScreen problem - battery indicator

Good afternoon, I apologize in advance for my poor English.
There was a problem with the full-screen display.

I hide the navigation bar and status bar using standard methods, everything is hidden except the battery indicator.
It is very difficult to see it, it is translucent.
If you expand the status bar, the Wi-Fi indicator will also appear after hiding.

And everything was fine before.
I haven’t done any manipulation with vs, I’m using a standard vs emulator.

When testing on real devices, everything is different, on some everything is clean, on some the problem repeats.

Actually the question is, how to hide it at all?

Manifest:

activity android:theme=“@android:style/Theme.Black.NoTitleBar.Fullscreen” android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize

Activity:

View.SystemUiVisibility = StatusBarVisibility.Hidden;
SystemUiFlags flags = SystemUiFlags.LayoutStable |
SystemUiFlags.LayoutHideNavigation |
SystemUiFlags.LayoutFullscreen |
SystemUiFlags.HideNavigation |
SystemUiFlags.Fullscreen |
SystemUiFlags.ImmersiveSticky;

Window.DecorView.SystemUiVisibility = (StatusBarVisibility)flags;
Immersive = true;
SetContentView(View);

What is the model of the android device that caused the problem?

The usual android VS Pixel emulator. I tried to create new devices, the effect is the same

Hi There,

Check the first entry in this thread :

graphicsDevice.PresentationParameters has wrong backbuffer size on vanilla Android! - Android - Community | MonoGame

Regards,

Özden

Unfortunately, in the proposed version, only landscape, as I understand it. The problem appears only on the emulator. There is no such thing on devices.