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
for Kotlin users:
webView.webViewClient = object : WebViewClient() { override fun onPageFinished(view: WebView?, url: String?) { // do your logic } }
there are a lot of methods that you can override though