Is there anyway to tell if content retreived from a URL into a WebView is full loaded?
EDIT: I am trying to display a indetermined progress widget until the webview is fully loaded?
How would i implement this with WebView.getprogress()?
Is there anyway to tell if content retreived from a URL into a WebView is full loaded?
EDIT: I am trying to display a indetermined progress widget until the webview is fully loaded?
How would i implement this with WebView.getprogress()?
Stackoverflow is having some problems allowing me to edit my question and this is kind of an extension to the second part of your question so don't flag or down vote this for having two answers.
For the indeterminate progress spinner, create a ProgressDialog and show it when you start loading the webpage. Then in the onPageFinished() add the ProgressDialog.dismiss() to close it. Refer to this guide to see how to make progress dialogs.