Skip to content

Instantly share code, notes, and snippets.

@thinzaroo
Created August 25, 2014 04:04
Show Gist options
  • Save thinzaroo/3570558e9ef2cdeaeeae to your computer and use it in GitHub Desktop.
Save thinzaroo/3570558e9ef2cdeaeeae to your computer and use it in GitHub Desktop.
Android WebView Progressbar
WebView webView = (WebView)findViewById(R.id.webview);
String url = "";
ProgressDialog dialog = new ProgressDialog(this);
webView.setWebChromeClient(new WebChromeClient(){
@Override
public void onProgressChanged(WebView view, int newProgress) {
dialog.setMessage("Loading");
dialog.show();
if(newProgress == 100 && dialog.isShowing())
dialog.dismiss();
}
});
webView.loadUrl(url);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment