In my application I need to show a progress dialog when downloading and loading content to WebView. I know about the onPageStarted and onPageFinished methods, it works, however, there is a few seconds of delay between the onPageFinished call and the time the content is actually visible on the screen.
Is there a way to dismiss the progress dialog when the content is really visible, not only loaded?
You can do this by adding a PictureListener to your webview. Note that this is deprecated, but as far as I know there is no actual replacement provided by Android at this time.