进度条没有移动,加载网站后他没有消失?

时间:2015-12-22 16:59:14

标签: javascript java android eclipse apk

我已经插入了这个" Gmail进度条"在我的WebView中,但它不会移动,只会显示,当网页加载时我希望它消失。

我做错了什么?

mWebView.loadUrl("http://google.com/");
mWebView.setWebViewClient(new HelloWebViewClient() {
    public void onPageStarted(WebView view, String url, Bitmap favicon) {
        ImageView progress = (ImageView)findViewById(R.id.imgProgress);
        AnimationDrawable frameAnimation = (AnimationDrawable)progress.getDrawable();
        frameAnimation.setCallback(progress);
        frameAnimation.setVisible(true, true);
    }
});

0 个答案:

没有答案