I\'m new to javascript and android and I want to program a multi page app with SAPUI5. For this I found a tutorial: https://sapui5.hana.ondemand.com/sdk/#docs/guide/df86bfbe
I had the same problem, some time pdf load or some time not. try this solved my problem.
public void onPageFinished(WebView view, String url) { super.onPageFinished(view, url); if(view.getContentHeight() == 0){ view.reload(); } else { pDialog.dismiss(); }
}