itgoyo / AndroidSummary

12 stars 4 forks source link

Webview不能访问Https地址 #68

Open itgoyo opened 5 years ago

itgoyo commented 5 years ago
 mWebView.setWebViewClient(new WebViewClient() {
            @Override
            public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
//                super.onReceivedSslError(view, handler, error);
                handler.proceed();  //重写这个方法就可以使用使用Webview访问https地址
            }
}