Skip to content

Instantly share code, notes, and snippets.

@Xiryl
Created August 29, 2021 10:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Xiryl/6ba3a9b57b32af73f0cd92add6daf703 to your computer and use it in GitHub Desktop.
Save Xiryl/6ba3a9b57b32af73f0cd92add6daf703 to your computer and use it in GitHub Desktop.
fragmentcallback-3
class YourCustomFRagment(
var backPressedListener: OnFragmentCallback
) : Fragment(R.layout.xyz) {
override fun onCreateView() {}
// trigger the event!
override fun onDestroy() {
backPressedListener.onFragmentBackPressed()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment