I have recyclerView and in each items I\'ve have displaced facebook in webView. I loged in one of the item (position 1) of the webview by facebook. And, all other items (pos
You can try this way. Hope it should work.
CookieManager cookieManager = CookieManager.getInstance();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
cookieManager.removeAllCookies(new ValueCallback<Boolean>() {
@Override
public void onReceiveValue(Boolean aBoolean) {
Log.d(TAG, "Cookie removed: " + aBoolean);
}
});
}
else {
cookieManager.removeAllCookie()
}
webView.clearCache(true);
webView.clearFormData();
webView.clearHistory();