android mobile twitter page in webview not opening?

前端 未结 4 1110
日久生厌
日久生厌 2021-01-02 18:21

I am trying to open twitter page begining with https in webview in android. But it is not opening and blank screen is coming with continous loading. Screen shot

4条回答
  •  走了就别回头了
    2021-01-02 19:08

    Just add this code below webview. It solved my problem.

    webView.getSettings().setJavaScriptEnabled(true);
    webView.addJavascriptInterface(this, "TwitterDownloader");
    

提交回复
热议问题