How to add a progress/loading bar in WebView

后端 未结 5 2139
我寻月下人不归
我寻月下人不归 2020-12-18 06:25

I developed a website for my entreprisee and I work almost exclusively with PHP

So the Java language (and android studio) is a really new for me

Despite this

5条回答
  •  别那么骄傲
    2020-12-18 07:01

    This may help you.

    Inside WebViewClient:

      @Override
         public void onPageStarted(WebView view, String url, Bitmap favicon) {
    
          super.onPageStarted(view, url, favicon);
          findViewById(R.id.progress1).setVisibility(View.VISIBLE);
         }
    
        @Override
        public void onPageFinished(WebView view, String url) {
            findViewById(R.id.progress1).setVisibility(View.GONE);
        }
    

    In the XML add this :

    
    

提交回复
热议问题