Error “validate_display:255 error 3008 (EGL_BAD_DISPLAY)” by Toutorial

后端 未结 4 1649
深忆病人
深忆病人 2020-12-17 10:46

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

4条回答
  •  孤城傲影
    2020-12-17 11:35

    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();
        }
    

    }

提交回复
热议问题