17

Is there a way to set the timeout value in WebView? I want the WebView to be timeouted if the url is too slow to response.

user430926
  • 4,017
  • 13
  • 53
  • 77

3 Answers3

11

You can do it by setting up a Timer which checks for progress of current page by calling getProgress() and if it is less than some threshold after some specified time then you can dismiss the loading of the current page.

bhups
  • 14,345
  • 8
  • 49
  • 57
  • 1
    So do you mean i add timer and check the progress of current page by calling getProgress(), if it's not 100 yet i can call stopLoading(). – user430926 Nov 29 '10 at 11:04
5

We can use onLoadResource method of WebViewClient instead of Timer. Like this:

webView.setWebViewClient(new WebViewClient() {

    @Override 
    public boolean shouldOverrideUrlLoading(WebView view, String url) {
        view.loadUrl(url);
        return false;
    }

    @Override 
    public void onPageStarted(WebView view, String url, Bitmap favicon) {
        super.onPageStarted(view, url, favicon);
        progressDialog.show();
    }

    @Override
    public void onPageFinished(WebView view, String url) {
        super.onPageFinished(view, url);
        Log.d("WEBCLIENT", "onPageFinished");
    }

    @Override 
    public void onLoadResource(WebView view, String url) {
        super.onLoadResource(view, url);
        Log.d("WEBCLIENT","onLoadResource");

        if(webView.getProgress() == 100) {
            progressDialog.dismiss();
        }    
    }
}
Melquiades
  • 8,496
  • 1
  • 31
  • 46
John
  • 8,846
  • 8
  • 50
  • 85
1

I use

@Override
    public void onReceivedError(WebView view, int errorCod,String description, String failingUrl) {
        final Dialog dialog = new Dialog(MainActivity.this, android.R.style.Theme_NoTitleBar_Fullscreen);
        dialog.setContentView(R.layout.alert_dialog);
        Button btTryAgain = dialog.findViewById(R.id.bt_try_again);
        btTryAgain.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v){
                recreate();
            }
        });
        dialog.show();
        //Toast with error conection
        Toast.makeText(getApplicationContext(), "Your Internet Connection May not be active Or " + description , Toast.LENGTH_LONG).show();
    }

Where -alert_dialog- is a layout with a button to retry

JoaquinBu
  • 321
  • 2
  • 5
  • inside your code, I see use of recreate(); on retry click. So, instead of recreate(); you may use WebView's reload() method. it will attempt to reload the entire web page. – Dhaval Shah Jun 02 '22 at 10:34