I’m using the WebView and have gotten all the functionality I need working smoothly except for one feature: the ProgressBar. I want to use a simple progress bar that shows after a webview.LoadUrl(url) is called and stops playing when the url is finished loading. Starting the process is easy, but how do I know when the loading is finished?
Cruising the internet, one technique I found is to implement the onPageFinished() method and the simplest example is the following java code:
aWebView.setWebViewClient(new WebViewClient() {
public void onPageFinished(WebView view, String url) {
// do your stuff here
}
});
So, how to do this in Xamarin.Android? Any suggestions would be most welcomed - Thanks!