Lightweight cross platform WebView designed to leverage the native WebView components in Android, iOS, and Windows to provide enhanced functionality over the base control.
You can now catch HttpErrorCodes when an error occurs during Navigation. To do this, simple use the OnNavigationError event in the WebView.
This client is a predefined script which is injected into each page as it loads. At the moment it supports tap, swipe, and move detection as well as reporting the window size of the WebView. In the future this will be updated to allow you to attach directly to elements in the page and trigger events based on gestures from within C#. i.e: OnItemTapped(string id) => DisplayAlert("Item was tapped").
Hybrid WebViews are common across many applications these days with many different implementations available on the Web. Unfortunately for Xamarin, generally the only common HybridWebView is included as part of the XLabs toolset which gives the user the extra bloat of the additional components, as well as the problems associated with setting up this framework.
Forms WebView is designed to be a lightweight alternative with only minor configuration needed to be performed by the developer before giving them access to a denser API allowing them more flexibility in creating hybrid applications in the Xamarin platform.
- NuGET package available here: https://www.nuget.org/packages/Xam.Plugin.WebView
- Install into both your PCL and Platform projects
- On Android, include the Android.Mono.Export reference for the Javascript Interface
/// <summary>
/// Please call this before Forms is initialized to make sure assemblies link properly.
/// Make sure to perform this step on each platform.
/// </summary>
FormsWebViewRenderer.Init();
Xamarin.Forms.Forms.Init(e);
Pints are greatly appreciated: PayPal @ [email protected]
- Jenkins build history can be found here: TBA
Please note: I have only put in platforms I have tested myself.
- Xamarin.iOS : iOS 9 +
- Xamarin.Droid : API 17 +
- Windows Phone/Store RT : 8.1 +
- Windows UWP : 10 +
- Xamarin Forms : 2.3.3.180
/// <summary>
/// Bind an action to a Javascript function
/// </summary>
FormsWebView WebView = new FormsWebView();
WebView.RegisterCallback("test", (str) => Debug.WriteLine(str));
WebView.RemoveCallback("test");
/// <summary>
/// Initialize the WebView, Navigation will occur when the Source is changed so make sure to set the BaseUrl and ContentType prior.
/// </summary>
FormsWebView WebView = new FormsWebView() {
ContentType = WebContentType.Internet,
Source = "http://www.somewebsite.com"
}
/// <summary>
/// If you wish to further modify the native control, then you can bind to these events in your platform specific code.
/// These events will be called when the control is preparing and ready.
/// </summary>
FormsWebViewRenderer.OnControlChanging += ModifyControlBeforeReady;
FormsWebViewRenderer.OnControlChanged += ModifyControlAfterReady;
/// <summary>
/// Attach events using a instance of the WebView.
/// </summary>
WebView.OnNavigationStarted += OnNavigationStarted;
WebView.OnNavigationCompleted += OnNavigationComplete;
WebView.OnJavascriptResponse += OnJavascriptResponse;
/// <summary>
/// You can cancel a URL from being loaded by returning a delegate with the cancel boolean set to true.
/// </summary>
private NavigationRequestedDelegate OnNavigationStarted(NavigationRequestedDelegate eventObj)
{
if (eventObj.Source == "www.somebadwebsite.com")
eventObj.Cancel = true;
return eventObj;
}
/// <summary>
/// To return a string to c#, simple invoke the csharp(str) method.
/// </summary>
private void OnNavigationComplete(NavigationCompletedDelegate eventObj)
{
System.Diagnostics.Debug.WriteLine(string.Format("Load Complete: {0}", eventObj.Sender.Source));
eventObj.Sender.InjectJavascript("csharp('Testing');");
}
Local File Locations To modify the file locations, change the BaseUrl in each platforms renderer
- iOS: Resources Folder as a bundle resource
- Android: Assets folder as an Android Asset
- Windows: Root folder as content
DM me on LinkedIn: http://linkedin.radsrc.com
For iOS 9 onwards, if you wish to access unsecure sites you may need to configure or disable ATS
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key><true/>
</dict>
For Android make sure to add the "Internet" property to your manifest.
For Windows make sure to add the websites to your appxmanifest ContentUris to allow JS invoking.