I am getting the message box, so I know the button is working. But I can not get the webview on the emulator or phone. Tried the .Enable as well. I have a main layout open with my main code.
B4X:
Sub ShowPage_Click
Webline = "http://www.google.com"
Msgbox(Webline,"")
WebView1.BringToFront
Webview1.Visible=True
WebView1.LoadUrl(Webline)
End Sub