我想在我的Xamarin.Forms應用程序中啓用HTML5 localstorage。當我部署到Android設備時,我可以看到網頁出錯,因爲local storage未啓用。如何在Xamarin.Forms中的Android WebView上啓用本地存儲
本身,localStorage的可如下啓用:
webview = (WebView) findViewById(R.id.webview);
WebSettings settings = webview.getSettings();
settings.setDomStorageEnabled(true);
如何/我在哪裏可以訪問Android的Web視圖(Android.WebKit.Webview)這些平臺的具體設置時,我只能訪問到Xamarin 。表單webview(Xamarin.Forms.WebView)。
更一般地說,是否可以在Xamarin.Forms或Xamarin.Forms中編寫特定於平臺的代碼,除了最基本的應用程序之外,其他所有代碼都受限制?