我怎样才能像 chrome 浏览器和 uc 浏览器一样在 webview 中的标题栏下方显示一个细蓝色进度条

How can I show a thin blue bar for progress below title bar in webview just like chrome browser and uc browser

我是 android 工作室编程的新手。请问有谁知道如何在 webview 的标题栏下方显示一个蓝色的细条,就像 chrome 浏览器和 uc 浏览器一样。非常感谢你的帮助。

使用ProgressBar组件:

<ProgressBar
        android:layout_width="match_parent"
        android:layout_height="4dp"
        style="@android:style/Widget.DeviceDefault.ProgressBar.Horizontal"
        android:background="@color/colorPrimary"/>

this link中选择自定义进度条的代码

并在 webview 中应用以下代码

        webView.setWebChromeClient(new WebChromeClient() {
        public void onProgressChanged(final WebView view, int progress) {

            pkProgressBar.setProgress(progress);
        }
    });