I am working on an application in which i have implemented a Custom WebView to open web pages. I have overriden the onProgressChnaged method of the view. I am facing a small but teasing problem. It goes like, when page starts loading a loading view starts to prompt user that page is being loaded, and in onProgressChanged i am dismissing that dialog on the basis of progress. I have been trying different values of progress but not getting an appropriate one. Infact, i don't want the loading view to be dismissed onPageFinished. I want when some data is viewable in the webview, spinner should be dismissed, that's why using onProgressChanged. The code of the onPageStarted is as:
public void onPageStarted(WebView view, String url, Bitmap favicon) {
if (dialog.isShowing() == false) {
dialog = ProgressDialog.show(WebViewForDetailActivity.this, "", "Loading. Please wait...", true, true);
}
}
and onProgressChanged it is like:
public void onProgressChanged(WebView view, int newProgress) {
// TODO Auto-generated method stub
Log.e("IN IT", "Now onProgressChanged = " + newProgress);
if (newProgress >= 89) {
if (dialog != null) {
dialog.dismiss();
}
}
super.onProgressChanged(view, newProgress);
}
If i change 89 to 90 this takes enough time and in the mean time whole page is loaded and whole purpose is died. and if i keep it to 89 it dismisses it a little earlier and for few moments there is nothing on screen, which is obviously a poor user experience in both the cases. Any ideas or suggestions are appreciated to get this thing implemented.