Hi all,
I can't for the life of me load a simple url. The WebView just pops up blank.
Here's my code:
Sub Process_Globals
End Sub
Sub Globals
Dim WebView1 As WebView
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("main")
WebView1.Initialize("WebView1")
url = "http://google.com"
WebView1.LoadUrl(url)
End Sub
My end goal is to show a loading gif then once the page is loaded display it.
Any help is greatly appreciated.
I can't for the life of me load a simple url. The WebView just pops up blank.
Here's my code:
Sub Process_Globals
End Sub
Sub Globals
Dim WebView1 As WebView
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("main")
WebView1.Initialize("WebView1")
url = "http://google.com"
WebView1.LoadUrl(url)
End Sub
My end goal is to show a loading gif then once the page is loaded display it.
Any help is greatly appreciated.