WebView未加载的处理方法
我有一个带有 WebViewClient 的 WebView,并且设置了 onRecievedError 方法。
但是,如果我将手机设置为飞行模式并且页面无法加载,则不会调用上述方法,是否有任何方法可以检测和处理WebView无法加载页面?
I have a WebView with a WebViewClient with the onRecievedError method set.
But if I set my phone to Airplane mode and the page fails to loadthe above method isn't called, is there any to detect and deal with WebView being unable to load pages?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
。该方法用于处理从 Web 服务器收到的错误。在您的情况下,没有可访问的 Web 服务器。
不一般,据我所知。您可以使用
ConnectivityManager
来确定您是否有互联网连接,这对您的飞行模式场景很有帮助。That method is for errors received from the Web server. In your case, there is no accessible Web server.
Not generically, AFAIK. You can use
ConnectivityManager
to determine if you have an Internet connection, which would help in your airplane mode scenario.