How to show loading image or progress bar on WebView

前端 未结 3 1649
陌清茗
陌清茗 2021-01-29 02:29

I have a webView in android that loads a particular site, i want to display a loading icon or progress bar on clicking any of the links inside the webView.

    w         


        
3条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-29 03:15

     public class CustomWebViewClient extends WebViewClient {
            @Override
            public void onPageStarted(WebView view, String url, Bitmap favicon) {
                showProgressBar();
            }
    
            @Override
            public void onPageFinished(WebView view, String url) {
                hideProgressBar();
            }
        }
    
    
        webViewClient.setWebViewClient(new CustomWebViewClient());
    

提交回复
热议问题