Android:webview问题
我需要在我的网络视图中加载类似于 https://m.ongein.nl 的网址,并且该网址确实不存在。所以我的网络视图将始终等待页面完成。因此需要查明该域是否不存在,然后退出网络视图或给出错误消息。有什么方法可以解决该问题吗? 我已经检查了日志,但找不到解决方案,
谢谢
I need to load the url something like https://m.ongein.nl in my web view and the url does not exists.So my webview will be always waiting for page finish.so need to find out if the domain does not exists then quit the web view or give error message.Is there any way to resolve the issue?
I have check the log but i can not find the solution
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以实现
WebViewClient
的onReceivedError
为您的WebView
与一些结合使用TIME_OUT
。如果您的WebViewClient
在TIME_OUT
或onReceivedError
(以先发生者为准)之前尚未收到onPageFinished
回调,则停止加载页。You can implement
WebViewClient
'sonReceivedError
for yourWebView
in conjunction with someTIME_OUT
. If yourWebViewClient
Has not received theonPageFinished
Callback tillTIME_OUT
oronReceivedError
, whichever occurs first, then stop loading the page.