大马资讯论坛 - 马来西亚中文资讯平台
标题:
[教学] Android webview facebook dialog oauth client keep reloading
[打印本页]
作者:
资讯王
时间:
2015-4-12 00:16
标题:
[教学] Android webview facebook dialog oauth client keep reloading
在 Android - 5.0 Lollipop 一直刷新个不停
[Solved] Android webview facebook dialog oauth client keep reloading - non stop
window.location.assign(
https://www.facebook.com/dialog/oauth?client_id=
)
加这个Add CookieManager.getInstance()
WebView myWebView = (WebView)rootView.findViewById(R.id.fb);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
CookieManager.getInstance().setAcceptThirdPartyCookies(myWebView, true);
}
myWebView.getSettings().setAppCacheEnabled(true);
myWebView.getSettings().setJavaScriptEnabled(true);
myWebView.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
myWebView.getSettings().setSupportMultipleWindows(true);
复制代码
欢迎光临 大马资讯论坛 - 马来西亚中文资讯平台 (http://freeinfo.com.my/)
Powered by Discuz! X3.3