Good news i think....
I've attached some sample code and an updated version of WebViewExtras to this post.
'Activity module
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
End Sub
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim WebView1 As WebView
Dim WebViewExtras1 As WebViewExtras
End Sub
Sub Activity_Create(FirstTime As Boolean)
WebView1.Initialize("WebView1")
WebViewExtras1.addWebChromeClient(WebView1)
Activity.AddView(WebView1, 0, 0, 100%x, 100%y)
WebView1.LoadUrl("http://cgi-lib.berkeley.edu/ex/fup.html")
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
I've tested it on the emulator (Froyo) and it seems to work ok.
Can you give it a test and report back?
Be sure to let me know what version(s) of Android you are testing with please.
Note that the attached version of WebViewExtras is just an alpha version and i'd rather you didn't use it ongoing.
As long as you report that it works ok then i'll finish off the update and get it uploaded to the libraries forum.
(Do not try to use the WebView Tag property with this alpha version - it will likely crash your application).
Martin.