I have created a webview within a fragment however when I am trying to press the back button, it is killing the app instead of going back. What i want is to go back when i press the back button and if i am already on home page the back button should kill the app.
I have tried using all the solution in the given link.
How to add "Go Back" function in WebView inside Fragment?
Please help.
You can override the Activity's onBackPressed() method and check if there is any previous fragment in the backstack to pop back by calling getFragmentManager().popBackStackImmediate() or getSupportFragmentManager().popBackStackImmediate() like the code below:
Don't forget to call .addToBackStack(null) before you call commit() to add the fragmenttransaction to the backstack.
And if you want to press back button to go back to previous webpage user has navigated in the WebView before go back to previous fragment, you can do this:
And remember to set your webView to load any webpage in the WebView by calling webView.setWebViewClient(new WebViewClient());
If you use the Web fragment and other fragments in your activity, this code works:
In your Activity:
In your Web Fragment:
Reference: https://stackoverflow.com/a/19268540/1329094 and https://stackoverflow.com/a/10631591/1329094
In Kotlin you can achieve this by adding setOnKeyListener to your WebView. This listener responds to clicks on the device's hardware buttons.