Webview not able to load https url in android?

前端 未结 9 1350
别跟我提以往
别跟我提以往 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:41

    Try this

     WebView webview = (WebView)findViewById(R.id.webView); 
        Webview.setBackgroundColor(0);
        webview.getSettings().setJavaScriptEnabled(true); 
        webview.loadUrl("https://www.facebook.com");
        webview.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
    

提交回复
热议问题