Webview not able to load https url in android?

前端 未结 9 1333
别跟我提以往
别跟我提以往 2020-12-29 08:14

I am implementing webview application in android. When i am trying to load https url one or two times it finishes the activity. Agian tryin

9条回答
  •  执笔经年
    2020-12-29 08:42

    Try to use below attributes :

            webView = (WebView) findViewById(R.id.webView1);
            WebSettings settings = webView.getSettings();
            settings.setJavaScriptEnabled(true);
            settings.setDomStorageEnabled(true);
    

提交回复
热议问题