I have a WebView that is loading a page from the Internet. I want to show a ProgressBar until the loading is complete.
WebView
ProgressBar
How do I listen for
I found one elegant solution as well, have not tested it rigorously though:
public void onPageFinished(WebView view, String url) { super.onPageFinished(view, url); if (m_webView.getProgress() == 100) { progressBar.setVisibility(View.GONE); m_webView.setVisibility(View.VISIBLE); } }