'Activity module
Sub Process_Globals
End Sub
Sub Globals
Dim WebView1 As WebView
Dim webcount As Int
webcount = 0
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("Webview")
WebView1.LoadURL("http://www.google.com")
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub WebView_OverrideUrl(Url As String) As Boolean
If Url.Length > 0 Then
webcount = webcount + 1
End If
End Sub