How to listen for a WebView finishing loading a URL?

前端 未结 17 757
予麋鹿
予麋鹿 2020-11-22 05:40

I have a WebView that is loading a page from the Internet. I want to show a ProgressBar until the loading is complete.

How do I listen for

17条回答
  •  孤街浪徒
    2020-11-22 06:19

    Here's a novel method for detected when a URL has loaded by utilising Android's capability for JavaScript hooks. Using this pattern, we exploit JavaScript's knowledge of the document's state to generate a native method call within the Android runtime. These JavaScript-accessible calls can be made using the @JavaScriptInterface annotation.

    This implementation requires that we call setJavaScriptEnabled(true) on the WebView's settings, so it might not be suitable depending on your application's requirements, e.g. security concerns.

    src/io/github/cawfree/webviewcallback/MainActivity.java (Jelly Bean, API Level 16)

    package io.github.cawfree.webviewcallback;
    
    /**
     *  Created by Alex Thomas (@Cawfree), 30/03/2017.
     **/
    
    import android.net.http.SslError;
    import android.support.v7.app.AppCompatActivity;
    import android.os.Bundle;
    import android.webkit.JavascriptInterface;
    import android.webkit.SslErrorHandler;
    import android.webkit.WebView;
    import android.webkit.WebViewClient;
    import android.widget.Toast;
    
    /** An Activity demonstrating how to introduce a callback mechanism into Android's WebView. */
    public class MainActivity extends AppCompatActivity {
    
        /* Static Declarations. */
        private static final String HOOK_JS             = "Android";
        private static final String URL_TEST            = "http://www.zonal.co.uk/";
        private static final String URL_PREPARE_WEBVIEW = "";
    
        /* Member Variables. */
        private WebView mWebView = null;
    
        /** Create the Activity. */
        @Override protected final void onCreate(final Bundle pSavedInstanceState) {
            // Initialize the parent definition.
            super.onCreate(pSavedInstanceState);
            // Set the Content View.
            this.setContentView(R.layout.activity_main);
            // Fetch the WebView.
            this.mWebView = (WebView)this.findViewById(R.id.webView);
            // Enable JavaScript.
            this.getWebView().getSettings().setJavaScriptEnabled(true);
            // Define the custom WebClient. (Here I'm just suppressing security errors, since older Android devices struggle with TLS.)
            this.getWebView().setWebViewClient(new WebViewClient() { @Override     public final void onReceivedSslError(final WebView pWebView, final SslErrorHandler pSslErrorHandler, final SslError pSslError) { pSslErrorHandler.proceed(); } });
            // Define the WebView JavaScript hook.
            this.getWebView().addJavascriptInterface(this, MainActivity.HOOK_JS);
            // Make this initial call to prepare JavaScript execution.
            this.getWebView().loadUrl(MainActivity.URL_PREPARE_WEBVIEW);
        }
    
        /** When the Activity is Resumed. */
        @Override protected final void onPostResume() {
            // Handle as usual.
            super.onPostResume();
            // Load the URL as usual.
            this.getWebView().loadUrl(MainActivity.URL_TEST);
            // Use JavaScript to embed a hook to Android's MainActivity. (The onExportPageLoaded() function implements the callback, whilst we add some tests for the state of the WebPage so as to infer when to export the event.)
            this.getWebView().loadUrl("javascript:" + "function onExportPageLoaded() { " + MainActivity.HOOK_JS + ".onPageLoaded(); }" + "if(document.readyState === 'complete') { onExportPageLoaded(); } else { window.addEventListener('onload', function () { onExportPageLoaded(); }, false); }");
        }
    
        /** Javascript-accessible callback for declaring when a page has loaded. */
        @JavascriptInterface @SuppressWarnings("unused") public final void onPageLoaded() {
            // Display the Message.
            Toast.makeText(this, "Page has loaded!", Toast.LENGTH_SHORT).show();
        }
    
        /* Getters. */
        public final WebView getWebView() {
            return this.mWebView;
        }
    
    }
    

    res/layout/activity_main.xml

    
    
    

    Essentially, we're appending an additional JavaScript function that is used to test the state of the document. If it's loaded, we launch a custom onPageLoaded() event in Android's MainActivity; otherwise, we register an event listener that updates Android once the page is ready, using window.addEventListener('onload', ...);.

    Since we're appending this script after the call to this.getWebView().loadURL("") has been made, it's probable that we don't need to 'listen' for the events at all, since we only get a chance to append the JavaScript hook by making a successive call to loadURL, once the page has already been loaded.

提交回复
热议问题