How to check url is loaded in webview or not

2019-04-12 11:58发布

I am loading url in android webview using below code

webviewShowPost.loadUrl(URL);

I want to check if no data connectivity available then webview instead of showing blank view, I can display Toast of no connectivity.

Thanks

5条回答
唯我独甜
2楼-- · 2019-04-12 12:14

you can get the Progress Percentage value in above webview method

 mWebView.setWebChromeClient(new WebChromeClient() {
        public void onProgressChanged(WebView view, int progress)  
        {
         //Make the bar disappear after URL is loaded, and changes string to Loading...
     //Make the bar disappear after URL is loaded
         System.out.println("Value of progress"+progress);
            pbweb.setProgress(progress);

            if(progress == 100)


            pbweb.setVisibility(View.GONE);
          }
        });

below code in progress is value of progerss

查看更多
霸刀☆藐视天下
3楼-- · 2019-04-12 12:17

You want to check if there is network connectivity before loading the page, which means you want to do this: https://stackoverflow.com/a/2001824/960048

查看更多
唯我独甜
4楼-- · 2019-04-12 12:28

you can always use WebViewClient for this purpose .

    web.setWebViewClient(new WebViewClient(){

         public void onReceivedError(WebView view, int errorCode, String description,String failingUrl) {
             Toast.makeText(activity, "Oh no! " + description, Toast.LENGTH_SHORT).show();
         }
    });
查看更多
该账号已被封号
5楼-- · 2019-04-12 12:30
public static boolean isOnline(Context context) {

        try {
            ConnectivityManager cm = (ConnectivityManager) context

            .getSystemService(Context.CONNECTIVITY_SERVICE);

            if (cm.getActiveNetworkInfo().isConnectedOrConnecting()) {

                URL url = new URL("http://www.google.com.pk/");
                                HttpURLConnection urlc = (HttpURLConnection) url
                        .openConnection();
                urlc.setConnectTimeout(1000); // mTimeout is in seconds

                urlc.connect();

                if (urlc.getResponseCode() == 200) {
                    return true;
                } else {
                    return false;
                }
            }
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        return false;
    }
查看更多
Explosion°爆炸
6楼-- · 2019-04-12 12:33

Please try this

webView.setWebViewClient(new WebViewClient() { 
        @Override
        public void onReceivedError(WebView view, int errorCode,
                String description, String failingUrl) {
            // TODO Auto-generated method stub
            super.onReceivedError(view, errorCode, description, failingUrl);
        }
        @Override
        public void onPageFinished(WebView view, String url) {
            // TODO Auto-generated method stub
            super.onPageFinished(view, url);
        }


    });
查看更多
登录 后发表回答