Android Question ChromeClient ?

javiers

Active Member
Licensed User
Longtime User
Hello everyone, I would like to access https://meet.jit.si/xxxx with WebChromeClient, but the application closes, not giving any errors.
a greeting




B4X:
    WebViewExtras1.SetWebChromeClient(webchrome)

    Activity.AddView(WebViewExtras1, 0, 0, 80%x, 80%y)

    WebViewExtras1.LoadUrl("https://meet.jit.si/xxxx")
 
Last edited:

DonManfred

Expert
Licensed User
Longtime User
Webviewextras is not a view.
Check the forum on how to implement webviewextras and chromeclient
 
Upvote 0

drgottjr

Expert
Licensed User
Longtime User
webview is the view. webviewextras are the, ummm, extras. you add the extras to the view when you initialiaze them
 
Upvote 0

javiers

Active Member
Licensed User
Longtime User
Thank you for your answers.

I've already changed it. If I load "www.google.es" the page shows me well, but if I do it with "https://meet.jit.si/xxxx" the black background remains and only the zoom buttons are visible.I wanted to add a jit.si room to the app, but this work is beyond me.

Thanks again.
A greeting.
 
Upvote 0
Top