thirdStepPayServiceFragment = (fragmentManager.fin...
# android
c
thirdStepPayServiceFragment = (fragmentManager.findFragmentByTag("third") as ThirdStepPayServiceFragment?)!! if (fragmentManager.findFragmentByTag("third") == null) { thirdStepPayServiceFragment = ThirdStepPayServiceFragment() fragmentTransaction = fragmentManager.beginTransaction() fragmentTransaction.replace(R.id.fragment_container, thirdStepPayServiceFragment!!, "third") fragmentTransaction.addToBackStack("third") fragmentTransaction.setTransition(androidx.fragment.app.FragmentTransaction.TRANSIT_FRAGMENT_OPEN) fragmentTransaction.commit() }