如何像在Chrome浏览器和uc浏览器中一样在webview中的标题栏下方显示一个细蓝色条

时间:2016-11-22 10:34:46

标签: android-studio android-webview

是android studio编程的新手。请知道任何人知道如何在webview中的标题栏下面显示一个细蓝色条,就像chrome浏览器和uc浏览器一样。我非常感谢你的帮助。

2 个答案:

答案 0 :(得分:0)

使用ProgressBar组件:

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

答案 1 :(得分:0)

this link

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

并使用webview

应用以下代码
        webView.setWebChromeClient(new WebChromeClient() {
        public void onProgressChanged(final WebView view, int progress) {

            pkProgressBar.setProgress(progress);
        }
    });