gpt4 book ai didi

java - 无法在 onReceivedError() 中加载新的 WebView

转载 作者:太空宇宙 更新时间:2023-11-04 14:14:14 24 4
gpt4 key购买 nike

我目前正在创建一个小型 Android 应用程序,包括 WebView。如果出现错误(例如 net::Err_NAME_NOT_RESOLVED),WebView 应加载自定义 html 文件。我将html文件粘贴到assets/www/mypage.html下我的代码:

webview.setWebViewClient(new WebViewClient() {
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
webview.loadUrl("file:///android_asset/www/mypage.html");
Toast.makeText(getActivity().getBaseContext(), "Just FMI", Toast.LENGTH_SHORT).show();

}
});

我做错了什么? Toast 工作正常。

亲切的问候!

最佳答案

尝试更改如下代码

webview.setWebViewClient(new WebViewClient() {
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl){
view.loadUrl("file:///android_asset/www/mypage.html");
Toast.makeText(getActivity().getBaseContext(), "Just FMI", Toast.LENGTH_SHORT).show();

}
});

关于java - 无法在 onReceivedError() 中加载新的 WebView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27952141/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com