Answers for "fragment to activity kotlin"

0

how to move from fragment to activity in kotlin

btn.setOnClickListener {
            activity.let {
                val intent = Intent(it, GuardianProfile::class.java)
                startActivity(intent)
            }
        }
Posted by: Guest on May-24-2021

Code answers related to "fragment to activity kotlin"

Browse Popular Code Answers by Language