我無法加載頁面File.html。我想在html中加載我的地圖,但模擬器沒有顯示。我得到錯誤:Xamarin不允許加載本地資源文件
「[INFO:CONSOLE(0)]」不允許加載本地資源:file:///android_asset/HTMLPage1.html「,source:data:text/html,chromewebdata(0)」
「I/chromium(11080):[INFO:CONSOLE(0)]」不允許加載本地資源:file:///android_asset/webkit/android-weberror.png「,source:data:text/HTML,chromewebdata(0)「
在仿真頁面顯示 」網頁無法使用「
XAML文件:
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Mapaht"
x:Class="Mapaht.Mapahet">
<WebView
x:Name="webviewjava"></WebView>
</ContentPage>
頁文件
public Mapahet()
{
InitializeComponent();
webviewjava.Source = "file:///android_asset/HTMLPage1.html";
}
https://developer.xamarin.com/guides/xamarin-forms/user-interface/webview/ #Android – SushiHangover
我試過了,它不工作 –
如果你在Forms的WebView中使用'file:/// android_asset'來加載內容,那麼你沒有按照我所鏈接的指南,'file:/// android_asset'是用於Android'WebView'小部件,而不是表單的'WebView' – SushiHangover