I\'ve got a WebView in my app. When the user logs out of my app, I\'d like to delete all cached resources the WebView may have created. Looking at an emulator, I see the fol
try this
mWebView.clearCache(true); mContext.deleteDatabase("webview.db"); mContext.deleteDatabase("webviewCache.db");