Android Webview cannot render the pdf sometimes and shows blank/white page instead

后端 未结 5 2125
感情败类
感情败类 2021-01-11 13:51
  • Open the pdf in the webview using google docs
  • Open the same pdf or different pdf again and again.
  • Sometimes it will show the blank/white page in the
5条回答
  •  清歌不尽
    2021-01-11 14:12

    You can reload the page until it displays the pdf in this way:

    public void onPageFinished(WebView view, String url) {
    if (view.getTitle().equals(""))
        view.reload();
    }
    

提交回复
热议问题