I have a web view that lets me browse through a site. When i click the back button, rather than it going to the previous page it exits the app. I have added the following me
I think you should override your activity OnBackPressed :
OnBackPressed
@Override public void onBackPressed() { if (webView.canGoBack()) { webView.goBack(); } else { super.onBackPressed(); } }