hi
Sub Globals
Dim webview1 As WebView
End Sub
Sub Activity_Create(FirstTime As Boolean)
webview1.Initialize("webview1")
webview1.LoadUrl("google.com")
End Sub
nothing happens
what is missing?
thanks in advance
michel
you need to add the view to the activity,or design a layout file and load it ;
for example you can change the code :webview1.LoadUrl("google.com") to this:
thanks a lot
it works
I would like to simulate an internet explorer navigator under a webview
I was advised to use:
setUserAgentString (webview1, myuseragent)
I got the IE useragent string from internet
Where can I find and download the library where is the routine:setUserAgentString