如何在android的webview中捕获404错误

时间:2012-01-16 07:25:37

标签: android

为了捕获webview中的错误,我使用了onReceivedError函数。但404错误并不好。我应该怎么做? 感谢

1 个答案:

答案 0 :(得分:2)

试试这个:

onReceivedError (WebView view, int errorCode, String description, String failingUrl){
    if(errorCode == WebViewClient.ERROR_FILE_NOT_FOUND){
        // your code

    }
}