WebView - 用户单击链接时显示对话框

时间:2011-07-01 15:15:34

标签: android webview

我有一个使用WebView的活动。当活动加载时,我会在“onPageFinished”事件中显示一条警告消息。

我需要知道的是,当用户点击链接并且webview正在加载它时显示ProgressBar,并在加载结束时将其关闭。与iPhone行为类似。

有可能吗?

10X :) UDI

1 个答案:

答案 0 :(得分:0)

documentation

中对此进行了描述
 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