我已经插入了这个" 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);
}
});