WebView is not loading webpage

后端 未结 3 1813
醉酒成梦
醉酒成梦 2021-02-19 03:31

I am using WebView for loading a website. But it is very slow and is leaking when specific websites are loaded. I am loading WebView with the followin

3条回答
  •  孤城傲影
    2021-02-19 04:16

    Use Handler to post a delay action as below will fix this, but I don't known why.

    new Handler().post(webView.loadurl(url));
    

提交回复
热议问题