List of usage examples for android.webkit WebView saveState
@Nullable
public WebBackForwardList saveState(Bundle outState)
From source file:com.commonsware.android.feedfrags.ContentFragment.java
@Override public void onSaveInstanceState(Bundle state) { super.onSaveInstanceState(state); WebView browser = getBrowser(); if (browser != null) { browser.saveState(state); }/*from w w w .j av a 2s .c o m*/ }