简体   繁体   中英

Xamarin MonoDroid Hide Status and NavigationBar

In MonoDroid, how can i hide Navigation and Status Bar completely on a certain action?

So far i tried these lines of codes but without good results.

What i want is to prevent the user from switching out of the application.

Window.RequestWindowFeature(WindowFeatures.NoTitle);
Window.AddFlags(WindowManagerFlags.Fullscreen);
View.SystemUiVisibility = StatusBarVisibility.Hidden;

Thanks in advance!

this.Window.AddFlags(WindowManagerFlags.Fullscreen); // hide the status bar
this.Window.ClearFlags(WindowManagerFlags.Fullscreen);  // Show the status bar

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM