我有一个使用WebView的活动。当活动加载时,我会在“onPageFinished”事件中显示一条警告消息。
我需要知道的是,当用户点击链接并且webview正在加载它时显示ProgressBar,并在加载结束时将其关闭。与iPhone行为类似。
有可能吗?
10X :) UDI
答案 0 :(得分:0)
final Activity activity = this;
webview.setWebChromeClient(new WebChromeClient() {
public void onProgressChanged(WebView view, int progress) {
// Activities and WebViews measure progress with different scales.
// The progress meter will automatically disappear when we reach 100%
activity.setProgress(progress * 1000);
}
});
另见here。