我已经检查了许多可能的方法,但这不起作用。
if(Build.VERSION.SDK_INT >= 21) {
android.webkit.CookieManager.getInstance().setAcceptThirdPartyCookies(mWebView, true);
android.webkit.CookieManager.getInstance().acceptThirdPartyCookies(mWebView);
}
答案 0 :(得分:0)
尝试一下
if (Build.VERSION.SDK_INT >= 21) {
CookieManager cookieManager = CookieManager.getInstance();
cookieManager.setAcceptThirdPartyCookies(mWebView, true);
}