MainActivity
var fragment: Fragment? = null
fragment = CalendarioFragment()
if (fragment != null) {
val transaction = supportFragmentManager.beginTransaction()
transaction.replace(R.id.calendarioFragment, fragment)
transaction.commit()
} * Be the first to Make Comment