I\'m creating an app where I want to hide the statusbar on a specific page. In my example it\'s a ContentPage. I found several samples where the info.plist is used to hide it, b
protected override void OnCreate (Bundle bundle) { base.OnCreate (bundle); this.Window.ClearFlags(WindowManagerFlags.Fullscreen); SetContentView (Resource.Layout.Main); ... }