Problem and Solutions
Redirect a Fragment to another Fragment in android studio ?
By M.K. Verma · 4 May 2022

MainActivity
var fragment: Fragment? = null
fragment = CalendarioFragment()
if (fragment != null) {
val transaction = supportFragmentManager.beginTransaction()
transaction.replace(R.id.calendarioFragment, fragment)
transaction.commit()
}