Webview
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
// Example code to open chatbot-hosted URL as webview
WebView myWebView = (WebView) findViewById(R.id.webview);
WebSettings webSettings = myWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
myWebView.loadUrl("https://chatbot-hosted-webpage-url");