if (NetworkUtil.isConnected(mContext))
mWebView.getSettings().setCacheMode(LOAD_DEFAULT);
else
mWebView.getSettings().setCacheMode(LOAD_CACHE_ELSE_NETWORK);
webSettings.setDatabaseEnabled(true);
webSettings.setDomStorageEnabled(true);
String cacheDirPath = g
etFilesDir().getAbsolutePath() +"/webCache";
mWebView.getSettings().setDatabasePath(cacheDirPath);