Android Question How to use WebViewExtras to open https Web page?

cenyu

Active Member
Licensed User
Longtime User
Hello, can you help me to open https web page using WebViewExtras? Is this possible?
 

JohnC

Expert
Licensed User
Longtime User
To add the chrome client:

 
Upvote 0

cenyu

Active Member
Licensed User
Longtime User
B4X:
    Dim URL    As String
    Dim webview1             As WebView
    Dim WebViewExtras1         As WebViewExtras
    webview1.Initialize("webview1")
    Activity.AddView (webview1,0,0,100%x,100%y)
    URL="https://192.168.0.200"
    WebViewExtras1.addWebChromeClient(webview1, "WebViewExtras1")
    webview1.LoadUrl(URL)


BUT EMPTY PAGE IS RESULT!!!
What i doing wrong?
I try and "your app has a unique Package Name "



Erel say that You can disable the SSL tests with this Code Byt still empty page is result
 
Last edited:
Upvote 0

JohnC

Expert
Licensed User
Longtime User
Please don't post duplicate (or very similar) questions in two different threads.

I answered your question here:
 
Upvote 0
Top