I have a DialogFragment that displays a list of options to the user, one of these options is \"Delete\" option, when the user presses the delete option I want to sh
DialogFragment
If you want the kotlin version use this:
val newDialogFragment = NewDialogFragment() val transaction: FragmentTransaction = requireActivity().supportFragmentManager.beginTransaction() newDialogFragment.show(transaction, "New_Dialog_Fragment")