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()?
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.