本文整理汇总了Java中android.webkit.WebViewDatabase.getInstance方法的典型用法代码示例。如果您正苦于以下问题:Java WebViewDatabase.getInstance方法的具体用法?Java WebViewDatabase.getInstance怎么用?Java WebViewDatabase.getInstance使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.webkit.WebViewDatabase
的用法示例。
在下文中一共展示了WebViewDatabase.getInstance方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: clearHistory
import android.webkit.WebViewDatabase; //导入方法依赖的package包/类
@SuppressWarnings("deprecation")
public void clearHistory() {
this.deleteDatabase(HistoryDatabase.DATABASE_NAME);
WebViewDatabase m = WebViewDatabase.getInstance(this);
m.clearFormData();
m.clearHttpAuthUsernamePassword();
if (API < 18) {
m.clearUsernamePassword();
WebIconDatabase.getInstance().removeAllIcons();
}
if (mSystemBrowser) {
try {
//Browser.
//Browser.clearHistory(getContentResolver());
} catch (NullPointerException ignored) {
}
}
Utils.trimCache(this);
}
示例2: cleanup
import android.webkit.WebViewDatabase; //导入方法依赖的package包/类
@Override
public void cleanup() {
clearFormData();
clearHistory();
clearMatches();
clearSslPreferences();
clearCache(true);
// We don't care about the callback - we just want to make sure cookies are gone
CookieManager.getInstance().removeAllCookies(null);
WebStorage.getInstance().deleteAllData();
final WebViewDatabase webViewDatabase = WebViewDatabase.getInstance(getContext());
// It isn't entirely clear how this differs from WebView.clearFormData()
webViewDatabase.clearFormData();
webViewDatabase.clearHttpAuthUsernamePassword();
deleteContentFromKnownLocations(getContext());
}
示例3: MoPubView
import android.webkit.WebViewDatabase; //导入方法依赖的package包/类
public MoPubView(Context context, AttributeSet attrs) {
super(context, attrs);
ManifestUtils.checkWebViewActivitiesDeclared(context);
mContext = context;
mScreenVisibility = getVisibility();
setHorizontalScrollBarEnabled(false);
setVerticalScrollBarEnabled(false);
// There is a rare bug in Froyo/2.2 where creation of a WebView causes a
// NullPointerException. (http://code.google.com/p/android/issues/detail?id=10789)
// It happens when the WebView can't access the local file store to make a cache file.
// Here, we'll work around it by trying to create a file store and then just go inert
// if it's not accessible.
if (WebViewDatabase.getInstance(context) == null) {
MoPubLog.e("Disabling MoPub. Local cache file is inaccessible so MoPub will " +
"fail if we try to create a WebView. Details of this Android bug found at:" +
"http://code.google.com/p/android/issues/detail?id=10789");
return;
}
mAdViewController = AdViewControllerFactory.create(context, this);
registerScreenStateBroadcastReceiver();
}
示例4: UnileadView
import android.webkit.WebViewDatabase; //导入方法依赖的package包/类
public UnileadView(Context context, AttributeSet attrs) {
super(context, attrs);
mContext = context;
mIsInForeground = (getVisibility() == VISIBLE);
mLocationAwareness = LocationAwareness.NORMAL;
setHorizontalScrollBarEnabled(false);
setVerticalScrollBarEnabled(false);
// There is a rare bug in Froyo/2.2 where creation of a WebView causes a
// NullPointerException. (http://code.google.com/p/android/issues/detail?id=10789)
// It happens when the WebView can't access the local file store to make a cache file.
// Here, we'll work around it by trying to create a file store and then just go inert
// if it's not accessible.
if (WebViewDatabase.getInstance(context) == null) {
Logger.e("Disabling Unilead SDK. Local cache file is inaccessible so SDK will " +
"fail if we try to create a WebView. Details of this Android bug found at:" +
"http://code.google.com/p/android/issues/detail?id=10789");
return;
}
engine = Engine.Factory.create(context, this);
registerScreenStateBroadcastReceiver();
}
示例5: clearDatabase
import android.webkit.WebViewDatabase; //导入方法依赖的package包/类
/**
* Clear the web database
*/
public void clearDatabase() {
WebViewDatabase database = WebViewDatabase.getInstance(getContext());
database.clearHttpAuthUsernamePassword();
database.clearFormData();
database.clearUsernamePassword();
}
示例6: clearHistory
import android.webkit.WebViewDatabase; //导入方法依赖的package包/类
public static void clearHistory(@NonNull Context context, @NonNull HistoryModel historyModel) {
historyModel.deleteHistory()
.subscribeOn(Schedulers.io())
.subscribe();
WebViewDatabase m = WebViewDatabase.getInstance(context);
m.clearFormData();
m.clearHttpAuthUsernamePassword();
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR2) {
//noinspection deprecation
m.clearUsernamePassword();
//noinspection deprecation
WebIconDatabase.getInstance().removeAllIcons();
}
Utils.trimCache(context);
}
示例7: onCreateView
import android.webkit.WebViewDatabase; //导入方法依赖的package包/类
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rod = inflater.inflate(R.layout.kontakt_info_om_frag, container, false);
String url = App.grunddata.android_json.optString("kontakt_url", "http://dr.dk");
WebView webview = (WebView) rod.findViewById(R.id.webview);
// Jacob: Fix for 'syg' webview-cache - se http://code.google.com/p/android/issues/detail?id=10789
WebViewDatabase webViewDB = WebViewDatabase.getInstance(getActivity());
if (webViewDB != null) {
// OK, webviewet kan bruge sin cache
webview.getSettings().setJavaScriptEnabled(true);
webview.loadUrl(url);
// hjælper det her??? webview.getSettings().setDatabasePath(...);
} else {
// Øv, vi viser URLen i en ekstern browser.
// Når brugeren derefter trykker 'tilbage' ser han et tomt webview.
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
}
TextView titel = (TextView) rod.findViewById(R.id.titel);
titel.setTypeface(App.skrift_gibson_fed);
TextView version = (TextView) rod.findViewById(R.id.version);
version.setTypeface(App.skrift_gibson);
version.setText(App.versionsnavn);
version.setContentDescription("\u00A0"); // SLUK for højtlæsning ... det virker ikke
rod.findViewById(R.id.kontakt).setOnClickListener(this);
return rod;
}
示例8: clearHistory
import android.webkit.WebViewDatabase; //导入方法依赖的package包/类
public static void clearHistory(@NonNull Context context) {
HistoryDatabase.getInstance().deleteHistory();
WebViewDatabase m = WebViewDatabase.getInstance(context);
m.clearFormData();
m.clearHttpAuthUsernamePassword();
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR2) {
//noinspection deprecation
m.clearUsernamePassword();
//noinspection deprecation
WebIconDatabase.getInstance().removeAllIcons();
}
Utils.trimCache(context);
}
示例9: clearAll
import android.webkit.WebViewDatabase; //导入方法依赖的package包/类
public static void clearAll(WebView webView) {
clearCookie();
if (webView != null) {
webView.clearCache(true);
}
WebViewDatabase webViewDatabase = WebViewDatabase.getInstance(MainApplication.getInstance());
webViewDatabase.clearFormData();
webViewDatabase.clearHttpAuthUsernamePassword();
WebStorage.getInstance().deleteAllData();
}