【发布时间】:2015-08-05 07:04:17
【问题描述】:
我无法在我的应用程序中使用 webView 登录网站 (https://healthmanager.webmd.com/manager/)。错误如下
external/chromium/net/http/http_stream_factory_impl_job.cc:865: [0805/114317:WARNING:http_stream_factory_impl_job.cc(865)] Falling back to SSLv3 because host is TLS intolerant:
我的网页设置在下面
MyPortalsWebView.getSettings().setJavaScriptEnabled(true);
MyPortalsWebView.getSettings().setDomStorageEnabled(true);
MyPortalsWebView.getSettings().setDefaultZoom(WebSettings.ZoomDensity.FAR);
MyPortalsWebView.getSettings().setSupportZoom(true);
MyPortalsWebView.getSettings().setUseWideViewPort(true);
MyPortalsWebView.getSettings().setLoadWithOverviewMode(true);
MyPortalsWebView.getSettings().setSupportMultipleWindows(true);
MyPortalsWebView.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
MyPortalsWebView.setInitialScale(1);
MyPortalsWebView.getSettings().setLayoutAlgorithm(WebSettings.LayoutAlgorithm.NORMAL);
MyPortalsWebView.getSettings().setBuiltInZoomControls(true);
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN){
MyPortalsWebView.getSettings().setAllowUniversalAccessFromFileURLs(true);
MyPortalsWebView.getSettings().setAllowFileAccessFromFileURLs(true);
}
是否缺少任何设置或需要进行其他操作?
【问题讨论】:
-
这个问题解决了吗