I want to disable the back button in a fragment class. onBackPressed() doesn\'t seem to work in this fragment. How could I disable the back button?
onBackPressed()
This
Here is the new way you can manage your onBackPressed() in fragment with the new call back of activity:
// Disable onBack click requireActivity().onBackPressedDispatcher.addCallback(this) { // With blank your fragment BackPressed will be disabled. }