I want to implement the back button to my app. I\'m using fragments that each show a different webview. Right now if I press the back button, it closes the app no matter where I
You can begin by overriding the back button press in your MainActivity
@Override public void onBackPressed() { //super.onBackPressed() //handle the press here to switch fragments }