是android studio编程的新手。请知道任何人知道如何在webview中的标题栏下面显示一个细蓝色条,就像chrome浏览器和uc浏览器一样。我非常感谢你的帮助。
答案 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)
并使用webview
应用以下代码 webView.setWebChromeClient(new WebChromeClient() {
public void onProgressChanged(final WebView view, int progress) {
pkProgressBar.setProgress(progress);
}
});