Opening new android activity with a webview shows a blank (white) screen instead of the html content

前端 未结 11 1476
野性不改
野性不改 2020-12-29 03:29

I have been researching for 2 days and I haven\'t found a similar problem anywhere on the internet!

From the main activity, I\'m trying to open a new activity contai

11条回答
  •  -上瘾入骨i
    2020-12-29 04:22

    try change in your code

     public boolean shouldOverrideUrlLoading(WebView view, String url) { 
                            return true; 
            } 
    

    Have a look at this tutorial.

提交回复
热议问题