Android Web 视图不显示 https:\\ url

发布于 2024-11-09 12:00:25 字数 170 浏览 0 评论 0原文

我已经使用 web 视图来显示 html 数据。现在 html 数据包含 image ,其中 src=\"Title : Android Web 视图不显示 https:\ url 。 hview 不支持 https url 。 如果假设我与 http 一起使用那么它工作正常。 有什么解决办法吗??

提前致谢

I have used web view to display html data. Now html data contains image , with src=\"Title : Android web view not displaying https:\ url .
hview does not support for https url .
If suppose i used with http then it works fine .
IS there any solution ??

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

难如初 2024-11-16 12:00:25

点击此处获取解决方案

使用以下代码。您可以使用以下代码打开https

WebView webview= (WebView) findViewById(R.id.my_webview);
webview.setWebViewClient(new WebViewClient() {
 public void onReceivedSslError (WebView view, SslErrorHandler handler, SslError error) {
 handler.proceed() ;
 }
}

如果我的回答对您有帮助,请不要忘记投票。

谢谢
迪帕克

Click here to get the solution

Use the follwoing code. You can open https using the following code

WebView webview= (WebView) findViewById(R.id.my_webview);
webview.setWebViewClient(new WebViewClient() {
 public void onReceivedSslError (WebView view, SslErrorHandler handler, SslError error) {
 handler.proceed() ;
 }
}

Donot forget to vote if my response is helpful for you.

Thanks
Deepak

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文