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);