Hi all,
I could not have a simple webview working on my galaxy tab 10.1 (android v 4.0.4)
No page shown ( but log return the url )
The same project work on my phone.
Any idea to help me?
Thanks by advance.
I could not have a simple webview working on my galaxy tab 10.1 (android v 4.0.4)
No page shown ( but log return the url )
The same project work on my phone.
B4X:
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Private WebView1 As WebView
Private Button1 As Button
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
Activity.LoadLayout("mainLayout")
Log("debut")
WebView1.LoadUrl("http://www.google.fr/")
Log(WebView1.Url)
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub WebView1_PageFinished (Url As String)
Log(WebView1.Url)
End Sub
Sub WebView1_OverrideUrl (Url As String) As Boolean
End Sub
Sub Button1_Click
WebView1.LoadUrl(WebView1.url)
End Sub
Any idea to help me?
Thanks by advance.