Hi there,
i have active local WLAN and try to open by webview a local (LAN) website like: http://192.168.20.226/test/page
in chrome browser it works, but inB4x App via webview it will not load.
any idea?
i have active local WLAN and try to open by webview a local (LAN) website like: http://192.168.20.226/test/page
in chrome browser it works, but inB4x App via webview it will not load.
any idea?
B4X:
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("Layout")
webview1.Initialize("webview1")
Activity.AddView(webview1, 0dip, 100dip, 100%x, 100%y)
webview1.LoadUrl("http://192.168.20.226/test/page")
End Sub