Hello,
I have been able to use WebView.LoadUrl() running with B4A V3.20 to browse many different sites; but, oddly, it produces a blank screen for http://mobi.match.com which renders fine on the browser on my Droid Maxx running Android Version 4.4. Can anyone explain why this might be occurring?
Thanks,
Gregg
I have been able to use WebView.LoadUrl() running with B4A V3.20 to browse many different sites; but, oddly, it produces a blank screen for http://mobi.match.com which renders fine on the browser on my Droid Maxx running Android Version 4.4. Can anyone explain why this might be occurring?
Thanks,
Gregg
B4X:
Sub Globals
Dim WebView1 As WebView
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("layoutMain")
WebView1.LoadUrl("http://mobi.match.com")
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub