当前,我正在开发一个移动应用程序,该程序可以使用auf UNO平台。为了显示3D模型,我使用了WebView控件和一些ThreeJS JavaScript代码。这在UWP和WASM中都很好用。 (也可以在StackOverflow上的here中找到WASM版本中WebView的变通方法。) 但是,Android版本让我头疼:HTML页面加载,调试输出显示WebGL脚本部分正在执行,但用户界面未显示任何内容。
我已经确保(我认为)使用了正确的WebView控件。另外,我使用从“ Play商店”(版本74.x.x.x)下载的“ Chrome”中的替代WebView进行了测试。 WebView的HTTP用户代理是正确的,因此根据Android系统的开发人员设置使用WebView。 活动和AndroidManifest文件中的硬件加速都设置为“ TRUE”。
我还使用开箱即用的“ Android-XAML-App”进行了非常简单的测试。立方体几乎立即显示。
MainView.xaml
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:WebViewTestAndroid"
x:Class="WebViewTestAndroid.MainPage">
<Grid>
<WebView Source="https://threejs.org/examples/?q=cube#webgl_geometry_cube" />
</Grid>
</ContentPage>
这是UNO主页无效的示例。页面正在加载,但未显示3D立方体。
MainPage.xaml
<Page
x:Class="UnoWebViewTest.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:UnoWebViewTest"
xmlns:ios="http://uno.ui/ios"
xmlns:android="http://uno.ui/android"
xmlns:xamarin="http://uno.ui/xamarin"
xmlns:wasm="http://uno.ui/wasm"
mc:Ignorable="d ios android xamarin wasm"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006">
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<android:WebView Source="https://threejs.org/examples/?q=cube#webgl_geometry_cube" />
</Grid>
</Page>
我比较了清单文件,但到目前为止我还没有得出可以进一步研究的结论。 我希望UNO使用的是本机Android WebView控件,但是也许缺少某些设置或者它甚至不是同一控件?
答案 0 :(得分:2)
实际上,这是由于Uno的WebView禁用了硬件加速。除此之外,Uno和Xamarin.Forms同样在后台使用Android.WebKit.WebView。
可以使用附加属性轻松地在Uno中重新启用硬件加速:
public static class WebViewHardware
{
public static bool GetIsEnabled(WebView obj)
{
return (bool)obj.GetValue(IsEnabledProperty);
}
public static void SetIsEnabled(WebView obj, bool value)
{
obj.SetValue(IsEnabledProperty, value);
}
// Using a DependencyProperty as the backing store for IsEnabled. This enables animation, styling, binding, etc...
public static readonly DependencyProperty IsEnabledProperty =
DependencyProperty.RegisterAttached("IsEnabled", typeof(bool), typeof(WebViewHardware), new PropertyMetadata(false, OnIsEnabledChanged));
private static void OnIsEnabledChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs args)
{
var webView = (WebView)dependencyObject;
var isEnabled = (bool)args.NewValue;
#if __ANDROID__
webView.Loaded += OnLoaded;
void OnLoaded(object sender, RoutedEventArgs e)
{
webView.Loaded -= OnLoaded;
var layerType = isEnabled ? Android.Views.LayerType.Hardware : Android.Views.LayerType.Software;
webView.SetLayerType(layerType, null);
}
#endif
}
然后可以像这样在XAML中使用它:
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<WebView Source="https://threejs.org/examples/?q=cube#webgl_geometry_cube" local:WebViewHardware.IsEnabled="True"/>
</Grid>
答案 1 :(得分:1)
这个问题开始让我发疯,所以我花了一整天时间下载完整的Xamarin和UNO源码并从头开始调试所有东西。
首先,UNO将WebView控件的“ HardwareAcceleration”设置为false。 第二,缺少的线索是这一行:
view.LayoutParameters = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MatchParent, ViewGroup.LayoutParams.MatchParent);
问题是,实际上不可能从外部进行设置,因此我们创建了一个继承自Android.Webkit.WebView的新类:
public partial class MyCustomWebView : Android.Webkit.WebView
{
protected MyCustomWebView(IntPtr javaReference, JniHandleOwnership transfer) : base(javaReference, transfer)
{
MakeSettings();
}
public MyCustomWebView(Context context) : base(context)
{
MakeSettings();
}
public MyCustomWebView(Context context, IAttributeSet attrs) : base(context, attrs)
{
MakeSettings();
}
public MyCustomWebView(Context context, IAttributeSet attrs, int defStyleAttr) : base(context, attrs, defStyleAttr)
{
MakeSettings();
}
public MyCustomWebView(Context context, IAttributeSet attrs, int defStyleAttr, bool privateBrowsing) : base(context, attrs, defStyleAttr, privateBrowsing)
{
MakeSettings();
}
public MyCustomWebView(Context context, IAttributeSet attrs, int defStyleAttr, int defStyleRes) : base(context, attrs, defStyleAttr, defStyleRes)
{
MakeSettings();
}
private void MakeSettings()
{
SetLayerType(LayerType.Hardware, null);
ForceHasOverlappingRendering(true);
SetWebViewClient(new MyCustomWebViewClient(this));
SetWebChromeClient(new WebChromeClient());
Settings.AllowFileAccessFromFileURLs = true;
Settings.AllowUniversalAccessFromFileURLs = true;
Settings.JavaScriptEnabled = true;
Settings.DomStorageEnabled = true;
Settings.AllowFileAccess = true;
Settings.CacheMode = CacheModes.NoCache;
Settings.MediaPlaybackRequiresUserGesture = false;
Settings.SetPluginState(WebSettings.PluginState.On);
}
public string HtmlContent
{
get { return string.Empty; }
set { LoadUrl(value); }
}
}
public class MyCustomWebViewClient : Android.Webkit.WebViewClient
{
public MyCustomWebViewClient(WebView view)
{
var test = view.IsHardwareAccelerated;
view.SetLayerType(LayerType.Hardware, null);
}
public override bool ShouldOverrideUrlLoading(WebView view, IWebResourceRequest request)
{
view.LoadUrl(request.Url.ToString());
return true;
}
public override void OnPageStarted(WebView view, string url, Bitmap favicon)
{
// The native webview control requires to have LayoutParameters to function properly.
view.LayoutParameters = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MatchParent, ViewGroup.LayoutParams.MatchParent);
base.OnPageStarted(view, url, favicon);
}
}
在XAML中使用此自定义控件可以在WebView中使用硬件加速的WebGL:
<android:MyCustomWebView HtmlContent="https://threejs.org/examples/?q=cube#webgl_geometry_cube" />