Fullscreen webview xamarin
本文关键字:xamarin webview Fullscreen | 更新日期: 2023-09-27 18:16:10
我正在开发一个新的应用程序在xamarin形式(交叉应用程序)使用xaml/c#。在一个叫做webview的页面上。我插入了webview
var browser = new WebView {
Source = "http://xamarin.com"
};
当我用webview播放视频时,我无法在全屏模式下观看。如何启用全屏模式?
在Xamarin Android项目中添加:
//Remove title bar
RequestWindowFeature(WindowFeatures.NoTitle);
//Remove notification bar
Window.SetFlags(WindowManagerFlags.Fullscreen, WindowManagerFlags.Fullscreen);