Member-only story
OnBackPressedDispatcher Android
BackPress handling in Fragments
History
If a user is navigating from one screen to the other on an application, the Android system will maintain a stack of screens that is generally referred to as a back stack. Back Navigation is nothing but how users navigate back through the stack of screens they visited previously. Android by default handles this back navigation. But in some cases, we might need to provide our own Back behavior in order to provide the best user experience.
From the introduction of fragments, it’s always been an interesting aspect of handling BackPress inside fragments itself. Mostly we followed the technique of creating an interface and implementing them in the fragments on the other hand inside the activity on back press listener we check the current fragment instance and call that interface method to get the work done. That was a boring thing that we are following since quite a long time
In this post let’s check both the new and old ways of how to handle the back press inside Fragments.
The old way to school
Step 1: Create an Interface that has a callback method to handle the back press.
Step 2: We need to implement the above interface in all the fragments where we want to handle the back press. Inside the fragment, we can override the onBackPress() method and consume it if needed. And we must specify that whether we have consumed back press or not by passing back a Boolean value. If we want to consume we pass true else we pass false so that the parent can consume it.
Without interface using open functions, we can achieve this. Rather than implementing the interface in all fragments we can create a…