Public Sub NavigateToGoogle()
'Load the parent form containing my Webview control.
MainActivity_.RemoveAllViews
MainActivity_.LoadLayout(strWebBrowserParentForm_)
WebBrowser.Initialize("WebBrowser") 'WebBrowser is declared in Class_Globals in the code module like this: Private WebBrowser As WebView
WebBrowser = MainActivity_.GetView(0) 'Get my Webview control.
'Make sure the Webview control is set at 100%
Dim Obj1 As Reflector
Obj1.Target = WebBrowser
Obj1.RunMethod2("setInitialScale", "100", "java.lang.int")
WebBrowser.LoadUrl("http://www.google.com")
End Sub
Public Sub WebBrowser_PageFinished (Url As String)
'...................this never fires!!!!
End Sub