Answers for "intent from activity to fragment kotlin"

0

goto fragment from activity in kotlin intent

Intent notificationIntent = new Intent(context,MessagesFragment.class);
Posted by: Guest on March-24-2021
-2

how to start activity from fragment in kotlin

activity?.let{
    val intent = Intent (it, Main::class.java)
    it.startActivity(intent)
}
Posted by: Guest on February-15-2021

Code answers related to "intent from activity to fragment kotlin"

Browse Popular Code Answers by Language