I am trying to figure out a way to handle the WebView back stack similar to how the Android web browser handles it when the back button is pressed from within my own app\'s WebV
this snippet work for me, try it:
@Override public void onBackPressed() { BlankFragment fragment = (BlankFragment) getSupportFragmentManager().findFragmentByTag("webView"); if (fragment.canGoBack()) { fragment.goBack(); } else { super.onBackPressed(); } }