我想从我的应用程序注销时删除WebView
会话。
我尝试过以下代码,但无法删除会话。
我的代码:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP_MR1) {
CookieManager.getInstance().removeAllCookies(null);
CookieManager.getInstance().removeSessionCookies(null);
CookieManager.getInstance().flush();
}
else {
CookieSyncManager cookieSyncMngr =
CookieSyncManager.createInstance(_context);
cookieSyncMngr.startSync();
CookieManager cookieManager = CookieManager.getInstance();
cookieManager.removeAllCookie();
cookieManager.removeSessionCookie();
cookieSyncMngr.stopSync();
cookieSyncMngr.sync();
}
wv_common.clearCache(true);
wv_common.clearHistory();
wv_common.destroy();
请帮我解决这个问题。
谢谢。